/* General Styling */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #E94560;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Buttons */
.cta-button {
    background-color: #E94560;
    color: #FFFFFF;
    padding: 10px 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-left: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #D83A56;
    transform: scale(1.05);
}

.hero {
    background: none;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.hero-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 30px;
}

.hero a {
    color: #4fc3f7;
    text-decoration: underline;
    transition: 0.3s;
}

.hero a:hover {
    color: #fff;
}

.hero .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6f61, #ff4a4a);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.hero .cta-button:hover {
    background: linear-gradient(45deg, #ff4a4a, #ff6f61);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Cards and Testimonials */
.card, .testimonial, .item {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover, .testimonial:hover, .item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card img, .item img, .testimonial img {
    width: 50%;
    height: auto;
    margin-bottom: 15px;
}

.card h3, .item h4, .testimonial h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #E94560;
    text-align: center;
}

.card p, .item p, .testimonial p {
    font-size: 16px;
    color: #333;
}

.cta-button {
    margin-top: 15px;
    padding: 10px 40px;
    font-size: 16px;
}

/* Grid Layout */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 40px 20px;
    }

    .cta-button {
        font-size: 14px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .cta-button {
        font-size: 18px;
        padding: 12px 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero .cta-button {
        font-size: 16px;
        padding: 10px 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero .cta-button {
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; 
    pointer-events: none; 
    background: linear-gradient(to bottom, #000428, #004e92); /* Gradient background */
}

.cta-card {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.cta-card h3 {
    font-size: 22px;
    color: #333;
}

.cta-card p {
    font-size: 18px;
    color: #555;
}

.cta-button:hover {
    background-color: #e0435c;
}
ul {
    list-style-type: none;
}

.testimonials {
    display: none;
}

#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #E94560;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#scroll-to-top:hover {
    background-color: #D83A56;
}

/* Lazy-loaded images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Service Sections */
.service {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.service-content {
    padding: 20px;
    width: 50%;
}

.service h3 {
    font-size: 2rem;
    color: #E94560;
    margin-bottom: 20px;
}

.service p {
    font-size: 1.2rem;
    color: #333;
}

.service:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service {
        flex-direction: column;
    }

    .service img, .service-content {
        width: 100%;
    }
}
.process {
    padding: 2.5rem 1rem;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .process p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .process-steps {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
  }
  
  .process-steps li {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .process-steps li h3 {
    font-size: 1.3rem;
    color: #ff4c61;
    font-weight: bold;
    margin-bottom: 0.3rem;
    text-align: center;
  }
  
  .process-steps li p {
    font-size: 1rem;
    color: #444;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
  }
  
  .no-jargon {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
  }
  