body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

/* Glassmorphism effect for the header */
header {
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-card, .testimonial-card {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.service-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Assign animation delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
        
/* New FAQ Styles */
.faq-item {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px 0 rgba(31, 38, 135, 0.05);
}

.faq-question {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
     border-left: 4px solid transparent;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.75);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.45);
}

.faq-answer p {
    padding: 1.5rem;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question {
    border-left: 4px solid #6366f1; /* indigo-500 */
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

/* Animated blobs for hero section */
.blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(80px);
    z-index: -1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: moveBlob 15s infinite alternate ease-in-out;
}

.blob-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 15%;
    animation: moveBlob 20s infinite alternate-reverse ease-in-out;
}

@keyframes moveBlob {
    from {
        transform: translate(-20px, 30px) scale(1.1);
    }
    to {
        transform: translate(20px, -30px) scale(0.9);
    }
}

/* Scroll down arrow */
.scroll-down {
    position: absolute;
    bottom: 6rem; /* Moved up */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 20;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Navigation Styles */
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
}

.nav-link.nav-active {
   color: #4338ca !important;
   font-weight: 500;
}

#nav-highlight {
    position: absolute;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother ease-in-out animation */
    z-index: 5;
    opacity: 0;
}
