/* ===== 0040 Indigo/Blue Theme Styles ===== */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #eef2ff;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #4338ca);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4f46e5, #3730a3);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===== Card Hover: card-ig ===== */
.card-ig {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(99, 102, 241, 0.12);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.card-ig:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

/* ===== Keyframe: igFloat ===== */
@keyframes igFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
.ig-float {
    animation: igFloat 4s ease-in-out infinite;
}

/* ===== Keyframe: igSlide ===== */
@keyframes igSlide {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.ig-slide {
    animation: igSlide 0.6s ease-out forwards;
}

/* ===== Keyframe: igPulse ===== */
@keyframes igPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(99, 102, 241, 0);
    }
}
.ig-pulse {
    animation: igPulse 2s ease-in-out infinite;
}

/* Navbar scroll shadow */
.navbar-scrolled {
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
}

/* FAQ accordion styles */
.faq-item {
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}
.faq-question {
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e1b4b;
    transition: all 0.3s ease;
    user-select: none;
}
.faq-question:hover {
    color: #4f46e5;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    color: #4b5563;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #4f46e5;
}
.faq-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #6366f1;
    font-size: 14px;
}

/* Mobile menu overlay */
.mobile-menu {
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}
.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Gradient text utility */
.text-gradient-ig {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient button */
.btn-ig {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}
.btn-ig:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

/* Stats gradient bar */
.stats-bar-ig {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 50%, #3730a3 100%);
}

/* testimonial card */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(99,102,241,0.08);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: 0 16px 40px rgba(99,102,241,0.12);
    transform: translateY(-4px);
}
