/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #002B5B;
    /* Deep Navy */
    --secondary-color: #AC1C1C;
    /* Muted Red */
    --accent-color: #F0F4F8;
    /* Light Grey-Blue */
    --turquoise: #004E89;
    /* Darker Blue Accent */
    --gold: #C5A059;
    /* Muted Gold */
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --white: #ffffff;
    --light-bg: #f7fafc;
    --glass-bg: rgba(255, 255, 255, 0.98);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* Body font */
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    /* Heading font */
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent-color);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    margin: 0;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a,
.nav-item span {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}



.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-item span:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.btn {
    color: var(--white);
}

.nav-links a.btn:hover {
    color: var(--turquoise);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.dropdown-menu a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Dimmed Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 45, 72, 0.6);
    /* Use solid color or gradient preference */
    background: linear-gradient(180deg, rgba(12, 45, 72, 0.4) 0%, rgba(12, 45, 72, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    padding-top: 60px;
    /* Offset for navbar */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: var(--turquoise);
}

/* --- Section Styling --- */
.section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--turquoise);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Restored Legacy Card Styles --- */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* --- Quick Facts Grid --- */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fact-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fact-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}


/* --- Problem -> Solution Split --- */
.problem-solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Split look */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-col {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.problem-col {
    background: #f8f9fa;
    position: relative;
    border-right: 1px solid #eee;
}

.solution-col {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.split-col h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.split-col p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.problem-col h3 {
    color: var(--text-light);
}

.problem-col p {
    color: var(--text-light);
}

.icon-anim {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-col .icon-anim {
    background: var(--turquoise);
    color: var(--primary-color);
}

/* --- Services Grid --- */
/* --- Services Grid (3D Flip) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: transparent;
    perspective: 1000px;
    height: 380px;
    /* Fixed height required for flip */
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow);
    border-radius: 15px;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2.5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-front {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-back {
    transform: rotateY(180deg);
    justify-content: center;
    background: var(--white);
    /* Can change to gradient if desired */
}

.card-front .icon-box {
    margin-bottom: 2rem;
    transform: scale(1.2);
    transition: var(--transition);
}

.card-front h3 {
    font-size: 1.8rem;
    margin: 0;
}

.card-back ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-back ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.card-back ul li i {
    color: var(--turquoise);
    flex-shrink: 0;
    margin-top: 4px;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    align-self: flex-start;
}

.card-link:hover {
    gap: 10px;
}

/* --- Process Timeline --- */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 40px;
    left: 0;
    height: 4px;
    background: var(--turquoise);
    width: 0%;
    z-index: 0;
    transition: width 0.5s ease;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 18%;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--primary-color);
}

.timeline-step.active .step-icon {
    border-color: var(--turquoise);
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Why Choose Us --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquoise);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 3rem;
}

.partner-logo {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Testimonials --- */
.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 350px;
    scroll-snap-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.student-info p {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* --- FAQ --- */
/* (Reusing previous FAQ styles but enhancing) */
.faq-search {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    padding-right: 50px;
}

.faq-search svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}


/* --- FAQ (Restored) --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(46, 139, 192, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light-bg);
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary height for animation */
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    gap: 10px;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--white);
    border: 2px solid var(--turquoise);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--turquoise);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* --- CTA Band --- */
.cta-band {
    background: var(--primary-color);
    padding: 5rem 5%;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-band .btn-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- Contact & Map --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 600px;
}

.contact-form-wrapper {
    padding: 4rem 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    width: 100%;
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Footer --- */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--turquoise);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--turquoise);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--turquoise);
    color: var(--primary-color);
}

/* --- Eligibility List --- */
.eligibility-list {
    max-width: 800px;
    margin: 2rem 0;
    /* Left align: removed auto on margin-left/right */
    list-style: none;
    padding-left: 0;
}

.eligibility-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.eligibility-list li i {
    color: var(--secondary-color);
    /* Use muted red for icons */
    flex-shrink: 0;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Sticky WhatsApp for Mobile */
.sticky-whatsapp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    align-items: center;
    gap: 8px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .contact-map {
        height: 400px;
    }

    .timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .timeline::before {
        display: none;
    }

    /* Hide line on tablet/mobile */
    .timeline-step {
        width: 45%;
        margin-bottom: 2rem;
    }

    .problem-solution-container {
        grid-template-columns: 1fr;
    }
}

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

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full width for cleaner look on mobile, or keep side drawer with overlay */
        max-width: 300px;
        /* Drawer style */
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top */
        padding-top: 80px;
        /* Space for close button */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 2000;
    }

    /* Mobile Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.active {
        right: 0;
    }

    /* Adjust Close/Menu Button z-index */
    .mobile-menu-btn {
        z-index: 2001;
        /* Above menu */
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        padding-left: 2rem;
    }

    /* Mobile Dropdown adjustment */
    .nav-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 2rem;
        margin: 1rem 0;
    }

    .nav-item span {
        font-size: 1.1rem;
        justify-content: space-between;
        width: 90%;
    }

    .dropdown-menu {
        position: static;
        /* Stack in flow */
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hidden by default, toggled via JS if possible, or usually just show all */
        background: #f9f9f9;
        width: 100%;
        padding-left: 1rem;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        width: 100%;
    }

    .sticky-whatsapp {
        display: flex;
    }

    .split-col {
        padding: 2rem;
    }
}

/* --- Professional Polish Additions --- */

/* 1. Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    /* WhatsApp Green */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 2. Impact / Stats Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--secondary-color);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* 3. Partners Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin: 0 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    vertical-align: middle;
}

.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 4. Staggered Animation Utils */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}