@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* In your main CSS file */
/* @import 'locomotive-scroll/dist/locomotive-scroll.css'; */

.primary-color {
    /* color: #F5A623; */
    color: #008040;
}

.secondary-color {
    color: #0C3B78;
}

.left-border {
    border-left: 10px solid #0C3B78;
}

.section-padding {
    padding: 3rem 1.5rem;
}

@media (max-width:768px) {
    .section-padding {
        padding: 1.2rem 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    /* color: #0C3B78; */
}

.nav-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: static !important;
    /* Push content below: branding-bar(64) + navbar(70) + ticker(36) = 170px */
    padding-top: 70px;
}

@media (max-width: 576px) {
    .nav-hero {
        padding-top: 40px;
    }
}

/* Animated Background Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F5A623, #D05328);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0C3B78, #008040);
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008040, #F5A623);
    top: 80%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D05328, #F5A623);
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 28s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F5A623, #0C3B78);
    top: 50%;
    left: 40%;
    animation-delay: 8s;
    animation-duration: 26s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* ============================================================
   BRANDING BAR  (fixed, top of page)
   ============================================================ */
.branding-bar {
    width: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    /* Very subtle separator — gives clean visual boundary with navbar */
    border-bottom: 1px solid rgba(12, 59, 120, 0.08);
    box-shadow: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.branding-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.branding-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 30px;
    gap: 20px;
}

/* Logo blocks (left & right) */
.brand-logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

/* IRIS logo — tinted with a subtle filter to differentiate */
.brand-logo-img-iris {
    width: 65px;
    height: 65px;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.brand-logo-text-right {
    align-items: flex-start;
}

.brand-logo-name {
    font-size: 18px;
    font-weight: 700;
    /* color: #0C3B78; */
    letter-spacing: 0.2px;
}

/* .brand-logo-name strong {
    color: #008040;
} */

.brand-logo-tagline {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.iris-tagline {
    font-size: 13px;
    letter-spacing: 0.8px !important;
}

/* Center heading */
.branding-bar-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.branding-center-title {
    font-size: 15px;
    font-weight: 700;
    color: #0C3B78;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.branding-center-subtitle {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

/* Separator between branding-bar and center on small devices */
@media (max-width: 768px) {
    .branding-bar-inner {
        padding: 8px 10px;
        gap: 5px;
    }

    .brand-logo-text {
        display: flex;
    }

    .brand-logo-name {
        font-size: 5px;
        letter-spacing: 0;
    }

    .brand-logo-tagline {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .iris-tagline {
        font-size: 7px;
        letter-spacing: 0.2px !important;
    }

    /* Hide the center text completely on mobile to save space */
    .branding-bar-center {
        display: none;
    }

    .brand-logo-img {
        width: 32px;
        height: 32px;
    }

    .brand-logo-img-iris {
        width: 42px;
        height: 25px !important;
    }
}

@media (max-width: 576px) {
    .brand-logo-name {
        font-size: 25px !important;
        /* letter-spacing: 0; */
    }
}


/* Old topbar announcement (kept for backward compat) */
.topbar-announcement {
    background: linear-gradient(135deg, #0C3B78, #008040);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.topbar-announcement i {
    color: #F5A623;
    font-size: 14px;
}


/* Scrolled state */
.navbar.scrolled .nav-link {
    color: #000 !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #0C3B78 !important;
}

.navbar-brand {
    color: #0C3B78 !important;
    /* your main brand color */
    transition: 0.3s ease;
}

.navbar-brand:hover {
    color: #0C3B78 !important;
    /* SAME COLOR ON HOVER */
}

.tickets-btn {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(208, 83, 40, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: #0C3B78;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.tickets-btn:hover {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), rgba(208, 83, 40, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
    color: #0C3B78;
}

/* Navbar Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(12, 59, 120, 0.15);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-menu-custom li a {
    /* display: block; */
    padding: 0px 15px;
    color: #0C3B78;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu-custom li a:hover {
    /* background: rgba(245, 166, 35, 0.1); */
    color: #008040;
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown.show-dropdown .dropdown-menu-custom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block;
    /* Mobile par stack karne ke liye */
}

.nav-dropdown.show-dropdown i {
    transform: rotate(180deg);
}

.nav-dropdown:hover i {
    transform: rotate(180deg);
}

.navbar-main {
    position: fixed;
    /* sits directly under the branding bar (64px) */
    top: 64px;
    width: 100%;
    left: 0;
    /* Solid white — matches the branding bar for a unified header */
    background: #ffffff;
    /* Only a subtle shadow at the bottom of the combined header */
    border-bottom: none;
    border-top: none;
    box-shadow: 0 4px 24px rgba(12, 59, 120, 0.08);
    z-index: 1000;
    transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.navbar-main.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 30px rgba(12, 59, 120, 0.12);
    top: 0;
}

/* Simplified navbar content — links-only (no logo column) */
.navbar-content-links-only {
    justify-content: center;
    gap: 0;
}

.navbar-content-links-only .navbar-collapse {
    justify-content: space-between;
}

@media (max-width: 991px) {
    .navbar-main {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        left: 0 !important;
        margin-top: 0 !important;
    }

    .navbar-main.scrolled {
        top: 0 !important;
    }
}


.navbar-content {
    display: flex;
    justify-content: space-between;
    /* Ensures logos on left, burger on right */
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    height: 70px;
}

@media (max-width:991px) {
    .navbar-content {
        padding: 0 15px;
    }

    .navbar-content-links-only {
        justify-content: space-between !important;
        /* Force space between logos and button */
        width: 100%;
    }
}

.navbar-main.scrolled .navbar-content {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding: 0 30px;
}

@media (max-width:576px) {
    .navbar-main.scrolled .navbar-content {
        padding: 0 15px !important;
    }
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo small {
    font-size: 15px;
    letter-spacing: 2.7px;
    text-align: center;
    color: #0C3B78;
    font-weight: 500;
    margin-top: -4px;
}

@media (max-width:576px) {
    .navbar-logo small {
        font-size: 10px;
        letter-spacing: 1.3px;
    }
}

/* .navbar-logo a{
   gap: 0;
   text-decoration: none;
} */

.navbar-logo img {
    width: 45px;
    margin-right: 5px;
}

.navbar-brand-custom {
    gap: 0;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: 800;
    color: #0C3B78;
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.navbar-brand-custom span {
    color: #008040;
}

.nav-links {
    padding-right: 0;
    display: flex;
    gap: 20px !important;
    /* ★ reduced from 35px */
    list-style: none;
    align-items: center;
    /* ★ all links center vertically */
}

.nav-link-item {
    white-space: nowrap !important;
    color: #0C3B78;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a {
    /* margin-top: 16px; */
    display: flex;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .nav-links li a {
        margin-top: 0 !important;
    }
}

.nav-link-item:hover,
.nav-link-item.active {
    color: #008040;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #008040;
    transition: width 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: #008040;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 4px !important;
    /* ★ smaller gap */
    font-weight: 600;
}

.nav-auth a {
    /* border: 1px solid #0C3B78; */
    /* border-radius: 50px; */
    /* padding: 8px 10px; */
    text-decoration: none;
    color: #0C3B78;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

/* HOVER EFFECT ONLY */
.nav-auth a:hover {
    color: #F5A623;
}

.nav-auth a:first-child,
.nav-auth a:last-child {
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.nav-auth a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

.nav-auth span {
    color: #0C3B78;
    font-size: 15px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none !important;
    background: none;
    border: none;
    color: #0C3B78;
    font-size: 24px;
    cursor: pointer;
}


@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        /* Yeh bachi hui sari jagah le lega */
        flex-basis: auto;
        flex-grow: 1;
        /* Links ko center karne ke liye Space-Between ka logic */
        justify-content: space-between;
        align-items: center;
    }

    .navbar .collapse {
        display: flex !important;
    }

    .navbar-collapse::before {
        content: '';
        flex-grow: 1;
        flex-basis: 0%;
        transition: flex-grow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links {
        display: flex !important;
        margin: 0 !important;
        flex: 0 0 auto;
        gap: 25px;
    }

    .nav-auth {
        /* Auth ko right side par chipkaye rakhega */
        margin-left: 0;
        flex-grow: 1;
        flex-basis: 0%;
        /* Logo ki width ke approx taake balance rahay */
        justify-content: flex-end;
    }

    .navbar-main.scrolled .navbar-collapse::before {
        flex-grow: 0.0001;
    }

    .navbar-logo {
        min-width: 150px;
        /* Balance ke liye */
    }

    /* .mobile-toggle {
        display: none !important;
    } */
}

.navbar-collapse {
    flex-basis: 100%;
    /* Puri width allocate karega */
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* ★ Ye line links ko center me layegi */
    align-items: center;
}

/* Mobile: Show vertical menu when toggled */
@media (max-width: 991px) {
    .nav-links {
        display: flex;
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-top: 20px;
        text-align: left;
        padding-left: 0;
        gap: 15px;
    }

    .nav-auth {
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start !important;
        margin-top: 20px;
        gap: 10px;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 0;
        /* Reset margin so it aligns right in space-between */
        color: #0C3B78;
        background: transparent !important;
        border: none;
        width: 48px;
        height: 48px;
        font-size: 26px;
        box-shadow: none !important;
        transition: transform 0.2s ease, filter 0.2s ease;
        outline: none;
        flex: 0 0 auto;
    }

    .mobile-toggle:active,
    .mobile-toggle:focus {
        transform: scale(0.95);
        filter: brightness(0.8);
    }

    .navbar-collapse {
        position: absolute;
        top: 70px;
        right: 20px;
        width: 90vw;
        /* fluid width */
        max-width: 400px;
        /* tablet max width */
        min-width: 300px;
        /* small mobile minimum width */
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform-origin: top right;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.25s ease-out, opacity 0.25s ease-out;
    }

    .navbar-collapse.show {
        transform: scaleY(1);
        display: block;
        opacity: 1;
    }

    .nav-auth {
        margin-top: 20px;
        /* Mobile menu mein thora gap */
        justify-content: flex-start;
        width: 100%;
        border-top: 1px solid #eee;
        /* Optional: Separator line */
        padding-top: 15px;
    }
}

/* ============================================================
   STRATEGIC PARTNERS TICKER STRIP
   Full-width strip between navbar and hero:
   Left label (20%) | Right scrolling carousel (80%)
   ============================================================ */
.sp-ticker-strip {
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(12, 59, 120, 0.07);
    overflow: hidden;
    min-height: 64px;
    position: relative;
    z-index: 1;
    /* Slide down on load */
    animation: heroFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Left label column */
.sp-ticker-label {
    flex: 0 0 20%;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 800;
    color: #0C3B78;
    text-align: center;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.02);
    padding: 0px 16px;
    line-height: 1.3;
}

.sp-label-icon {
    font-size: 18px;
    color: #F5A623;
    margin-bottom: 2px;
}

/* Right scrolling track */
.sp-ticker-track-wrapper {
    flex: 1 1 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Fade edges so logos enter/exit smoothly */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.sp-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    /* Animation moves one full set width (50% of total because set is duplicated) */
    animation: spScroll 28s linear infinite;
    will-change: transform;
}

/* Pause on hover for accessibility */
.sp-ticker-track-wrapper:hover .sp-ticker-track {
    animation-play-state: paused;
}

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

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

.sp-ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    border-right: 1px solid rgba(12, 59, 120, 0.07);
    transition: background 0.25s ease;
}

.sp-ticker-item:hover {
    background: rgba(12, 59, 120, 0.03);
}

.sp-ticker-logo {
    height: 48px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.82;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.sp-ticker-logo-large {
    height: 115px;
}

.sp-ticker-logo[alt*="IRIS"],
.sp-ticker-logo[alt*="Iris"],
.partner-card img[alt*="IRIS"],
.partner-card img[alt*="Iris"] {
    transform: scale(1.4);
}

.sp-ticker-item:hover .sp-ticker-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

.sp-ticker-item:hover .sp-ticker-logo[alt*="IRIS"],
.sp-ticker-item:hover .sp-ticker-logo[alt*="Iris"],
.partner-card:hover img[alt*="IRIS"],
.partner-card:hover img[alt*="Iris"] {
    transform: scale(1.5);
}

.sp-ticker-name {
    font-size: 13px;
    font-weight: 700;
    color: #0C3B78;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sp-ticker-label {
        flex: 0 0 110px;
        min-width: 110px;
        font-size: 10px;
    }

    .sp-label-icon {
        font-size: 14px;
    }

    .sp-ticker-item {
        padding: 8px 20px;
    }

    .sp-ticker-logo {
        height: 34px;
        max-width: 95px;
    }
}

@media (max-width: 480px) {
    .sp-ticker-label {
        display: none;
    }

    .sp-ticker-track-wrapper {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
}

/* ============================================================
   HERO SECTION — Split-Screen Layout
   Left: Academic info  |  Right: CTA column
   ============================================================ */
.hero-section {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px 0px;
    position: relative;
    z-index: 1;
}

/* Wrapper that creates the two-column split */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    /* Fade + slide up on load */
    animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LEFT column — academic text */
.hero-content {
    flex: 1 1 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 30px 44px !important;
    box-shadow: 0 20px 60px rgba(12, 59, 120, 0.1);
    animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* RIGHT column — CTA buttons */
.hero-cta-column {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Individual CTA card wrapper for each button */
.hero-cta-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 15px 22px;
    box-shadow: 0 8px 28px rgba(12, 59, 120, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 59, 120, 0.14);
}

/* Newsletter button inside the CTA column */
.hero-newsletter-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 22px;
    background: linear-gradient(135deg, #0C3B78, #1a5fa8);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.4px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(12, 59, 120, 0.2);
}

.hero-newsletter-btn:hover {
    background: linear-gradient(135deg, #0a3268, #154d8a);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(12, 59, 120, 0.28);
    color: #ffffff;
}

.hero-newsletter-btn i {
    margin-right: 8px;
}

.hero-title {
    text-transform: uppercase !important;
    font-size: 56px;
    font-weight: 800;
    color: #0C3B78 !important;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* .hero-title span {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #008040;
} */
.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #F5A623 !important;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-bottom: 0;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA meta paragraph (tiny text above each button) */
.hero-cta-meta {
    font-size: 11.5px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.hero-cta-meta i {
    color: #0C3B78;
    margin-right: 5px;
    font-size: 11px;
}

/* From Uiverse.io by mi-series */
.registerBtn .btn {
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E0642E;
    width: 100%;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    /* Reduced from 18px 40px */
    padding: 12px 28px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    overflow: hidden;
    cursor: pointer;
}

/* Override for CTA column variant */
.hero-cta-reg-btn {
    width: 100% !important;
    justify-content: center !important;
}

.registerBtn .btn:hover {
    opacity: .95;
}

.registerBtn .btn .animation {
    border-radius: 100%;
    animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}

/* ---- Submit Abstract — Shimmer Button ---- */
.hero-btn-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #0C3B78;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #0C3B78;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-btn-submit:hover {
    background: #0C3B78;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 59, 120, 0.25);
}

/* Moving shimmer streak */
.hero-btn-submit-shimmer {
    position: absolute;
    top: 0;
    left: -75%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: submitShimmer 2.4s ease-in-out infinite;
    pointer-events: none;
}

.hero-btn-submit:hover .hero-btn-submit-shimmer {
    animation-play-state: paused;
}

@keyframes submitShimmer {
    0% {
        left: -75%;
    }

    60% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

/* ---- Hero Inline Newsletter Form ---- */
.hero-cta-newsletter-card .hero-cta-meta {
    color: #5a6a7e;
}

.hero-nl-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.hero-nl-input {
    flex: 1 1 0;
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
    border: 1.5px solid rgba(12, 59, 120, 0.2);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.85);
    color: #0C3B78;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-nl-input::placeholder {
    color: #adb5bd;
}

.hero-nl-input:focus {
    border-color: #0C3B78;
    box-shadow: 0 0 0 3px rgba(12, 59, 120, 0.1);
}

.hero-nl-btn {
    flex: 0 0 40px;
    height: 40px;
    width: 40px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #0C3B78, #1a5fa8);
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(12, 59, 120, 0.2);
}

.hero-nl-btn:hover {
    background: linear-gradient(135deg, #0a2d5e, #0e4a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(12, 59, 120, 0.3);
}

.hero-nl-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hero-nl-msg {
    font-size: 11.5px;
    margin-top: 7px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 16px;
}

.hero-nl-msg--success {
    color: #008040;
}

.hero-nl-msg--error {
    color: #c0392b;
}

.hero-nl-msg--info {
    color: #0C3B78;
}

.hero-nl-msg--warn {
    color: #d4890a;
}

/* ---- Hero btn (global, reduced size) ---- */
.hero-btn {
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}


.hero-btn-primary {
    background: linear-gradient(135deg, #F5A623, #D05328);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
    color: #FFFFFF;
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: #0C3B78;
    border: 2px solid #0C3B78;
}

.hero-btn-outline:hover {
    background: #0C3B78;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 59, 120, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-main {
        top: 52px;
    }

    .mobile-toggle {
        display: block;
    }

    /* .nav-links,
    .nav-auth {
        display: none;
    } */

    .nav-links.mobile-active {
        /* display: flex; */
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(12, 59, 120, 0.1);
        gap: 25px;
        z-index: 999;
    }

    .nav-link-item {
        font-size: 18px;
        text-align: center;
    }

    .nav-auth.mobile-active {
        /* display: flex; */
        flex-direction: column;
        position: fixed;
        top: calc(70px + 400px);
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px 30px;
        box-shadow: 0 10px 30px rgba(12, 59, 120, 0.1);
        gap: 15px;
        z-index: 999;
    }

    .hero-section {
        padding: 40px 16px 60px;
        min-height: auto;
    }

    /* Stack the split-screen vertically on tablet/mobile */
    .hero-split {
        flex-direction: column;
        gap: 24px;
    }

    .hero-content {
        padding: 32px 24px !important;
        text-align: center;
    }

    .hero-cta-column {
        flex: 0 0 auto;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-btn {
        width: 100%;
    }

    .registerBtn .btn {
        width: 100%;
        min-width: unset !important;
    }
}

@media (max-width: 576px) {
    .topbar-left {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section {
        padding: 0px 10px 40px;
    }

    .hero-content {
        padding: 20px 16px !important;
    }

    .navbar-logo img {
        width: 30px;
    }

    .navbar-brand-custom {
        font-size: 15px;
    }

    .hero-title {
        font-size: 30px !important;
    }

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

    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
}


/* Developer conference  */
@media (max-width:768px) {
    .big-conf h1 {
        font-size: 22px;
    }
}

/* stats */
.stats-section {
    background: url('assets/stats.jpg') center/cover fixed no-repeat;
    position: relative;
}

.stats-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* Dark overlay for readability */
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: #F5A623;
    /* Yellow highlight */
}

.stats-section p {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.stats-content h3 {
    color: #F5A623 !important;
}

@media (max-width:768px) {
    .stats-section h2 {
        font-size: 1.8rem;
    }

    .stats-section p {
        font-size: 1.3rem !important;
    }
}

/* About Page */
/* From Uiverse.io by codebykay101 */
.about-card-stats {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card-stats .glassStats {
    position: relative;
    width: 240px;
    height: 260px;
    background: linear-gradient(#0C3B78, #daf9ea, transparent);
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 10px;
    margin: 0 -45px;
    backdrop-filter: blur(10px);
    transform: rotate(calc(var(--r) * 1deg));
}

.about-card-stats:hover .glassStats {
    transform: rotate(0deg);
    margin: 0 10px;
}

.about-card-stats .glassStats::before {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0C3B78;
    ;
}

.about-card-stats .glassStats h2 {
    font-size: 2.5em;
    color: #0C3B78;
}

.aboutHero {
    height: 100vh;
    background: url('assets/aboutUs.jpg') center/cover no-repeat;
    position: relative;
}

.Multipage-heading h1 {
    font-style: italic;
    margin-top: 20vw;
    font-size: 60px;
}

#about ul li {
    font-size: 1rem;
}

#about img {
    border: 4px solid #FFFFFF;
}

.about-hero-wrapper {
    /* margin-top: 120px; */
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%); */
}

.about-hero-section {
    padding: 0 0 20px 0;
    position: relative;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-page-title {
    /* text-align: start; */
    font-size: 2rem;
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-page-subtitle {
    font-size: 1.4rem;
    color: #0C3B78;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.highlight-box {
    overflow: hidden;
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-left: 4px solid #F5A623;
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0C3B78;
    margin: 0;
    line-height: 1.5;
}

.highlight-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #008040;
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.academic-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(12, 59, 120, 0.1));
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.05));
    top: -20px;
    right: -20px;
    z-index: -1;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 64, 0.15), rgba(0, 128, 64, 0.05));
    bottom: 30px;
    left: -15px;
    z-index: -1;
}

.circle-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(208, 83, 40, 0.2), rgba(208, 83, 40, 0.05));
    top: 50%;
    left: 20px;
    z-index: -1;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623, #008040);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    /* .about-hero-section {
        padding: 50px 0;
    } */

    .about-page-title {
        font-size: 2.25rem;
    }

    .about-page-subtitle {
        font-size: 1.1rem;
    }

    .highlight-text {
        font-size: 1.15rem;
    }

    .highlight-box {
        padding: 1.25rem 1.5rem;
    }

    .hero-visual {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-wrapper {
        margin-top: 90px;
    }

    .about-hero-section {
        padding: 0px;
    }

    .about-page-title {
        text-align: center;
        font-size: 1.85rem;
    }

    .about-page-subtitle {
        text-align: center;
        font-size: 1rem;
    }

    #about h2 {
        font-size: 22px;
    }

    .highlight-box {
        border-top: 4px solid #F5A623;
        border-radius: 12px 12px 0 0;
        border-left: 0px;
        text-align: center;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    .hero-visual {
        margin-top: 0rem;

    }
}

/* Mission & Vision */

.mission-section {
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.mv-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.28;
    transform: translateZ(0);
}

.mv-blob-1 {
    width: 260px;
    height: 260px;
    background: #F5A623;
    top: -40px;
    left: -40px;
    animation: mvFloat 8s infinite;
}

.mv-blob-2 {
    width: 360px;
    height: 360px;
    background: #0C3B78;
    bottom: -80px;
    right: -60px;
    animation: mvFloat 10s infinite;
}

.mv-blob-3 {
    width: 180px;
    height: 180px;
    background: #008040;
    top: 30%;
    right: 10%;
    animation: mvFloat 12s infinite;
}

@keyframes mvFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-24px);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 45px rgba(12, 59, 120, 0.08);
}

.glass-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(12, 59, 120, 0.06);
    color: #0C3B78;
    font-size: 22px;
}

/* Mission Objectives List Styling */
.mission-objectives-list {
    counter-reset: mission-counter;
}

.mission-objectives-list li {
    position: relative;
    padding-left: 1.2rem;
    list-style: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mission-objectives-list li::before {
    counter-increment: mission-counter;
    content: counter(mission-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #0C3B78;
}

.objective-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    padding: 18px;
    min-height: 140px;
    transition: transform .28s ease, box-shadow .28s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 30px rgba(12, 59, 120, 0.05);
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(12, 59, 120, 0.12);
}

.obj-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(12, 59, 120, 0.06);
}

.bg-primary-soft {
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.12), rgba(245, 166, 35, 0.08));
    color: #F5A623;
}

.bg-secondary-soft {
    background: linear-gradient(180deg, rgba(12, 59, 120, 0.08), rgba(12, 59, 120, 0.04));
    color: #0C3B78;
}

.bg-accent-soft {
    background: linear-gradient(180deg, rgba(208, 83, 40, 0.10), rgba(208, 83, 40, 0.06));
    color: #D05328;
}

.bg-green-soft {
    background: linear-gradient(180deg, rgba(0, 128, 64, 0.10), rgba(0, 128, 64, 0.06));
    color: #008040;
}

/* Add this CSS (you already have most of it, just make sure these are present) */

.objective-card-h {
    width: 350px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

@media (max-width:768px) {
    .objective-card-h {
        width: 330px !important;
    }
}

@media (max-width:576px) {
    .objective-card-h {
        width: 310px !important;
    }
}

.objective-card-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-card {
    position: absolute;
    inset: 0;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0) 100%);
}

.overlay-card h6 {
    font-size: 22px;
    font-weight: 700;
    color: #F5A623;
}

.overlay-card p {
    color: #FFFFFF !important;
    font-size: 15px;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .mv-blob-2 {
        display: none;
    }

    .mv-blob-3 {
        display: none;
    }

    /* .mission-section {
        padding: 0px 0;
    } */
}

@media (max-width: 576px) {
    .glass-card {
        padding: 16px;
    }

    .mission-vision h2 {
        font-size: 22px;
    }

    /* .objective-card {
        padding: 14px;
        min-height: 120px;
    } */
}

.objective-swiper {
    padding: 40px 0 70px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.objective-swiper-wrapper {
    width: 100%;
    position: relative;
}

/* @media (max-width:578px) {
    .objective-swiper-wrapper h4{
        font-size: 22px;
    }
} */

/* arrows styling */
.objective-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    /* arrows paas paas */
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    border-radius: 50%;
    background: #0C3B78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.swiper-button-prev {
    left: 50%;
    transform: translateX(10%);
    /* thora left */
}

.swiper-button-next {
    left: 50%;
    transform: translateX(10%);
    /* thora right */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #F5A623;
    /* Encourage accent */
    transform: translateY(-2px) scale(1.05);
}

.custom-arrow {
    width: 54px;
    height: 54px;
    border-radius: 10%;
    background: #0C3B78;
    /* Encourage Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(12, 59, 120, 0.25);
}

.custom-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    display: block;
}

/* Left arrow */
.swiper-button-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

/* Right arrow */
.swiper-button-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Hover effect */
.custom-arrow:hover {
    background: #F5A623;
    /* Encourage Orange */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(245, 166, 35, 0.35);
}

/* Disabled state */
.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}



/* Tracks/Theme cards */

.encourage-themes-section {
    margin-top: 40px;
    /* padding: 80px 0; */
    /* background: #FFFFFF; */
}

.encourage-card {
    position: relative;
    background: linear-gradient(135deg, #F5A6231a, #FFFFFF);
    /* background-image: url(assets/climatechange.jpg); */
    object-fit: cover;
    border-radius: 16px;
    padding: 32px 22px;
    margin: 15px 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(12, 59, 120, 0.08);
    transition: all 0.4s ease;
    z-index: 1;
}

.encourage-card:hover {
    transform: translateY(-8px);
}

.encourage-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0C3B78, #008040);
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.4s ease-out;
}

.encourage-card:hover::before {
    transform: scale(28);
}

.Theme-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    margin-bottom: 10px;
}

.theme-title {
    font-size: 20px;
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.sub-theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-theme-list li {
    font-size: 14px;
    color: #0C3B78;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.4s ease;
}

.sub-theme-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #F5A623;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}


.encourage-card:hover .theme-title,
.encourage-card:hover .sub-theme-list li {
    color: #FFFFFF;
}

.go-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #D05328, #F5A623);
    border-radius: 0 16px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-arrow {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    margin-top: -2px;
    margin-right: -2px;
}


.themes-section {
    margin-top: 170px;
    background: #FFFFFF;
    /* padding: 80px 0; */
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.theme-section-title {
    /* font-size: 42px; */
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.theme-section-subtitle {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* .section-subtitle {
    font-size: 18px;
    color: #008040;
    font-weight: 500;
    margin-top: 20px;
} */

.theme-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(12, 59, 120, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(12, 59, 120, 0.16);
    border-color: #F5A623;
}

.theme-header {
    margin-bottom: 24px;
    border-bottom: 2px solid #F5A623;
    padding-bottom: 16px;
}

.theme-number {
    font-size: 14px;
    font-weight: 600;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.theme-image {
    height: 220px;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* image properly fill hogi */
    object-position: center;
    /* image center rahegi */
    display: block;
}

.sub-themes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* flex-grow: 1; */
}

.sub-themes-list li {
    padding: 10px 0 10px 28px;
    color: #0C3B78;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}

.sub-themes-list li:hover {
    color: #008040;
    transform: translateX(4px);
}

.sub-themes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #F5A623;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sub-themes-list li:hover::before {
    background: #008040;
    transform: translateY(-50%) scale(1.3);
}

@media (max-width: 768px) {
    .encourage-themes-section {
        margin-top: 100px;
    }

    .themes-section {
        padding: 60px 0;
    }

    .theme-section-title {
        font-size: 32px;
    }

    .theme-section-subtitle {
        font-size: 20px;
    }

    .theme-card {
        padding: 24px;
    }

    .theme-title {
        font-size: 20px;
    }

    .theme-image {
        height: 150px;
    }

    .theme-image i {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .encourage-themes-section {
        margin-top: 80px;
    }

    .section-header {
        margin-bottom: 10px;
        padding: 10px 20px 0;
    }

    .theme-section-title {
        font-size: 1.85rem;
    }

    .theme-section-subtitle {
        font-size: 16px;
        margin-bottom: 0;
    }

    .theme-card {
        padding: 20px;
    }
}

/* Move dots DOWN (space under cards) */
.tracks-slider .swiper-pagination {
    position: relative;
    margin-top: 18px;
    /* you can increase to 24px if needed */
}

/* Dots color */
.swiper-pagination-bullet {
    background: #0C3B78 !important;
    /* inactive dots */
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #0C3B78 !important;
    /* active dot */
    opacity: 1;
}


@media (max-width: 480px) {

    .tracks-grid,
    .tracks-grid-second {
        grid-template-columns: 1fr;
        /* ONE CARD PER ROW */
        gap: 18px;
    }

    .card-image-wrapper {
        height: 150px;
        /* reduce card height */
    }

    .track-title {
        font-size: 1.05rem;
    }

    .track-description {
        font-size: 0.85rem;
    }

    .track-card {
        border-radius: 14px;
    }

    .track-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: -14px;
        right: 20px;
    }
}

/* Features */

.features-section {
    min-height: 100%;
    width: 100%;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

/* .background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(12, 59, 120, 0.03) 0%,
            rgba(245, 166, 35, 0.02) 50%,
            rgba(0, 128, 64, 0.03) 100%);
    z-index: 0;
}

.background-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(12, 59, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 128, 64, 0.05) 0%, transparent 50%);
    filter: blur(60px);
}

.background-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.01) 2px, rgba(0, 0, 0, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.01) 2px, rgba(0, 0, 0, 0.01) 4px);
    opacity: 0.3;
} */

.feature-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.feature-title {
    /* font-size: 48px; */
    font-weight: 700;
    /* background: linear-gradient(135deg, #0C3B78 0%, #008040 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

@media (max-width:576px) {
    .feature-title {
        font-size: 22px;
    }

    .feature-content-wrapper {
        margin-top: 50px !important;
    }
}

.cards-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
}

/* .cards-row {
    display: contents;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
} */

.feature-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 25px 25px;
    flex: 1;
    max-width: 220px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(12, 59, 120, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 1px;
    /* background: linear-gradient(135deg,
            rgba(245, 166, 35, 0.3) 0%,
            rgba(12, 59, 120, 0.2) 50%,
            rgba(0, 128, 64, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(245, 166, 35, 0.15),
        0 8px 32px rgba(12, 59, 120, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(12, 59, 120, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.25);
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: #F5A623;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon svg {
    stroke: #D05328;
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5));
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .card-title {
    color: #F5A623;
}

.card-description {
    font-size: 13px;
    color: #0C3B78;
    opacity: 0.75;
    text-align: center;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-description {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .cards-container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .feature-card {
        flex: 0 0 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .cards-container {
        gap: 20px;
    }

    .feature-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        padding: 35px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .cards-container {
        gap: 15px;
    }

    .feature-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
}

/* Speaker */
.speakers-hero-wrapper {
    /* margin-top: 100px; */
    width: 100%;
    min-height: 100%;
    /* background: linear-gradient(135deg, #FFFFFF 0%, #F5F8FC 100%); */
    overflow-x: hidden;
    position: relative;
}

.speakers-hero-section {
    padding: 0 40px 20px;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #0C3B78;
    opacity: 0.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #F5A623;
    font-weight: 600;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    max-width: 650px;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0C3B78;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #0C3B78;
    opacity: 0.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.speaker-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #F5A623 0%, #D05328 100%);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

.badge-icon {
    font-size: 1.3rem;
}

.hero-visual-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: floatAnimation 6s ease-in-out infinite;
}

.shape-1 {
    width: 140px;
    height: 140px;
    background: #F5A623;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: #008040;
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    background: #D05328;
    top: 50%;
    left: -40px;
    animation-delay: 4s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.academic-visual-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(12, 59, 120, 0.1));
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .speakers-hero-section {
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-visual-area {
        order: -1;
    }

    .visual-wrapper {
        max-width: 400px;
    }
}

.container {
    position: relative;
    z-index: 1;
}

.speaker-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.nav-tabs {
    border-bottom: 3px solid #e9ecef;
    margin-bottom: 50px;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    color: #0C3B78;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 8px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-tabs .nav-link:hover {
    color: #F5A623;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #F5A623 0%, #D05328 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    transform: translateY(-3px);
}

.tab-content {
    position: relative;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-pane.active {
    opacity: 1;
}

.speaker-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F5A623 0%, #D05328 50%, #008040 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.speaker-card:hover::before {
    transform: scaleX(1);
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.25);
}

.speaker-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F5A623;
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.3);
    transition: all 0.4s ease;
}

.speaker-card:hover .speaker-image-wrapper {
    border-color: #0C3B78;
    box-shadow: 0 8px 30px rgba(12, 59, 120, 0.4);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-card:hover .speaker-image {
    transform: scale(1.15);
}

.speaker-name {
    font-size: 22px;
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-name {
    color: #F5A623;
}

.speaker-title {
    font-size: 15px;
    color: #008040;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-bio {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.avatar-keynote {
    background: linear-gradient(135deg, #0C3B78 0%, #008040 100%);
}

.avatar-mentor {
    background: linear-gradient(135deg, #F5A623 0%, #D05328 100%);
}

.avatar-reviewer {
    background: linear-gradient(135deg, #008040 0%, #0C3B78 100%);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 38px;
    }

    .nav-tabs .nav-link {
        font-size: 16px;
        padding: 12px 25px;
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .speakers-hero-section {
        padding: 0px 0 50px;
    }

    .hero-main-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .speaker-count-badge {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-text-content {
        max-width: 768px;
    }

    .nav-tabs {
        display: flex !important;
        flex-direction: row !important;
        /* Force karega ek line mein rehne ke liye */
        flex-wrap: nowrap;
        justify-content: center;
    }

    .nav-tabs .nav-item {
        flex: 0 1 auto;
        width: auto;
        /* Width auto rakhein taake content ke hisaab se fit ho */
    }

    .speakers-section {
        padding: 60px 0;
    }

    .speaker-section-title {
        font-size: 40px;
        font-weight: 600;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: center;
    }

    .nav-tabs .nav-link {
        margin: 5px 0;
        width: 100%;
        max-width: 300px;
    }

    .speaker-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        /* Buttons ko wrap karne ke liye */
        justify-content: space-between;
        gap: 10px 0;
        /* Rows ke beech me thoda gap */
    }

    .nav-tabs .nav-item {
        width: 48%;
        /* Takriban 50%, taake 1 row me 2 buttons aayein */
        margin: 0 !important;
        /* Purane margins hata dega */
    }

    .nav-tabs .nav-link {
        width: 100%;
        /* Button apni parent 'li' ki puri jagah lega */
        margin: 0;
        text-align: center;
        padding: 10px 5px;
        /* Mobile par padding thodi kam */
        font-size: 13px;
        /* Mobile readability ke liye */
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 30px 0 0px;
    }

    .speakers-hero-wrapper {
        margin-top: 0px;
        gap: 50px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

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

    .decorative-accent {
        width: 60px;
        height: 4px;
    }

    .visual-wrapper {
        max-width: 320px;
    }

    .speakers-section {
        padding: 20px 8px;
    }

    .speaker-section-title {
        font-size: 25px;
        font-weight: 600;
    }

    .speaker-section-header {
        margin-bottom: 30px 0 20px;
    }

    .speaker-section-header p {
        font-size: 15px;
    }

    .speaker-image-wrapper {
        width: 90px;
        height: 90px;
    }

    .speaker-card {
        padding: 15px;
        height: 100%;
        margin-bottom: 0;
    }

    .speaker-name {
        font-size: 16px;
    }

    .speaker-title {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.1px;
    }

    .speaker-bio {
        font-size: 12px;
    }
}



/* News letter — Integrated Light Mode */
.newsletter-integrated {
    position: relative;
    background-color: #f7fafe;
    /* Matches the top of the footer or section above */
    padding: 0;
    margin: 0;
}

.newsletter-light-bar {
    background: #ffffff;
    /* This negative margin pulls it UP so it overlaps the space, or we can just let it sit. */
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
    margin-bottom: -30px;
    /* Overlaps into the footer slightly for cohesive integration */
}

.newsletter-form-wrapper {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background-color: #ffffff;
    border-color: #0C3B78;
    box-shadow: 0 0 0 3px rgba(12, 59, 120, 0.15);
    outline: none;
}

.newsletter-btn {
    background: #0C3B78;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #F5A623;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 166, 35, 0.2);
}

.newsletter-message {
    max-width: 600px;
    margin: 10px auto 0;
    text-align: left;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-form-wrapper {
        flex-direction: column;
    }

    .newsletter-light-bar {
        padding: 1.5rem;
    }
}

/* schedule */

.schedule-hero-wrapper {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0 40px 20px;
    /* background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%); */
}

.schedule-hero-section {
    position: relative;

    background: #FFFFFF;
}

.schedule-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Badge Row */
.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(208, 83, 40, 0.1) 100%);
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0C3B78;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
    border-color: #F5A623;
}

.badge-icon {
    width: 8px;
    height: 8px;
    background: #F5A623;
    border-radius: 50%;
}

/* Typography */
.schedule-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0C3B78;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.sch-head-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0rem;
    max-width: 95%;
}

/* Info Cards */
.schedule-info-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 140px;
    padding: 20px;
    background: #FFFFFF;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #F5A623;
    box-shadow: 0 8px 25px rgba(12, 59, 120, 0.12);
}

.info-card-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #F5A623;
    line-height: 1;
    margin-bottom: 8px;
}

.info-card-label {
    font-size: 0.95rem;
    color: #6C757D;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-visual-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.timeline-visual {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.timeline-card {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(12, 59, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F5A623 0%, #008040 50%, #D05328 100%);
}

.timeline-path {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #F5A623 0%, #008040 50%, #D05328 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 3px solid #F5A623;
    border-radius: 50%;
    z-index: 2;
    animation: pulse 2s infinite;
}

.timeline-item:nth-child(2) .timeline-dot {
    border-color: #0C3B78;
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) .timeline-dot {
    border-color: #008040;
    animation-delay: 0.8s;
}

.timeline-item:nth-child(4) .timeline-dot {
    border-color: #D05328;
    animation-delay: 1.2s;
}

.timeline-item:nth-child(5) .timeline-dot {
    border-color: #F5A623;
    animation-delay: 1.6s;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
    }
}

.timeline-label {
    font-size: 0.85rem;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-title {
    font-size: 1.1rem;
    color: #0C3B78;
    font-weight: 600;
    line-height: 1.4;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.deco-circle-1 {
    width: 250px;
    height: 250px;
    background: #F5A623;
    top: -80px;
    right: 15%;
}

.deco-circle-2 {
    width: 180px;
    height: 180px;
    background: #008040;
    bottom: -60px;
    left: 10%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .schedule-hero-section {
        padding: 70px 0 60px;
    }

    .schedule-page-title {
        font-size: 2.75rem;
    }

    .schedule-subtitle {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .info-card {
        min-width: 130px;
    }

    .deco-circle-1 {
        display: none;
    }
}

@media (max-width: 768px) {
    .schedule-hero-section {
        padding: 60px 0 50px;
    }

    .schedule-page-title {
        font-size: 2.25rem;
    }

    .schedule-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .schedule-info-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 18px !important;
        justify-content: space-between;
    }

    .info-card {
        min-width: 0 !important;
        flex: 1 1 0;
        padding: 15px 5px !important;
    }

    .info-card-number {
        font-size: 1.2rem !important;
    }

    .info-card-label {
        font-size: 11px !important;
        white-space: nowrap;
    }

    .schedule-visual-container {
        margin-top: 10px;
    }

    .timeline-card {
        padding: 40px 30px;
    }

    .deco-circle-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .schedule-hero-wrapper {
        margin-top: 80px;
        padding: 0px;
    }

    .schedule-page-title {
        font-size: 1.85rem;
    }

    .sch-head-sub {
        font-size: 16px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-badges {
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .schedule-info-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        justify-content: space-between;
    }

    .info-card {
        min-width: 0 !important;
        flex: 1 1 0;
        padding: 15px 5px !important;
    }

    .info-card-number {
        font-size: 1.2rem !important;
    }

    .info-card-label {
        font-size: 11px !important;
        white-space: nowrap;
    }

    .schedule-visual-container {
        margin-top: 8px;
        padding: 0 0 20px;
    }

    .timeline-card {
        padding: 30px 25px;
    }

    .timeline-title {
        font-size: 1rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

.conference-schedule-section {
    min-height: 100%;
    /* background: linear-gradient(135deg, #0C3B78 0%, #1a5ba8 100%); */
    background: linear-gradient(135deg, #9abce9 0%, #e5e5e5 100%);
    position: relative;
    overflow: hidden;
}

.diagonal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px);
    pointer-events: none;
    z-index: 1;
}

.conference-schedule-section .row {
    position: relative;
    z-index: 2;
}

/* Left Column - Vertical Heading */
.vertical-heading-container {
    height: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 50 40px;
}

.color-bars {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bar {
    width: 6px;
    height: 80px;
    border-radius: 3px;
}

.bar-orange {
    background-color: #F5A623;
}

.bar-green {
    background-color: #008040;
}

.bar-accent {
    background-color: #F5A623;
    height: 120px;
}

.bar-red {
    background-color: #D05328;
}

.vertical-text-wrapper {
    position: relative;
}

.vertical-heading {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 100px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-accent {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623 0%, #D05328 100%);
    border-radius: 2px;
}

.accent-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #F5A623;
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.6);
}

/* Right Column - Schedule Content */
.schedule-content-wrapper {
    padding: 50px 50px;
    min-height: 100%;
}

.schedule-header {
    margin-bottom: 50px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(245, 166, 35, 0.15);
    border: 2px solid #0C3B78;
    border-radius: 30px;
    color: #0C3B78;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-badge i {
    font-size: 18px;
}

.schedule-title {
    font-size: 30px;
    font-weight: 800;
    /* color: #FFFFFF; */
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.schedule-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.speaker-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.schedule-speaker {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background: #FFFFFF;
    position: relative;
}

.schedule-speaker img {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 200px;
    /* thoda extra width for better crop */
    transform: translate(-50%, -15%);
    object-fit: cover;
}

.speaker-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.speaker-label strong {
    color: #0C3B78;
    font-size: 16px;
    font-weight: 700;
}

.speaker-label span {
    color: #0C3B78;
    font-size: 13px;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
}

.day-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F5A623 0%, #ff9800 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.day-badge.badge-green {
    background: linear-gradient(135deg, #008040 0%, #00a854 100%);
    box-shadow: 0 6px 20px rgba(0, 128, 64, 0.4);
}

.day-badge.badge-red {
    background: linear-gradient(135deg, #D05328 0%, #e67a52 100%);
    box-shadow: 0 6px 20px rgba(208, 83, 40, 0.4);
}

.day-number {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
}

.day-label {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 20px;
    font-weight: 700;
    color: #0C3B78;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #0C3B78;
    margin: 0 0 12px 0;
}

.item-meta i {
    font-size: 16px;
    color: #F5A623;
}

.separator {
    color: rgba(0, 0, 0, 0.4);
}

.item-preview {
    font-size: 12px;
    color: #0C3B78;
    margin: 0;
    line-height: 1.6;
}

.expand-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: #F5A623;
    transform: scale(1.1);
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.schedule-item.active .expand-btn i {
    transform: rotate(180deg);
}

/* Item Details */
.item-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-item.active .item-details {
    max-height: 800px;
}

.details-content {
    padding: 0 28px 28px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.details-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #4d4c4c;
    margin: 28px 0 20px 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlights-list i {
    font-size: 20px;
    color: #F5A623;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlights-list div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlights-list strong {
    font-size: 15px;
    color: #0C3B78;
    font-weight: 600;
}

.highlights-list span {
    font-size: 14px;
    color: #0C3B78;
    line-height: 1.5;
}

.quick-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: #F5A623;
    flex-shrink: 0;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 28px;
    font-weight: 800;
    color: #0C3B78;
    line-height: 1;
}

.stat-item span {
    font-size: 13px;
    color: #0C3B78;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Download CTA */
.download-cta {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-content>i {
    font-size: 48px;
    color: #F5A623;
    flex-shrink: 0;
}

.cta-content>div {
    flex: 1;
}

.cta-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0C3B78;
    margin: 0 0 6px 0;
}

.cta-content p {
    font-size: 14px;
    color: #0C3B78;
    margin: 0;
    line-height: 1.5;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #F5A623 0%, #ff9800 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    flex-shrink: 0;
}

.btn-download:hover {
    background: linear-gradient(135deg, #ff9800 0%, #F5A623 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.6);
    color: #FFFFFF;
}

.btn-download i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .vertical-heading-container {
        min-height: auto;
        padding: 50px 30px;
    }

    .vertical-heading {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        font-size: 48px;
        letter-spacing: 4px;
    }

    .color-bars {
        left: 20px;
        flex-direction: row;
    }

    .bar {
        width: 60px;
        height: 6px;
    }

    .bar-accent {
        width: 100px;
        height: 6px;
    }

    .bottom-accent {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .schedule-content-wrapper {
        padding: 50px 30px;
    }

    .speaker-image-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .vertical-heading {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .schedule-title {
        font-size: 28px;
    }

    .schedule-subtitle {
        font-size: 16px;
    }

    .schedule-content-wrapper {
        padding: 40px 20px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .color-bars {
        display: none;
    }

    .bottom-accent {
        display: none;
    }

    .vertical-heading-container {
        padding: 40px 0 0;
    }


    .day-badge {
        width: 70px;
        height: 70px;
    }

    .day-number {
        font-size: 28px;
    }

    .expand-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .item-title {
        font-size: 18px;
    }

    .item-meta {
        font-size: 13px;
    }

    .details-content {
        padding: 0 20px 20px 20px;
    }

    .quick-stats {
        margin-top: 20px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .vertical-heading {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: 2px;
    }

    .vertical-heading-container {
        padding: 40px 0 0;
    }

    .schedule-title {
        font-size: 24px;
    }

    .color-bars {
        display: none;
    }

    .bottom-accent {
        display: none;

    }

    /* .speaker-image {
        width: 140px;
        height: 140px;
    } */

    .day-badge {
        width: 60px;
        height: 60px;
    }

    .day-number {
        font-size: 24px;
    }

    .day-label {
        font-size: 10px;
    }
}


/* Partners */
.page-wrapper {
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%); */
}

.partners-hero {
    /* margin-top: 50px; */
    width: 100%;
    min-height: 500px;
    /* background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 50%, #E8F0FE 100%); */
    position: relative;
    overflow: hidden;
    padding: 0px 20px 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12, 59, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.partners-hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partners-hero-subheading {
    font-size: 1.25rem;
    color: #6C757D;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #F5A623 0%, #D05328 100%);
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    text-decoration: none;
    display: inline-block;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
    background: linear-gradient(135deg, #D05328 0%, #F5A623 100%);
}

/* Decorative Elements */
.decorative-shape {
    position: absolute;
    opacity: 0.6;
}

.partners-shape-1 {
    top: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    border: 3px solid #F5A623;
    border-radius: 20px;
    transform: rotate(25deg);
}

.partners-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 3px solid #0C3B78;
    border-radius: 50%;
}

.partners-shape-3 {
    top: 40%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008040 0%, transparent 100%);
    border-radius: 15px;
    transform: rotate(-15deg);
}

/* Partners Section */
.partners-section {
    width: 100%;
    padding: 80px 20px;
    background: #FFFFFF;
}

.partners-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0C3B78;
    text-align: center;
    margin-bottom: 60px;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding: 0 20px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 40px rgba(12, 59, 120, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.partner-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.15), 0 5px 15px rgba(12, 59, 120, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 1);
    border-color: rgba(245, 166, 35, 0.4);
    background: rgba(255, 255, 255, 0.65);
}

.partner-card:hover::before {
    left: 200%;
}

.partner-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.partner-card:hover .partner-logo {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.partner-logo .Hsn-Design {
    font-family: Space Grotesk, sans-serif !important;
    letter-spacing: -0.05em;
    color: #E89803;
    font-weight: 500;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: 65%;
    height: auto;
    object-fit: contain;
}

.partner-logo img.logo-large {
    width: 95%;
    /* IRIS ke liye bada */
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0C3B78;
    text-align: center;
    margin: 0;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-name {
    color: #D05328;
}

/* Responsive Design */
@media (max-width: 992px) {
    .partners-hero-subheading {
        font-size: 1.1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-section-title {
        font-size: 32px;
    }

    .partner-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .partners-hero {
        padding: 70px 20px 20px;
        min-height: 400px;
    }

    .partners-hero-heading {
        font-size: 1.85rem;
    }

    .partners-section {
        width: 100%;
        padding: 30px 20px;
        background: #FFFFFF;
    }

    .partners-hero-subheading {
        font-size: 16px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0px;
    }

    .partners-section-title {
        font-size: 25px;
        font-weight: 600;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }

    .partner-logo .Hsn-Design {
        font-size: 16px;
    }

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

    .partner-card {
        padding: 30px 20px;
        min-height: 180px;
    }

    .decorative-shape {
        display: none;
    }
}


/* Contact Us */
.contactHero {
    height: 100vh;
    background: url('assets/contactImg.jpg') center/cover no-repeat;
    position: relative;
    /* margin-top: -140px; */
    /* Pull hero up behind navbar + topbar */
    /* padding-top: 100px; */
    /* Ensure text stays visible */
}

.contactHero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.contact-hero {
    background: linear-gradient(135deg, #0C3B78 0%, #1a5ba8 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 128, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    /* margin: 0 auto; */
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    /* margin-top: 120px !important; */
    padding: 40px 0;
    /* background: #f8f9fa; */
}

.contact-info-wrapper,
.contact-form-wrapper {
    /* background: #ffffff; */
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-section-title,
.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #0C3B78;
    margin-bottom: 16px;
}

.section-description,
.form-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F5A623 0%, #ff9800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.contact-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.contact-content p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.social-links {
    padding-top: 32px;
    border-top: 2px solid #f8f9fa;
}

.social-links h5 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0C3B78;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #F5A623 0%, #ff9800 100%);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.required {
    color: #D05328;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #F5A623;
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    background: linear-gradient(135deg, #F5A623 0%, #ff9800 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e69619 0%, #ff9800 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Success Message */
.alert-success {
    background: #d4edda;
    border: 2px solid #008040;
    border-radius: 8px;
    color: #155724;
    padding: 16px;
    font-size: 15px;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 32px;
    }

    .contact-section-title,
    .form-title {
        font-size: 28px;
    }
}

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

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-section-title,
    .form-title {
        font-size: 24px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-content h5 {
        font-size: 14px !important;

    }

    .contact-content p {
        font-size: 12px !important;
    }
}

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

    .hero-tagline {
        font-size: 14px;
    }

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 20px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}


/* FAQs Section */
.main-wrapper {
    /* margin-top: 120px; */
    width: 100%;
    height: 100%;
    overflow: auto;
}

/* Page Title Styling */
.page-title {
    color: #0C3B78;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.page-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-category-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.faq-category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-title {
    color: #008040;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-icon {
    font-size: 1.75rem;
}

/* Bootstrap Accordion Customization */
.accordion-button {
    background-color: #f9fafb;
    color: #1f2937;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #eef2ff;
    color: #0C3B78;
    border-color: #c7d2fe;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(90, 103, 216, 0.15);
    border-color: #a5b4fc;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a67d8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-body {
    background-color: #ffffff;
    color: #4b5563;
    padding: 1.25rem;
    line-height: 1.7;
    border: 1px solid #e5e7eb;
    border-top: none;
}

@media (max-width: 768px) {
    .faq-category-card {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .main-wrapper {
        margin-top: 80px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .faq-category-card {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .page-title {
        font-size: 1.85rem;
    }

    .contact-section {
        margin-top: 70px !important;
        /* padding: 2rem 1.5rem; */
        padding: 1rem !important;
    }
}

/* Contact Section */
.contact-section {
    /* background: linear-gradient(135deg, #0C3B78 0%, #104d9c 100%); */
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-top: 3rem;
}

.contact-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section p {
    /* margin-bottom: 1.5rem; */
    opacity: 0.95;
}

.contact-btn {
    background-color: #ffffff;
    color: #0C3B78;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #f3f4f6;
    color: #4c51bf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Footer */
.footer {
    background-color: #f7fafe;
    padding-top: 50px !important;
}

.footer-links li a {
    color: #495057;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #F5A623;
    margin-left: 3px;
}

.footer .bi {
    transition: 0.3s;
}

.footer .bi:hover {
    color: #F5A623;
}

/* ============================================================
   MISSION & VISION SECTION — Premium Redesign
   ============================================================ */

/* ---------- Section wrapper ---------- */
.mv-section {
    background: #f0f4f8;
    padding: 5rem 1.5rem;
}

/* ---------- Animated background orbs ---------- */
.mv-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    animation: mvOrbFloat 14s ease-in-out infinite alternate;
}

.mv-orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #0C3B78, #008040);
    top: -100px;
    left: -100px;
    animation-duration: 16s;
}

.mv-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #F5A623, #D05328);
    top: 40%;
    right: -80px;
    animation-duration: 12s;
    animation-delay: 3s;
}

.mv-orb-3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #008040, #0C3B78);
    bottom: 60px;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 6s;
}

@keyframes mvOrbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.08);
    }

    100% {
        transform: translate(-20px, 25px) scale(0.95);
    }
}

/* ---------- Subtle grid overlay ---------- */
.mv-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(12, 59, 120, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 59, 120, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* ---------- Section header ---------- */
.mv-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0C3B78, #008040);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(12, 59, 120, 0.25);
}

.mv-main-title {
    font-size: 2.6rem;
    color: #0C3B78;
    letter-spacing: -0.5px;
}

.mv-title-accent {
    color: #008040;
}

.mv-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
    font-style: italic;
    margin-top: 6px;
}

/* ---------- Cards ---------- */
.mv-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(12, 59, 120, 0.09);
    border: 1px solid rgba(12, 59, 120, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(12, 59, 120, 0.15);
}

/* Decorative corner accent */
.mv-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    border-radius: 0 20px 0 100%;
    opacity: 0.12;
}

.mv-vision-card .mv-card-corner {
    background: linear-gradient(135deg, #008040, #0C3B78);
}

.mv-mission-card .mv-card-corner {
    background: linear-gradient(135deg, #F5A623, #D05328);
}

/* ---------- Card Icon Header ---------- */
.mv-card-icon-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.2rem;
}

.mv-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.mv-icon-vision {
    background: linear-gradient(135deg, #0C3B78, #008040);
    color: #fff;
}

.mv-icon-mission {
    background: linear-gradient(135deg, #F5A623, #D05328);
    color: #fff;
}

.mv-card-label h4 {
    color: #0C3B78;
    font-size: 1.35rem;
}

.mv-card-sub {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---------- Animated Divider ---------- */
.mv-divider {
    height: 3px;
    border-radius: 3px;
    margin-bottom: 1.4rem;
    position: relative;
    overflow: hidden;
}

.mv-divider-vision {
    background: linear-gradient(90deg, #0C3B78, #008040, #0C3B78);
    background-size: 200%;
    animation: mvShimmer 3s linear infinite;
}

.mv-divider-mission {
    background: linear-gradient(90deg, #F5A623, #D05328, #F5A623);
    background-size: 200%;
    animation: mvShimmer 3s linear infinite;
}

@keyframes mvShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ---------- Vision Quote ---------- */
.mv-quote {
    margin: 0 0 1.4rem;
    padding: 0;
    border: none;
    position: relative;
}

.mv-quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: #008040;
    opacity: 0.25;
    position: absolute;
    top: -8px;
    left: -4px;
}

.mv-quote-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3a3a3a;
    font-style: italic;
    padding-left: 32px;
    margin: 0;
}

/* ---------- Vision Tags ---------- */
.mv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.mv-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 128, 64, 0.08), rgba(12, 59, 120, 0.08));
    border: 1px solid rgba(0, 128, 64, 0.25);
    color: #0C3B78;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mv-tag:hover {
    background: linear-gradient(135deg, #008040, #0C3B78);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ---------- Mission Lead Text ---------- */
.mv-mission-lead {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* ---------- "Why it works / Why it's professional" Sub-heading ---------- */
.mv-why-title {
    font-size: 0.95rem;
    color: #0C3B78;
    border-left: 3px solid #F5A623;
    padding-left: 10px;
    margin-top: 0.5rem;
    letter-spacing: 0.2px;
}

/* ---------- Mission Pillars List ---------- */
.mv-pillars-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05), rgba(208, 83, 40, 0.05));
    border: 1px solid rgba(245, 166, 35, 0.15);
    transition: all 0.3s ease;
}

.mv-pillar-item:hover {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(208, 83, 40, 0.12));
    border-color: rgba(245, 166, 35, 0.35);
    transform: translateX(4px);
}

.mv-pillar-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #F5A623, #D05328);
    border-radius: 8px;
    padding: 3px 8px;
    min-width: 32px;
    text-align: center;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mv-pillar-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mv-pillar-icon {
    font-size: 1rem;
    color: #D05328;
    margin-top: 3px;
    flex-shrink: 0;
}

.mv-pillar-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.55;
}

.mv-pillar-content p strong {
    color: #0C3B78;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .mv-section {
        padding: 3rem 1rem;
    }

    .mv-main-title {
        font-size: 2rem;
    }

    .mv-card {
        padding: 1.5rem;
    }

    .mv-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .mv-quote-text {
        padding-left: 24px;
        font-size: 0.97rem;
    }
}