.home-hero {
    background:
        radial-gradient(circle at top left, rgba(193, 218, 255, 0.35), transparent 30%),
        /* Crystal Blue tint */
        linear-gradient(135deg, #eaf4ff, #f6fbff);
    /* Soft icy blue transition */
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

body.dark-theme .home-hero {
    background:
        radial-gradient(circle at top left, rgba(193, 218, 255, 0.14), transparent 30%),
        /* Crystal Blue tint */
        linear-gradient(135deg, #111827, #0f1720);
}

.home-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(193, 218, 255, 0.15);
    /* Crystal Blue glow */
    border-radius: 50%;
    filter: blur(10px);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.home-hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 18px;
    max-width: 700px;
}

.home-hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 620px;
}

.hero-btn-group,
.cta-btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-hero-card {
    animation: floatCard 4s ease-in-out infinite;
}

.home-hero-card img,
.home-hero-card video {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(193, 218, 255, 0.30);
    /* Soft blue shadow */
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #ffffff;
}

/* Info Section */
.info-section {
    padding: 90px 0;
    background: var(--card);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.35s ease;
    position: relative;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(193, 218, 255, 0.15), transparent 45%);
    /* Blue highlight */
    pointer-events: none;
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.info-card-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    /* Very soft crystal background */
    padding: 12px;
    position: relative;
    z-index: 0;
}

body.dark-theme .info-card-image {
    background: #202b36;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.info-card:hover .info-card-image img {
    transform: scale(1.03);
}

.info-card-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

/* Journey */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.journey-number {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #E2F7F6, #C1DAFF);
    /* Sky Blossom Blue Gradient */
    color: #0f172a;
    /* Dark text for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(193, 218, 255, 0.40);
}

/* Results */
.results-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.results-text h2 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--text);
    font-weight: 800;
    margin-bottom: 14px;
}

.results-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.stat-card h3 {
    font-size: 28px;
    color: #1e3a8a;
    /* Deep navy blue to match the theme accents */
    margin-bottom: 10px;
}

/* CTA */
.cta-clean-box {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #eaf4ff, #f0f7ff);
    /* Soft icy blue gradient */
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

body.dark-theme .cta-clean-box {
    background: linear-gradient(135deg, #1a2430, #202b36);
}

.cta-clean-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(193, 218, 255, 0.15);
    /* Crystal Blue blob */
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.cta-clean-box h2 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--text);
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-clean-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.cta-clean-box .cta-btn-group {
    justify-content: center;
    position: relative;
    z-index: 1;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {

    .home-hero-grid,
    .results-box,
    .info-grid,
    .journey-grid,
    .results-stats {
        grid-template-columns: 1fr;
    }

    .home-hero-text h1,
    .results-text h2,
    .cta-clean-box h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 72px 0;
    }

    .info-section {
        padding: 60px 0;
    }

    .home-hero-text h1,
    .results-text h2,
    .cta-clean-box h2 {
        font-size: 32px;
    }

    .home-hero-text p,
    .results-text p,
    .cta-clean-box p {
        font-size: 16px;
    }

    .home-hero-card img,
    .home-hero-card video {
        min-height: 240px;
    }

    .info-card-image {
        height: 230px;
        padding: 10px;
    }

    .cta-clean-box {
        padding: 40px 22px;
        border-radius: 22px;
    }
}

/* --- Homepage Stat Card Icons --- */
.stat-card .card-icon {
    width: 28px !important;
    /* Slightly larger for the homepage */
    height: 28px !important;
    background: #eaf4ff;
    /* Soft icy blue background */
    border-radius: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto !important;
    /* Perfectly centers the box */
    color: #1e3a8a;
    /* Deep navy blue icon color */
    transition: 0.3s ease;
}

.stat-card .card-icon svg {
    width: 28px !important;
    height: 28px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    /* Removes the solid black blob */
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dark mode adjustments */
body.dark-theme .stat-card .card-icon {
    background: rgba(193, 218, 255, 0.1);
    color: var(--primary);
}

/* Hover effect so the icon lifts slightly */
.stat-card:hover .card-icon {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, #E2F7F6, #C1DAFF);
    color: #0f172a;
}

/* --- Partner Section --- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-content: center;
    max-width: 940px;
    margin: 40px auto 0;
}

.partner-card {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: 0.35s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.partner-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Mobile Responsiveness for partners */
@media (max-width: 1100px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Audience Tabs Styling --- */
.audience-section {
    padding: 80px 0;
}

.audience-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.audience-tab {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audience-tab:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* When a tab is active */
.audience-tab.active {
    background-color: #1e3a8a; /* Deep Blue */
    color: #ffffff;
    border-color: #1e3a8a;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

body.dark-theme .audience-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #111827;
}

/* Hide inactive panes completely */
.audience-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

/* Show the active pane */
.audience-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}