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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ─── Navbar Shell ───────────────────────────────────────── */
.site-navbar {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(31, 114, 68, 0.15), 0 0 0 1px rgba(31, 114, 68, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border: 2.5px solid #1f7244;
    border-top: none;
    border-radius: 0 0 16px 16px;
    overflow: visible;
}

.site-navbar::before {
    content: none;
}

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

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

/* ─── Inner Container ─────────────────────────────────────── */
.nav-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ─── Brand ───────────────────────────────────────────────── */
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

/* ─── Logo with zoom hover ────────────────────────────────── */
.nav-brand img {
    height: 90px;
    width: 90px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    border: 2.5px solid #1f7244;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.nav-brand:hover img {
    transform: scale(1.13);
    box-shadow: 0 8px 28px rgba(31, 114, 68, 0.28);
    border-color: #2da65e;
}

/* ─── Nav Menu (the collapsible panel) ────────────────────── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
}

/* ─── Nav Links list ──────────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    display: block;
    color: #4a6657;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 20px;
    border-radius: 50px;
    letter-spacing: 0.01em;
    position: relative;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    isolation: isolate;
    border: 1.5px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50px;
    background: radial-gradient(ellipse at center,
            rgba(45, 166, 94, 0.55) 0%,
            rgba(31, 114, 68, 0.30) 45%,
            transparent 72%);
    opacity: 0;
    transform: scale(0.5);
    filter: blur(12px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.5, 0.64, 1);
    z-index: -2;
    pointer-events: none;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a6840 0%, #1f7244 50%, #28955c 100%);
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.28s ease, transform 0.35s cubic-bezier(0.34, 1.5, 0.64, 1);
    z-index: -1;
    pointer-events: none;
}

.nav-links li a:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    border-color: rgba(31, 114, 68, 0.40);
}

.nav-links li a:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.nav-links li a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.nav-links li a.active {
    color: #ffffff !important;
    font-weight: 600;
    border-color: rgba(31, 114, 68, 0.35);
}

.nav-links li a.active::after {
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(135deg, #165a35 0%, #1f7244 100%);
}

@keyframes breathe {

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

    50% {
        opacity: 0.75;
        transform: scale(1.55);
    }
}

.nav-links li a.active::before {
    opacity: 0.45;
    transform: scale(1.25);
    animation: breathe 2.8s ease-in-out infinite;
}

/* ─── Hamburger Button ────────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1.5px solid #1f7244;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
    z-index: 1002;
    position: relative;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2.2px;
    background: #1f7244;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.25s ease,
        background 0.3s ease;
    transform-origin: center;
}

.nav-hamburger:hover {
    background: #1f7244;
}

.nav-hamburger:hover span {
    background: #ffffff;
}

.nav-hamburger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 114, 68, 0.2);
}

/* Hamburger → X animation when open */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7.2px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7.2px) rotate(-45deg);
}

.nav-hamburger.open {
    background: #1f7244;
    border-color: #1f7244;
}

.nav-hamburger.open span {
    background: #ffffff;
}

/* ─── Mobile overlay ──────────────────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    display: block;
}

/* ─── Review Badges ───────────────────────────────────────── */
.navbar-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-left: 1.5px solid rgba(31, 114, 68, 0.15);
    padding-left: 14px;
}

.nb-review-card {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1.5px solid rgba(31, 114, 68, 0.18);
    border-radius: 10px;
    padding: 6px 10px;
    text-decoration: none !important;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
    height: 44px;
}

.nb-review-card:hover {
    box-shadow: 0 4px 14px rgba(31, 114, 68, 0.14);
    border-color: rgba(31, 114, 68, 0.38);
    transform: translateY(-1px);
}

.nb-review-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nb-review-logo.g-logo {
    background: #ffffff;
    border: 1.5px solid #e8e8e8;
}

.nb-review-logo.jd-logo {
    background: transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 7px;
    width: 28px;
    height: 28px;
}

.nb-review-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nb-review-row {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.nb-review-name {
    font-size: 11px;
    font-weight: 700;
    color: #1a2e23;
}

.nb-score {
    font-size: 11px;
    font-weight: 800;
    color: #1a2e23;
}

.nb-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}

.nb-stars i {
    font-size: 9px;
    color: #f59e0b;
}

.nb-count {
    font-size: 9px;
    font-weight: 500;
    color: #8a9aaa;
    margin-left: 3px;
}

/* ══════════════════════════════════════
   TOP BAR MARQUEE — above navbar
   ══════════════════════════════════════ */
.topbar-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #071a0e 0%, #1f7244 40%, #0f3d25 70%, #071a0e 100%);
    border-bottom: 2px solid rgba(74, 222, 128, 0.3);
    padding: 7px 0;
    position: relative;
    z-index: 1001;
}

.topbar-marquee::before,
.topbar-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.topbar-marquee::before {
    left: 0;
    background: linear-gradient(to right, #071a0e, transparent);
}

.topbar-marquee::after {
    right: 0;
    background: linear-gradient(to left, #071a0e, transparent);
}

.topbar-marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: topMarquee 32s linear infinite;
}

.topbar-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 22px;
    border-right: 1px solid rgba(74, 222, 128, 0.22);
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.topbar-marquee-track span:last-child {
    border-right: none;
}

.topbar-marquee-track i {
    color: #5DF094;
    font-size: 11px;
}

.topbar-marquee:hover .topbar-marquee-track {
    animation-play-state: paused;
}

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

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




/* ─── Desktop only: show hamburger = none ─────────────────── */
@media (min-width: 992px) {
    .nav-hamburger {
        display: none !important;
    }
}

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .nav-brand img {
        height: 52px;
        width: auto;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 2px solid rgba(31, 114, 68, 0.25);
        border-top: 2px solid #1f7244;
        box-shadow: 0 8px 32px rgba(31, 114, 68, 0.15);
        z-index: 999;
        border-radius: 0 0 14px 14px;
        overflow: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 8px;
        animation: menuSlideDown 0.28s cubic-bezier(0.33, 1, 0.68, 1) both;
    }

    .nav-menu.open {
        display: flex;
    }

    @keyframes menuSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 8px;
        gap: 4px;
    }

    .nav-links li a {
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        border-radius: 12px;
        transition: all 0.25s ease;
        border: none !important;
    }

    /* Clean mobile-only hover/active */
    .nav-links li a:hover,
    .nav-links li a.active {
        background: #1f7244 !important;
        color: #ffffff !important;
        transform: none !important;
    }

    /* Remove desktop pseudo effects on mobile to prevent messy layout */
    .nav-links li a::before,
    .nav-links li a::after {
        display: none !important;
    }

    .navbar-reviews {
        border-left: none;
        border-top: 1px solid rgba(31, 114, 68, 0.10);
        padding: 12px 16px 16px;
        justify-content: center;
        gap: 10px;
    }

    /* Marquee slightly smaller on mobile */
    .topbar-marquee-track span {
        font-size: 10.5px;
        padding: 0 14px;
    }
}

/* ════════════════════════════════
   HERO SECTION CSS — Updated
   ════════════════════════════════ */

.hero {
    height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
    display: flex;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
}

/* ── LEFT BG ── */
.left-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: #0a2e18;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(74, 222, 128, 0.18) 0%, transparent 48%),
        radial-gradient(ellipse at 55% 85%, rgba(31, 114, 68, 0.25) 0%, transparent 48%),
        linear-gradient(135deg, #061a0d 0%, #0f3d25 45%, #1a6638 80%, #22874a 100%);
    clip-path: url(#concaveClip);
}

.left-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 55px, rgba(255, 255, 255, 0.018) 55px, rgba(255, 255, 255, 0.018) 56px),
        repeating-linear-gradient(-45deg, transparent, transparent 55px, rgba(255, 255, 255, 0.018) 55px, rgba(255, 255, 255, 0.018) 56px);
}

/* ── RIGHT BG ── */
.right-bg {
    position: absolute;
    inset: 0;
    left: 50%;
    background: linear-gradient(155deg, #f0f7f3 0%, #d4eadd 100%);
    z-index: 1;
}

/* ── LAYOUT ── */
.layout {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 48px;
    gap: 0;
    box-sizing: border-box;
}

/* ── LEFT CONTENT ── */
.left-content {
    flex: 0 0 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
    min-width: 0;
    overflow: hidden;
    gap: 12px;
}

/* ── TRUST BADGE ── */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    color: #6ee89a;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeUp 0.5s ease both;
    backdrop-filter: blur(10px);
}
.trust-badge i {
    font-size: 1rem;
    color: #5DF094;
}

/* ── HERO TITLE ── */
.hero-title {
    font-size: clamp(38px, 4vw, 64px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 8px 0;
    animation: fadeUp 0.6s ease 0.1s both;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero-title span {
    color: #4ade80;
    position: relative;
    display: inline-block;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 6px;
    z-index: -1;
}

/* ── HERO TAGLINE ── */
.hero-tagline {
    font-size: clamp(11px, 0.95vw, 14.5px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    animation: fadeUp 0.7s ease 0.2s both;
}
.hero-tagline strong {
    color: #5DF094;
    font-weight: 700;
}

/* ── FEATURES LIST ── */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    animation: fadeUp 0.8s ease 0.3s both;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}
.feature-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #4ade80;
    color: #0a2e18;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.3);
}

/* ── HERO BUTTONS ── */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp 0.9s ease 0.4s both;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4ade80;
    color: #0a2e18;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.25);
}
.hero-btn-primary:active {
    transform: scale(0.97);
}
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(74, 222, 128, 0.4);
    background: #22c55e;
    color: #0a2e18;
}
.hero-btn-outline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.hero-btn-outline:active {
    transform: scale(0.97);
}
.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ── BRAND ── */
.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeUp .5s ease both;
    flex-shrink: 0;
}

.brand-name {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    /* HIGH CONTRAST: pure white on dark green */
    color: #ffffff;
    letter-spacing: -0.3px;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.brand-sub {
    font-size: 10px;
    font-weight: 700;
    /* HIGH CONTRAST: bright green on dark bg */
    color: #6ee89a;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-top: 3px;
    text-align: center;
}

/* ══════════════════════════════
   MARQUEE STRIP — REMOVED FROM LEFT
   (now lives in right-content top)
   ══════════════════════════════ */

/* ── TAGLINE ── */
.hero-tagline {
    text-align: left;
    animation: fadeUp .55s ease .08s both;
    flex-shrink: 0;
}

.hero-tagline p {
    font-size: 13.5px;
    font-weight: 600;
    /* HIGH CONTRAST: brighter white */
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.hero-tagline p strong {
    /* HIGH CONTRAST: vivid green accent */
    color: #5DF094;
    font-weight: 900;
    text-shadow: 0 0 16px rgba(93, 240, 148, 0.35);
}

/* ── GLASS CARD ── */
.offer-frame {
    width: 100%;
    animation: fadeUp .6s ease .15s both;
    flex-shrink: 1;
    flex-grow: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.offer-glass {
    /* HIGH CONTRAST: slightly more opaque glass */
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

/* Card Header */
.offer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
}

.offer-left-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fire-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b35, #ffad6e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.35);
}

/* HIGH CONTRAST: darker label text */
.offer-label-top {
    font-size: 13px;
    font-weight: 800;
    color: #071a0e;
}

.offer-sublabel {
    font-size: 9px;
    font-weight: 700;
    color: #1f7244;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1px;
}

/* Timer */
.timer-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0a2e18;
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 6px;
    padding: 5px 8px;
    min-width: 40px;
}

/* HIGH CONTRAST: brighter green number */
.timer-num {
    font-size: 16px;
    font-weight: 900;
    color: #5DF094;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-unit {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-top: 2px;
}

.timer-sep {
    font-size: 16px;
    font-weight: 900;
    color: #1f7244;
}

/* ── CAROUSEL ── */
.carousel-outer {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 0;
}

.carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    height: 100%;
    transition: transform .5s cubic-bezier(.65, 0, .35, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #0f3d25;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nav arrows */
.car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    /* HIGH CONTRAST: pure white icon */
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.car-btn:hover {
    background: rgba(74, 222, 128, 0.5);
    border-color: #4ade80;
    transform: translateY(-50%) scale(1.1);
}

.car-btn.prev {
    left: 12px;
}

.car-btn.next {
    right: 12px;
}

/* Dots */
.car-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    /* HIGH CONTRAST: more visible inactive dots */
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .22s, transform .22s;
}

.dot.active {
    background: #5DF094;
    transform: scale(1.4);
}

/* ══════════════════════════════
   RIGHT SECTION
   ══════════════════════════════ */
.right-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0;
}


/* ══════════════════════════════
   CIRCLE WRAP + FLOATING ICONS
   ══════════════════════════════ */
.circle-wrap {
    position: relative;
    width: clamp(340px, 58vh, 560px);
    height: clamp(340px, 58vh, 560px);
    animation: floatAnim 3.5s ease-in-out infinite;
    flex-shrink: 0;
}

.circle-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 114, 68, 0.15) 0%, transparent 70%);
}

.circle-wrap::after {
    content: '';
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 2px dashed rgba(31, 114, 68, 0.28);
    animation: spinSlow 20s linear infinite;
}

/* ── IMAGE / VIDEO CIRCLE ── */
.image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    /* HIGH CONTRAST: white border pops on green bg */
    border: 12px solid #ffffff;
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18), 0 0 0 4px rgba(31, 114, 68, 0.2);
    position: relative;
    z-index: 2;
}

.image-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play/Pause button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(20, 80, 44, 0.88);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, background .2s;
}

.play-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.play-btn:hover {
    background: #1f7244;
}

/* Sound button — centered inside video circle */
.sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(6, 26, 13, 0.72);
    border: 2px solid #5DF094;
    color: #5DF094;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: background .2s, transform .25s, box-shadow .2s, border-color .2s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(93, 240, 148, 0.2);
}

.sound-btn:hover {
    background: #1f7244;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 26px rgba(93, 240, 148, 0.5), 0 0 0 4px rgba(93, 240, 148, 0.25);
}

.sound-btn.muted {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.sound-btn.muted:hover {
    border-color: #5DF094;
    color: #5DF094;
}

/* ══════════════════════════════
   FLOATING COURSE ICON BADGES
   ══════════════════════════════ */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    /* HIGH CONTRAST: white bg, dark text */
    background: #ffffff;
    border: 2px solid #1f7244;
    border-radius: 50px;
    padding: 7px 14px 7px 9px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(31, 114, 68, 0.18);
    z-index: 10;
    white-space: nowrap;
    animation: floatAnim 3.5s ease-in-out infinite;
}

.float-badge:nth-child(1) {
    animation-delay: 0s;
}

.float-badge:nth-child(2) {
    animation-delay: -1.2s;
}

.float-badge:nth-child(3) {
    animation-delay: -2.4s;
}

.float-badge:nth-child(4) {
    animation-delay: -0.6s;
}

.float-badge .badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f7244;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: #ffffff;
}

.float-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.float-badge .badge-label {
    font-size: 11px;
    font-weight: 800;
    /* HIGH CONTRAST: near-black on white */
    color: #071a0e;
    line-height: 1.2;
}

.float-badge .badge-sub {
    font-size: 9px;
    font-weight: 600;
    color: #1f7244;
    line-height: 1.2;
}

/* Badge positions — outside the circle */
.float-badge.pos-tl {
    top: 5%;
    left: -18%;
}

.float-badge.pos-tr {
    top: 12%;
    right: -20%;
}

.float-badge.pos-bl {
    bottom: 12%;
    left: -20%;
}

.float-badge.pos-br {
    bottom: 5%;
    right: -18%;
}

/* Deco dots */
.deco {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.deco.tr {
    top: 40px;
    right: 34px;
}

.deco.bl {
    bottom: 50px;
    left: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

@keyframes floatAnim {

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

    50% {
        transform: translateY(-10px)
    }
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .circle-wrap {
        width: clamp(280px, 46vh, 440px);
        height: clamp(280px, 46vh, 440px);
    }

    .float-badge {
        padding: 5px 10px 5px 7px;
    }

    .float-badge .badge-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .float-badge .badge-label {
        font-size: 10px;
    }

    .float-badge.pos-tl {
        left: -14%;
    }

    .float-badge.pos-tr {
        right: -16%;
    }

    .float-badge.pos-bl {
        left: -16%;
    }

    .float-badge.pos-br {
        right: -14%;
    }
}

@media (max-width: 820px) {
    body {
        overflow: auto;
    }

    .left-bg {
        clip-path: none;
        background: linear-gradient(160deg, #061a0d 0%, #0f3d25 50%, #1a6638 100%);
    }

    .right-bg {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
    }

    .layout {
        flex-direction: column;
        padding: 8px 16px 16px 16px;
        gap: 14px;
        height: auto;
        align-items: center;
    }

    /* ── LEFT ── */
    .left-content {
        flex: none;
        width: 100%;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .brand-row {
        margin-bottom: 0;
    }

    .brand-name {
        font-size: clamp(22px, 5.5vw, 30px);
        text-align: center;
    }

    .brand-sub {
        font-size: 9px;
        margin-top: 1px;
    }

    .hero-tagline {
        margin: 0;
    }

    .hero-tagline p {
        font-size: 13px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Offer card header — stack on mobile */
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 14px;
    }

    .offer-left-label {
        width: 100%;
    }

    .offer-label-top {
        font-size: 12px;
    }

    .offer-sublabel {
        font-size: 8.5px;
    }

    /* Timer — full width, centered */
    .timer-wrap {
        width: 100%;
        justify-content: center;
        gap: 6px;
    }

    .timer-block {
        flex: 1;
        min-width: 0;
        padding: 6px 4px;
        border-radius: 8px;
    }

    .timer-num {
        font-size: 20px;
    }

    .timer-unit {
        font-size: 9px;
    }

    .timer-sep {
        font-size: 20px;
        flex-shrink: 0;
    }

    /* ── GLASS CARD FIX ── */
    /* Give the glass card a solid bg on mobile (no blurred bg behind it) */
    .offer-glass {
        background: rgba(255, 255, 255, 0.12);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        border-radius: 16px;
        min-height: auto;
        flex: none;
        display: flex;
        flex-direction: column;
    }

    .offer-frame {
        flex: none;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* ── CAROUSEL FIX — give explicit height on mobile ── */
    .carousel-outer {
        flex: none;
        height: 280px;
        min-height: 280px;
        overflow: hidden;
        position: relative;
    }

    .carousel-track {
        height: 100%;
        flex-wrap: nowrap !important;
        display: flex !important;
    }

    .carousel-slide {
        height: 100%;
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    /* ── RIGHT ── */
    .right-content {
        flex: none;
        height: auto;
        align-items: center;
        padding: 10px 0 20px 0;
    }

    .circle-wrap {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }

    /* Hide floating badges on mobile */
    .float-badge {
        display: none;
    }

    /* Sound btn */
    .sound-btn {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* ── Mobile-only CTA button ───────────────────────────────── */
.hero-cta-mobile {
    display: none;
}

@media (max-width: 820px) {
    .hero-cta-mobile {
        display: block;
        margin-top: 14px;
        text-align: center;
    }

    .hero-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #5DF094 0%, #2da65e 100%);
        color: #071a0e;
        font-weight: 800;
        font-size: 14px;
        padding: 13px 26px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(93, 240, 148, 0.35);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        letter-spacing: 0.2px;
    }

    .hero-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(93, 240, 148, 0.5);
        color: #071a0e;
        text-decoration: none;
    }
}

@media (max-width: 400px) {
    .layout {
        padding: 16px 12px 20px 12px;
    }

    .timer-num {
        font-size: 18px;
    }

    .circle-wrap {
        width: 240px;
        height: 240px;
    }

    .carousel-outer {
        height: 240px;
        min-height: 240px;
    }

    /* Hide video circle on very small phones — saves space */
    .right-content {
        display: none;
    }
}


/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    padding: 70px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1f7244 0%, #176535 50%, #1f7244 100%);
    border-bottom: 4px solid #0f3d22;
}

.stat-item {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f7244 0%, #176535 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 114, 68, 0.25);
}

.stat-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, #1f7244 0%, #176535 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    font-size: 28px;
}

.stat-item:hover .stat-icon {
    background: white;
    color: #1f7244;
    transform: rotate(360deg);
}

.stat-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 5px;
    transition: all 0.4s ease;
    line-height: 1;
}

.stat-item:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
    transition: all 0.4s ease;
    margin: 0;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.95);
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .top-bar-content {
        justify-content: center;
        gap: 15px;
    }

    .top-bar a {
        font-size: 12px;
    }

    .navbar-brand img {
        height: 45px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero {
        padding: 0;
        min-height: auto;
    }

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

    .image-circle {
        max-width: 400px;
        margin-top: 35px;
    }

    @keyframes float {

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

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

    .stat-item {
        margin-bottom: 20px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar a {
        font-size: 11px;
        justify-content: center;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    .logo-text {
        font-size: 14px;
    }

    .navbar-nav {
        padding: 15px 0;
        background: #f8f9fa;
        border-radius: 10px;
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 20px;
    }

    .hero {
        padding: 0;
        min-height: auto;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 18px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .search-box {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .search-box input {
        padding: 13px 18px;
        font-size: 13px;
    }

    .search-box button {
        padding: 13px 22px;
        font-size: 12px;
    }

    .course-links {
        font-size: 11px;
        gap: 6px;
    }

    .image-circle {
        max-width: 300px;
        border: 10px solid white;
        margin-top: 30px;
    }

    @keyframes float {

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

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

    .image-circle:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .star,
    .plus {
        display: none;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 40px;
        height: 40px;
    }
}

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

    .search-box input {
        font-size: 13px;
        padding: 12px 18px;
    }

    .search-box button {
        font-size: 12px;
        padding: 12px 20px;
    }

    .image-circle {
        max-width: 260px;
        border: 8px solid white;
    }

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

    .stat-label {
        font-size: 13px;
    }

    .play-button {
        width: 55px;
        height: 55px;
    }

    .play-button svg {
        width: 35px;
        height: 35px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero {
        padding: 100px 0;
        min-height: 90vh;
    }

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

    .image-circle {
        max-width: 520px;
    }

    .play-button {
        width: 90px;
        height: 90px;
    }

    .play-button svg {
        width: 70px;
        height: 70px;
    }
}

/* ========================
   SECTION & CONTAINER
   ======================== */
.program-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f7fb 0%, #f8fafb 100%);
}

.program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================
   SECTION HEADING
   ======================== */
.program-heading-wrap {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.7s ease;
}

.program-heading {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.program-heading span {
    color: #000000;
    font-weight: 800;
}

.program-subheading {
    font-size: 16px;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* ========================
   CATEGORY FILTER BUTTONS
   ======================== */
.mb-4 {
    margin-bottom: 40px !important;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: 2px solid #1f7244;
    background: #ffffff;
    color: #1f7244;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.btn:hover {
    border-color: #1f7244;
    color: #1f7244;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 114, 68, 0.15);
}

.btn.active {
    background: #1f7244;
    color: #ffffff;
    border-color: #1f7244;
    box-shadow: 0 8px 20px rgba(31, 114, 68, 0.3);
}

/* ========================
   GRID LAYOUT
   ======================== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    justify-content: center;
}

/* ========================
   CARD
   ======================== */
.program-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: cardSlideIn 0.6s ease backwards;
    height: 100%;
    position: relative;
}

/* Staggered animation for cards */
.program-card:nth-child(1) {
    animation-delay: 0.1s;
}

.program-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-card:nth-child(3) {
    animation-delay: 0.3s;
}

.program-card:nth-child(n+4) {
    animation-delay: 0.4s;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(30, 138, 77, 0.2);
}

.program-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e8a4d, #2fc978);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* ========================
   IMAGE
   ======================== */
.program-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-card:hover .program-img img {
    transform: scale(1.08) rotate(1deg);
}

/* ========================
   CARD BODY & CONTENT
   ======================== */
.program-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mb-2 {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bg-primary {
    background: #4a4a4a;
    color: #1f7244;
}

.bg-secondary {
    background: #ffffff;
    color: #1f7244;
    font-weight: 700;
    border: 2px solid #1f7244;
}

/* ========================
   TITLE
   ======================== */
.program-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 8px 0;
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.3s ease;
}

.program-card:hover .program-title {
    color: #1f7244;
}

/* ========================
   PRICE
   ======================== */
.text-muted {
    color: #1f7244;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.mt-2 {
    margin-top: 12px;
}

/* ========================
   FOOTER & BUTTONS
   ======================== */
.program-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
}

.program-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    padding: 11px 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.program-sub-btn {
    background: linear-gradient(135deg, #1e8a4d, #2fc978);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(30, 138, 77, 0.2);
}

.program-sub-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: 1;
}

.program-sub-btn:hover:before {
    left: 100%;
}

.program-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 138, 77, 0.35);
}

.program-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.program-btn:hover .program-arrow {
    transform: translateX(4px);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

/* ========================
   EMPTY STATE
   ======================== */
.col-12 {
    grid-column: 1 / -1;
}

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

.py-5 {
    padding: 60px 0;
}

.text-muted {
    color: #999;
    font-size: 16px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
    .program-heading {
        font-size: 32px;
    }

    .program-subheading {
        font-size: 15px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-card {
        max-width: 100%;
    }

    .program-img {
        height: 200px;
    }

    .program-body {
        padding: 20px 16px;
    }

    .program-title {
        font-size: 22px;
    }

    .program-footer {
        flex-direction: column;
        gap: 10px;
    }

    .program-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .program-heading {
        font-size: 28px;
    }

    .program-heading-wrap {
        margin-bottom: 32px;
    }

    .btn-group {
        gap: 8px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-img {
        height: 180px;
    }

    .program-body {
        padding: 16px;
    }

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

    .badge {
        padding: 5px 12px;
        font-size: 11px;
    }

    .program-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .program-footer {
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .program-heading {
        font-size: 24px;
    }

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

    .program-body {
        padding: 14px;
    }

    .btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* WHY CHOOSE SECTION */
.why-choose-section {
    padding: 30px 0 40px 0;
    background: #e7f3ec;
}

/* Heading */
.why-choose-section .courses-header {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-section .courses-header h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #2d3748;
}

.why-choose-section .courses-header .highlight {
    color: #1f7244;
}

/* CARD */
.advantage-card {
    background: #e7f3ec;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow:
        10px 10px 25px rgba(0, 0, 0, 0.1),
        -10px -10px 25px #ffffff;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease-out forwards;
}

/* Stagger animation */
.advantage-card:nth-child(1) {
    animation-delay: 0.2s;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.4s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Hover */
.advantage-card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease-in-out;
}

/* ICON */
.advantage-icon {
    font-size: 42px;
    color: #1f7244;
    margin-bottom: 12px;
    animation: floatIcon 2.5s ease-in-out infinite;
}

/* Slide-Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Floating Icon Animation */
@keyframes floatIcon {

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

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

/* TEXT */
.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* --- Tablets (768px and below) --- */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 25px 0 35px 0;
    }

    .why-choose-section .courses-header h2 {
        font-size: 30px;
    }

    .advantage-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .advantage-icon {
        font-size: 36px;
    }

    .advantage-card h3 {
        font-size: 18px;
    }

    .advantage-card p {
        font-size: 14px;
    }
}

/* --- Mobile (576px and below) --- */
@media (max-width: 576px) {
    .why-choose-section .courses-header h2 {
        font-size: 26px;
    }

    .advantage-card {
        padding: 22px;
        margin-bottom: 18px;
        animation-duration: 0.6s;
    }

    .advantage-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .advantage-card h3 {
        font-size: 17px;
    }

    .advantage-card p {
        font-size: 13.5px;
    }
}

/* --- Extra Small Mobile (420px and below) --- */
@media (max-width: 420px) {
    .why-choose-section .courses-header h2 {
        font-size: 22px;
    }

    .advantage-card {
        padding: 20px;
        border-radius: 16px;
    }

    .advantage-icon {
        font-size: 28px;
    }

    .advantage-card h3 {
        font-size: 16px;
    }

    .advantage-card p {
        font-size: 13px;
    }
}

/* Testimonial section */

.testimonials-section {
    padding: 30px 0px;
    background: #f7fdf9;
    position: relative;
    overflow: hidden;
}

/* ---------- HEADER ---------- */
.testimonials-header {
    text-align: center;
    margin-bottom: 35px;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeDown 0.7s ease forwards;
}

.testimonials-title .highlight {
    color: #1f7244;
}

/* ---------- ARROWS ---------- */
.testimonial-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    border: 2px solid #1f7244;
    background: transparent;
    border-radius: 50%;
    color: #1f7244;
    font-size: 24px;
    cursor: pointer;
    transition: 0.35s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.testimonial-arrow:hover {
    background: #1f7244;
    color: #fff;
    transform: translateY(-5px) scale(1.08);
}

/* ---------- GRID (STATIC - NO SCROLL) ---------- */
.testimonials-grid {
    display: flex;
    gap: 25px;
    overflow: hidden;
    /* removed scroll bar */
    padding-bottom: 0;
    /* remove green line spacing */
}

/* Hide scrollbar (Chrome, Safari) */
.testimonials-grid::-webkit-scrollbar {
    display: none !important;
}

/* Hide Firefox scrollbar */
.testimonials-grid {
    scrollbar-width: none !important;
}

/* ---------- CARD ---------- */
.testimonial-card {
    min-width: 48%;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #e6e6e6;
    transition: 0.35s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: cardPop 0.8s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.15s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.30s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.45s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.60s;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ---------- AVATAR ---------- */
.testimonial-avatar img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: fill;
    border: 3px solid #1f7244;
    animation: popIn 0.6s ease forwards;
}

/* ---------- TEXT ---------- */
.testimonial-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    opacity: 0.9;
}

/* ---------- AUTHOR ---------- */
.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f7244;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.testimonial-quote {
    font-size: 42px;
    font-weight: bold;
    color: #1f7244;
    line-height: 0.7;
    opacity: 0.7;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes cardPop {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.93);
    }

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

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

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

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991px) {
    .testimonial-card {
        min-width: 90%;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .testimonial-avatar img {
        margin-bottom: 10px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 6px;
    }

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

/* ================================
   ALUMNI / RECRUITER SECTION
=================================== */
.alumni-section {
    padding: 30px 0px;
    background: #ffffff;
}

.recruiter-section {
    background-color: #f8f9fa;
}

#recruitersContainer {
    padding: 10px 0 20px 0;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#recruitersContainer::-webkit-scrollbar {
    display: none;
}

.recruiter-logo-item {
    flex: 0 0 auto;
    margin: 0;
}

/* ================================
   HEADER
=================================== */
.alumni-header {
    max-width: 1320px;
    margin: 0 auto 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alumni-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: -0.5px;
}

.alumni-title .highlight {
    color: #1f7244;
    font-weight: 500;
}

/* Buttons container */
.alumni-nav {
    display: flex;
    gap: 12px;
}

/* ================================
   BUTTON STYLING
=================================== */
.alumni-arrow {
    width: 46px;
    height: 46px;
    background: #1f7244;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 16px rgba(31, 114, 68, 0.25);
}

.alumni-arrow:hover {
    background: #176535;
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 28px rgba(31, 114, 68, 0.35);
}

/* ================================
   SLIDER WRAPPER
=================================== */
.alumni-logos {
    max-width: 1320px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}

.alumni-logos-inner {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: autoScroll 25s linear infinite;
    padding-bottom: 10px;
}

.alumni-logos-inner:hover {
    animation-play-state: paused;
}

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

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

/* ================================
   COMPANY NAME CARDS
=================================== */
.alumni-logo {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    min-width: 170px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

/* Company name text */
.alumni-logo h3,
.alumni-logo h6 {
    font-size: 20px;
    font-weight: 600;
    color: #1f7244;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Company logo image */
.alumni-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.35s ease;
}

/* Hover animation */
.alumni-logo:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #1f7244;
    box-shadow: 0 18px 40px rgba(31, 114, 68, 0.15);
}

.alumni-logo:hover h3,
.alumni-logo:hover h6 {
    color: #176535;
    transform: scale(1.08);
    transition: 0.3s ease;
}

.alumni-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* ================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {
    .alumni-title {
        font-size: 24px;
    }

    .alumni-logo {
        min-width: 150px;
        min-height: 100px;
    }

    .alumni-logo h3,
    .alumni-logo h6 {
        font-size: 18px;
    }
}

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

    .alumni-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .alumni-logo h3,
    .alumni-logo h6 {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .alumni-logo {
        padding: 18px;
        min-width: 130px;
    }

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

    .alumni-logo h3,
    .alumni-logo h6 {
        font-size: 16px;
        white-space: normal;
    }
}

/* About section css strat from here */

/* ===============================
   SECTION WRAPPER
================================= */
.about-section {
    font-family: "Inter", sans-serif;
    padding: 60px 0;
    background: #f9fafb;
}

/* ===============================
   LEFT FORM BOX
================================= */
.career-box {
    background: rgba(15, 92, 44, 0.96);
    padding: 45px 40px;
    border-radius: 18px;
    color: #fff;
    margin-right: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.career-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 92, 44, 0.25);
}

.career-title {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 30px;
    letter-spacing: .5px;
}

/* FORM INPUT */
.career-box input[type="text"],
.career-box input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

/* WHITE Placeholder */
.career-box input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

/* Input Focus */
.career-box input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

/* CHECKBOX */
.check {
    display: flex;
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.check input {
    margin-right: 8px;
}

/* APPLY BUTTON */
.apply-btn {
    width: 100%;
    background: #ffffff;
    color: #1f7244;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 18px;
    transition: 0.35s ease;
    letter-spacing: .5px;
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.35);
}

.apply-btn:hover {
    background: #e8f5ee;
    transform: translateY(-4px);
}

/* ===============================
   ABOUT IMAGE (LEFT COLUMN)
================================= */
.about-img-col {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 25px 60px rgba(31, 114, 68, 0.18);
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Green decorative accent behind image */
.about-img-wrapper::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 55%;
    height: 55%;
    background: #1f7244;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

/* Floating badge */
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1f7244;
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(31, 114, 68, 0.35);
    text-align: center;
    min-width: 140px;
}

.badge-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.badge-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
    line-height: 1.3;
}

/* ===============================
   RIGHT SIDE TEXT
================================= */
.small-head {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #1f7244;
    margin-bottom: 12px;
}

.main-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

.main-heading span {
    color: #1f7244;
}

.sub-text {
    font-size: 17px;
    margin-bottom: 28px;
    color: #4a5568;
}

/* ===============================
   BULLET LIST
================================= */
.about-list {
    list-style: none;
    margin-bottom: 35px;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #2d3748;
}

.about-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #1f7244;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* ===============================
   BUTTONS
================================= */
.btn-box {
    margin-top: 25px;
}

.btn-box a {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
    border: 2px solid #1f7244;
    transition: 0.3s ease;
    display: inline-block;
}

.abt-btn {
    background: #1f7244;
    color: #fff;
}

.abt-btn:hover {
    background: #145a2e;
    transform: translateY(-3px);
}

.contact-btn {
    color: #1f7244;
    background: #fff;
}

.contact-btn:hover {
    background: #e8f4ec;
    border-color: #145a2e;
    transform: translateY(-3px);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 991px) {
    .about-img-col {
        margin-bottom: 60px;
    }
}

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

    .main-heading {
        font-size: 34px;
    }

    .career-box {
        margin-right: 0;
        margin-bottom: 35px;
        padding: 35px 30px;
    }

    .btn-box a {
        margin-bottom: 10px;
    }

    .about-img {
        height: 300px;
    }

    .about-img-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
        min-width: 120px;
    }

    .badge-num {
        font-size: 20px;
    }

    .about-img-wrapper::before {
        top: -12px;
        left: -12px;
    }
}


/* ── Variables ─────────────────────────────────────────── */
.course-page {
    --hero-bg-start: #ffffff;
    --hero-bg-mid: #f5faf7;
    --hero-bg-end: #edf7f2;
    --accent-gold: #f8d261;
    --accent-cyan: #1f7244;
    --white: #ffffff;
    --text-muted: rgba(74, 85, 104, 0.75);
    --green: #1f7244;
    --green-dark: #165a38;
    --green-xdark: #0f3d26;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMB — slimmer
══════════════════════════════════════════════════════════ */
.course-page .cp-breadcrumb-wrapper {
    background: #f5f6fa;
    border-bottom: 1px solid #e0e4e8;
    padding: 7px 20px;
}

.course-page .cp-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.course-page .cp-breadcrumb-inner a,
.course-page .cp-breadcrumb-inner span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555e6d;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.course-page .cp-breadcrumb-inner a:hover {
    color: var(--green);
}

.course-page .cp-breadcrumb-inner .sep {
    color: #b8c3d0;
    font-size: 0.8rem;
    font-weight: 400;
}

.course-page .cp-breadcrumb-inner .bc-active {
    color: #1a202c;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   HERO — Split: white left | green right
══════════════════════════════════════════════════════════ */
.course-page .cp-hero {
    background: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 97px);
    display: flex;
    align-items: stretch;
}

/* White base */
.course-page .cp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 0;
}

/* Green right panel */
.course-page .cp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(340px + 56px);
    height: 100%;
    background: linear-gradient(160deg, #1f7244 0%, #165a38 60%, #0f3d26 100%);
    z-index: 0;
    pointer-events: none;
}

/* Dot grid texture */
.course-page .cp-hero-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(31, 114, 68, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
    animation: cpGridPulse 6s ease-in-out infinite;
}

@keyframes cpGridPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ── Animated floating orbs ──────────────────────────── */
.course-page .cp-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(45px);
}

.course-page .cp-hero-orb-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(31, 114, 68, 0.12) 0%, rgba(31, 114, 68, 0.04) 50%, transparent 75%);
    top: -80px;
    left: 5%;
    animation: cpOrb1 12s ease-in-out infinite;
}

.course-page .cp-hero-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.35) 0%, rgba(255, 193, 7, 0.1) 50%, transparent 75%);
    bottom: -60px;
    right: 5%;
    left: auto;
    animation: cpOrb2 16s ease-in-out infinite;
}

.course-page .cp-hero-orb-3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(31, 114, 68, 0.09) 0%, rgba(31, 114, 68, 0.03) 50%, transparent 75%);
    top: 25%;
    left: 30%;
    animation: cpOrb3 20s ease-in-out infinite;
}

.course-page .cp-hero-orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 75%);
    top: 55%;
    right: 8%;
    left: auto;
    animation: cpOrb4 14s ease-in-out infinite;
}

@keyframes cpOrb1 {

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

    33% {
        transform: translate(50px, 55px) scale(1.18);
        opacity: 0.9;
    }

    66% {
        transform: translate(-20px, 30px) scale(0.92);
        opacity: 0.65;
    }
}

@keyframes cpOrb2 {

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

    33% {
        transform: translate(-40px, -55px) scale(1.14);
        opacity: 0.85;
    }

    66% {
        transform: translate(25px, 20px) scale(0.95);
        opacity: 0.6;
    }
}

@keyframes cpOrb3 {

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

    50% {
        transform: translate(30px, 50px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes cpOrb4 {

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

    50% {
        transform: translate(20px, -40px) scale(1.12);
        opacity: 0.72;
    }
}

/* ── Shimmer scan line ───────────────────────────────── */
.course-page .cp-hero-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(31, 114, 68, 0.04) 45%,
            rgba(31, 114, 68, 0.06) 50%,
            rgba(31, 114, 68, 0.04) 55%,
            transparent 80%);
    z-index: 0;
    pointer-events: none;
    animation: cpHeroScan 7s ease-in-out infinite;
}

@keyframes cpHeroScan {
    0% {
        left: -50%;
    }

    100% {
        left: 130%;
    }
}

/* ── Pulsing ring accent ─────────────────────────────── */
.course-page .cp-hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    border: 1.5px solid rgba(31, 114, 68, 0.13);
    width: 420px;
    height: 420px;
    top: 50%;
    left: 22%;
    transform: translate(-50%, -50%);
    animation: cpRingPulse 8s ease-in-out infinite;
}

.course-page .cp-hero-ring::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(31, 114, 68, 0.07);
    animation: cpRingPulse 8s ease-in-out infinite reverse;
}

@keyframes cpRingPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }
}

/* ── Inner grid ──────────────────────────────────────── */
.course-page .cp-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
    padding: 0 28px;
}

/* ── LEFT column — white panel, dark text ────────────── */
.course-page .cp-hero-left {
    color: #1a202c;
    padding: 26px 36px 26px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(31, 114, 68, 0.12);
    gap: 0;
    overflow: hidden;
}

/* Badges */
.course-page .cp-hero-badges {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.course-page .cp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.course-page .cp-hero-badge.badge-gov {
    background: rgba(31, 114, 68, 0.08);
    border: 1px solid rgba(31, 114, 68, 0.22);
    color: var(--green);
}

.course-page .cp-hero-badge.badge-rating {
    display: none;
}

.course-page .cp-hero-badge.badge-discount {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.28);
    color: #c0392b;
}

.course-page .cp-hero-badge.badge-back {
    background: rgba(31, 114, 68, 0.06);
    border: 1px solid rgba(31, 114, 68, 0.18);
    color: var(--green);
    text-decoration: none;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s;
}

.course-page .cp-hero-badge.badge-back:hover {
    background: rgba(31, 114, 68, 0.12);
    color: var(--green-dark);
}

.course-page .cp-hero-badge .star {
    color: var(--accent-gold);
}

/* Title */
.course-page .cp-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    color: #1a202c;
    letter-spacing: -0.6px;
    position: relative;
    padding: 28px 0 0;
}

.course-page .cp-hero-title::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 8px;
}

.course-page .cp-hero-title .highlight {
    color: var(--green);
    display: inline;
}

/* USP list */
.course-page .cp-hero-usps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    overflow: hidden;
    flex: 1;
    justify-content: flex-start;
    padding-top: 28px;
}

.course-page .cp-hero-usps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.45;
}

.course-page .usp-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: rgba(31, 114, 68, 0.1);
    border: 1px solid rgba(31, 114, 68, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    font-size: 0.65rem;
    margin-top: 1px;
}

/* Batch card */
.course-page .cp-batch-card {
    background: rgba(31, 114, 68, 0.04);
    border: 1px solid rgba(31, 114, 68, 0.14);
    border-radius: 6px;
    padding: 14px 18px 16px;
    margin-top: auto;
    margin-bottom: 16px;
}

.course-page .cp-batch-fee-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.course-page .cp-batch-fee-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.course-page .cp-batch-btn-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.course-page .cp-batch-card-title {
    font-size: 0.76rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.course-page .cp-batch-card-title strong {
    color: var(--green);
    font-weight: 800;
}

.course-page .cp-batch-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #6b7684;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.course-page .cp-batch-value {
    font-size: 1rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.course-page .cp-batch-fee-original {
    text-decoration: line-through;
    font-size: 0.78rem;
    color: #9ca3af;
    font-weight: 400;
}

.course-page .cp-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: default;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-page .cp-pill.pill-yellow {
    background: var(--accent-gold);
    color: #1a1a1a;
}

.course-page .cp-pill.pill-outline {
    background: transparent;
    border: 1.5px solid rgba(31, 114, 68, 0.4);
    color: var(--green);
}

.course-page .cp-pill-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

/* Apply button — green on white panel */
.course-page .cp-hero-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--green);
    color: #ffffff;
    border: 2px solid var(--green);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(31, 114, 68, 0.25);
}

.course-page .cp-hero-apply-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(31, 114, 68, 0.35);
}

/* Outline action button */
.course-page .cp-hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
    border: 1.5px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.course-page .cp-hero-action-outline {
    background: transparent;
    border-color: rgba(31, 114, 68, 0.35);
    color: var(--green);
}

.course-page .cp-hero-action-outline:hover {
    background: rgba(31, 114, 68, 0.06);
    border-color: var(--green);
    color: var(--green-dark);
}

/* ── RIGHT column — sits on green panel ──────────────── */
.course-page .cp-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 0 24px 28px;
    position: relative;
    z-index: 1;
}

.course-page .cp-interest-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.18);
    position: relative;
    border: none;
}

/* Top accent bar */
.course-page .cp-interest-card-top {
    background: var(--green);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--accent-gold);
}

.course-page .cp-interest-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.course-page .cp-interest-card-eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

.course-page .cp-interest-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

/* Snapshot grid */
.course-page .cp-interest-snapshot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #f0f2f5;
}

.course-page .cp-interest-snap-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    font-size: 0.67rem;
    font-weight: 600;
    color: #4a5568;
    border-right: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}

.course-page .cp-interest-snap-item:nth-child(2n) {
    border-right: none;
}

.course-page .cp-interest-snap-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.course-page .cp-interest-snap-item i {
    color: var(--green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Price block */
.course-page .cp-interest-price-block {
    padding: 8px 14px;
    border-bottom: 1px solid #f0f2f5;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

.course-page .cp-interest-price-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9ca3af;
    margin-bottom: 1px;
}

.course-page .cp-interest-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.course-page .cp-interest-price-main {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green);
}

.course-page .cp-interest-price-old {
    font-size: 0.78rem;
    text-decoration: line-through;
    color: #b0b8c1;
    font-weight: 400;
}

.course-page .cp-interest-price-save {
    background: #dc3545;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-page .cp-interest-price-saving {
    font-size: 0.65rem;
    color: var(--green);
    font-weight: 700;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Quick contact form */
.course-page .cp-interest-form {
    padding: 10px 14px 6px;
}

.course-page .cp-interest-field {
    position: relative;
    margin-bottom: 7px;
}

.course-page .cp-interest-field i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 0.78rem;
    pointer-events: none;
}

.course-page .cp-interest-input {
    width: 100%;
    background: #f5f6fa;
    border: 1.5px solid #e5e7eb;
    border-radius: 4px;
    padding: 7px 10px 7px 30px;
    font-size: 0.8rem;
    font-family: inherit;
    color: #1a202c;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.course-page .cp-interest-input:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 114, 68, 0.1);
}

.course-page .cp-interest-input::placeholder {
    color: #b0b8c1;
    font-size: 0.78rem;
}

.course-page .cp-interest-submit {
    width: 100%;
    background: var(--green);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 9px;
    font-size: 0.82rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.22s ease;
    margin-top: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.course-page .cp-interest-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.3);
}

.course-page .cp-interest-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.course-page .cp-interest-footer {
    padding: 6px 14px 10px;
    font-size: 0.63rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.course-page .cp-interest-footer i {
    color: var(--green);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   TABS SECTION
══════════════════════════════════════════════════════════ */
.course-page .tabs-section {
    background: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid #e0e4e8;
}

.course-page .tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.course-page .tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #e0e4e8;
    margin-bottom: 50px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.course-page .tab-button {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a5568;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.course-page .tab-button i {
    font-size: 1rem;
}

.course-page .tab-button:hover {
    color: var(--green);
}

.course-page .tab-button.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.course-page .tab-content {
    display: none;
}

.course-page .tab-content.active {
    display: block;
    animation: cpFadeIn 0.2s ease;
}

@keyframes cpFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.course-page .tab-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-page .tab-content h3 i {
    font-size: 1.3rem;
    color: var(--green);
}

.course-page .tab-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

/* ── Info section ──────────────────────────────────────── */
.course-page .info-section {
    background: #f9fafb;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--green);
}

.course-page .info-section h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-page .info-section h3 i {
    font-size: 1.3rem;
    color: var(--green);
}

.course-page .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-page .info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.course-page .info-list li:last-child {
    border-bottom: none;
}

.course-page .info-list li::before {
    content: '→';
    color: var(--green);
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.course-page .info-list li:hover {
    color: #1a202c;
}

/* ══════════════════════════════════════════════════════════
   MODULES & LECTURES
══════════════════════════════════════════════════════════ */
.course-page .module-item {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.course-page .module-item:hover {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(31, 114, 68, 0.08);
    transform: translateY(-2px);
}

.course-page .module-item.active {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(31, 114, 68, 0.12);
}

.course-page .module-header {
    background: #ffffff;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s ease;
    border-bottom: 1px solid transparent;
}

.course-page .module-item.active .module-header {
    background: #f0fdf4;
    border-bottom-color: rgba(31, 114, 68, 0.06);
}

.course-page .module-header:hover {
    background: #f9fafb;
}

.course-page .module-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.course-page .module-number {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(31, 114, 68, 0.2);
}

.course-page .module-header-content h4 {
    color: #1a202c;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.course-page .module-toggle {
    color: var(--green);
    background: rgba(31, 114, 68, 0.06);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.course-page .module-item.active .module-toggle {
    transform: rotate(180deg);
    background: var(--green);
    color: #ffffff;
}

.course-page .module-body {
    display: none;
    padding: 10px 24px 24px;
    background: #ffffff;
}

.course-page .module-body.show {
    display: block;
    animation: cpSlideOpen 0.3s ease-out;
}

@keyframes cpSlideOpen {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.course-page .lecture-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-page .lecture-item {
    background: #f8fafc;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    font-size: 0.92rem;
    border: 1px solid transparent;
}

.course-page .lecture-item:hover {
    background: #ffffff;
    border-color: rgba(31, 114, 68, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateX(4px);
}

.course-page .lecture-number {
    color: var(--green);
    font-weight: 800;
    font-size: 0.8rem;
    opacity: 0.5;
    width: 20px;
    flex-shrink: 0;
}

.course-page .lecture-name {
    color: #4a5568;
    font-weight: 500;
    flex: 1;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.course-page .faq-section {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e4e8;
}

.course-page .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 0;
}

.course-page .faq-item:last-child {
    border-bottom: none;
}

.course-page .faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color 0.2s;
    font-family: inherit;
}

.course-page .faq-question:hover {
    color: var(--green-xdark);
}

.course-page .faq-toggle {
    color: var(--green);
    font-size: 1rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.course-page .faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.course-page .faq-answer {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
}

.course-page .faq-item.active .faq-answer {
    display: block;
}

/* ══════════════════════════════════════════════════════════
   RELATED COURSES
══════════════════════════════════════════════════════════ */
.course-page .related-section {
    background: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid #e0e4e8;
}

.course-page .related-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #1a202c;
    letter-spacing: -0.3px;
}

.course-page .cp-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.course-page .cp-card-col {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 0;
}

.course-page .cp-card {
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.course-page .cp-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.course-page .cp-card-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    background: #f0f2f5;
    display: block;
}

.course-page .cp-card-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-page .cp-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a202c;
    line-height: 1.4;
    margin-top: 0;
}

.course-page .cp-related-price {
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.course-page .rp-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.85em;
}

.course-page .rp-discounted {
    color: #198754;
    font-size: 0.95em;
}

.course-page .rp-normal {
    color: #1a202c;
    font-size: 0.95em;
}

.course-page .rp-badge {
    background: #dc3545;
    color: #fff;
    font-size: 0.72em;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.course-page .cp-btn-card {
    color: var(--green);
    border: 2px solid var(--green);
    background: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: auto;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s;
}

.course-page .cp-btn-card:hover {
    background: #f0f8f5;
    border-color: var(--green-dark);
    color: var(--green-dark);
}

/* ══════════════════════════════════════════════════════════
   COURSE INFO SECTION
══════════════════════════════════════════════════════════ */
.course-page .course-info-section {
    padding: 50px 20px;
    background: #f8fafc;
    border-top: 1px solid #e0e4e8;
}

.course-page .info-card {
    background: #ffffff;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid #e0e4e8;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.course-page .info-card:hover {
    border-color: var(--green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.course-page .info-card .cp-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 18px;
}

.course-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.course-page .info-item {
    padding: 15px;
    background: #f9fafb;
    border-left: 3px solid var(--green);
    border-radius: 6px;
    transition: box-shadow 0.2s;
}

.course-page .info-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.course-page .info-item .label {
    font-weight: 700;
    color: var(--green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.course-page .info-item .value {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.course-page .highlight-item {
    background: var(--green);
    border-left-color: #ff6b6b;
}

.course-page .highlight-item .label {
    color: rgba(255, 255, 255, 0.9);
}

.course-page .highlight-item .value {
    color: #ffffff;
}

.course-page .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-page .feature-list li {
    padding: 10px 0 10px 26px;
    position: relative;
    color: #4a5568;
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f2f5;
}

.course-page .feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.course-page .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

/* Shared container */
.course-page .cp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   ENROLLMENT MODAL
══════════════════════════════════════════════════════════ */
.course-page .enroll-modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #ffffff;
}

.course-page .enroll-modal-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #ffffff;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.course-page .enroll-header-content {
    flex: 1;
}

.course-page .enroll-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-page .enroll-modal-title i {
    font-size: 1.5rem;
}

.course-page .enroll-modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.course-page .enroll-modal-body {
    padding: 32px;
    max-height: 80vh;
    overflow-y: auto;
}

.course-page .enroll-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.course-page .form-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.course-page .form-section-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e4e8;
}

.course-page .section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.course-page .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.course-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-page .form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-page .label-text {
    color: #1a202c;
}

.course-page .required {
    color: #e74c3c;
    font-weight: 900;
}

.course-page .optional {
    font-weight: 400;
    font-size: 0.75rem;
    color: #6b7684;
    font-style: italic;
}

.course-page .input-wrapper,
.course-page .select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e4e8;
    border-radius: 8px;
    background: #fafbfc;
    transition: all 0.2s;
}

.course-page .input-wrapper:focus-within,
.course-page .select-wrapper:focus-within {
    border-color: var(--green);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(31, 114, 68, 0.1);
}

.course-page .input-wrapper i,
.course-page .select-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--green);
    font-size: 1rem;
    pointer-events: none;
}

.course-page .form-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
    color: #1a202c;
    font-family: inherit;
    outline: none;
}

.course-page .form-input::placeholder {
    color: #b8c3d0;
}

.course-page .textarea-input {
    resize: vertical;
    min-height: 80px;
}

.course-page .form-select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
    color: #1a202c;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.course-page .select-wrapper::after {
    content: '';
    position: absolute;
    right: 12px;
    pointer-events: none;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
    margin-top: -3px;
}

.course-page .course-info-card {
    background: linear-gradient(135deg, #f0f8f5 0%, #f5faf9 100%);
    border: 1.5px solid #d4ede7;
    border-radius: 12px;
    padding: 18px;
    margin: 4px 0;
}

.course-page .course-info-header {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.course-page .course-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.course-page .course-info-card .info-item {
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--green);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.course-page .info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-page .info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

.course-page .info-value.price {
    font-size: 0.95rem;
    color: var(--green);
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

/* Enroll messages */
.course-page .enroll-message {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: cpSlideDown 0.3s ease;
}

.course-page .enroll-message.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.course-page .enroll-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.course-page .enroll-message.info {
    background: #cce5ff;
    color: #004085;
    border-left: 4px solid #0056b3;
}

@keyframes cpSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.course-page .btn-enroll-submit {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.3);
    width: 100%;
    font-family: inherit;
}

.course-page .btn-enroll-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0f3d28 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 114, 68, 0.4);
}

.course-page .btn-enroll-submit:active:not(:disabled) {
    transform: translateY(0);
}

.course-page .btn-enroll-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.course-page .btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.course-page .btn-icon {
    font-weight: 900;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.course-page .btn-enroll-submit:hover:not(:disabled) .btn-icon {
    transform: translateX(4px);
}

.course-page .form-disclaimer {
    font-size: 0.8rem;
    color: #6b7684;
    text-align: center;
    margin: 14px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.course-page .form-disclaimer i {
    color: var(--green);
}

/* Modal scrollbar */
.course-page .enroll-modal-body::-webkit-scrollbar {
    width: 6px;
}

.course-page .enroll-modal-body::-webkit-scrollbar-track {
    background: #f0f2f5;
    border-radius: 10px;
}

.course-page .enroll-modal-body::-webkit-scrollbar-thumb {
    background: #b8c3d0;
    border-radius: 10px;
}

.course-page .enroll-modal-body::-webkit-scrollbar-thumb:hover {
    background: #6b7684;
}

/* Discount price helpers */
.course-page .enroll-price-original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9em;
    margin-right: 4px;
}

.course-page .enroll-price-discount {
    color: #198754;
    font-weight: 700;
}

.course-page .enroll-price-badge {
    background: #dc3545;
    color: #fff;
    font-size: 0.75em;
    padding: 1px 6px;
    border-radius: 12px;
    margin-left: 4px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .course-page .cp-hero-title {
        font-size: 1.75rem;
    }

    .course-page .cp-hero-inner {
        grid-template-columns: 1fr 320px;
    }

    .course-page .cp-hero::after {
        width: calc(320px + 56px);
    }
}

@media (max-width: 900px) {
    .course-page .cp-hero {
        min-height: auto;
    }

    .course-page .cp-hero-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* Green panel covers only the card area at bottom */
    .course-page .cp-hero::after {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 50%;
    }

    .course-page .cp-hero-left {
        padding: 28px 0 40px 0;
        border-right: none;
        border-bottom: 1px solid rgba(31, 114, 68, 0.12);
    }

    .course-page .cp-hero-right {
        padding: 20px 0 28px 0;
        max-width: 520px;
        margin: 0 auto;
    }

    .course-page .cp-interest-card {
        position: static;
    }

    .course-page .cp-hero-title {
        font-size: 1.65rem;
        padding-top: 20px;
    }

    .course-page .cp-card-col {
        flex: 0 0 calc(50% - 13px);
    }

    .course-page .cp-hero-badges {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .course-page .cp-hero-badge.badge-back {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .course-page .cp-hero-title {
        font-size: 1.55rem;
        line-height: 1.2;
        padding-top: 15px;
    }

    .course-page .tabs-section {
        padding: 30px 0 40px;
    }

    .course-page .tabs-container {
        padding: 0;
    }

    /* Horizontal scroll for tabs navigation */
    .course-page .tabs-nav {
        gap: 0;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        flex-wrap: nowrap !important;
        /* Critical fix for wrapping */
        padding: 0 16px 10px;
        border-bottom: 1px solid #eee;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar IE/Edge */
        -webkit-overflow-scrolling: touch;
    }

    .course-page .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar Chrome/Safari */

    .course-page .tab-button {
        font-size: 0.85rem;
        padding: 12px 18px;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        flex-shrink: 0;
    }

    .course-page .tab-button.active::after {
        bottom: 0;
    }

    .course-page .tab-content {
        padding: 0 16px;
    }

    .course-page .info-section {
        padding: 22px 18px;
    }

    .course-page .info-card {
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .course-page .cp-card-col {
        flex: 0 0 100%;
    }

    .course-page .cp-card {
        min-height: 300px;
    }

    .course-page .cp-card-img {
        height: 150px;
    }

    .course-page .course-info-section {
        padding: 40px 16px;
    }

    .course-page .enroll-modal-header {
        padding: 24px 16px;
    }

    .course-page .enroll-modal-body {
        padding: 24px 16px;
    }

    .course-page .enroll-modal-title {
        font-size: 1.2rem;
    }

    .course-page .form-row {
        grid-template-columns: 1fr;
    }

    .course-page .course-info-grid {
        grid-template-columns: 1fr;
    }

    /* Stacking Hero Buttons */
    .course-page .cp-batch-fee-btn-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .course-page .cp-batch-btn-row {
        flex-direction: column;
        gap: 12px;
    }

    .course-page .cp-hero-apply-btn,
    .course-page .cp-hero-action-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Ensure Brochure button is visible on mobile if it overlaps or for better prominence */
    .course-page .cp-hero-action-outline {
        background: #ffffff;
        border-color: var(--green);
        color: var(--green);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .course-page .cp-hero-action-outline:hover {
        background: #f0fdf4;
        color: var(--green-dark);
    }

    .course-page .cp-batch-card {
        padding: 22px 20px;
        background: #ffffff;
        box-shadow: 0 8px 32px rgba(31, 114, 68, 0.06);
        border-color: rgba(31, 114, 68, 0.1);
    }
}

@media (max-width: 600px) {
    .course-page .cp-hero-inner {
        padding: 0 14px;
    }

    .course-page .cp-hero-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 479px) {
    .course-page .cp-hero-title {
        font-size: 1.25rem;
    }

    .course-page .cp-batch-card {
        padding: 16px 14px;
    }

    .course-page .cp-pill {
        font-size: 0.62rem;
    }

    .course-page .cp-batch-value {
        font-size: 1.35rem;
    }

    .course-page .cp-interest-card-top {
        padding: 12px;
    }

    .course-page .cp-interest-snapshot {
        grid-template-columns: 1fr;
    }

    .course-page .cp-interest-snap-item {
        border-right: none;
    }

    .course-page .cp-interest-snap-item:nth-child(n) {
        border-bottom: 1px solid #f0f2f5;
    }

    .course-page .cp-interest-snap-item:last-child {
        border-bottom: none;
    }

    .course-page .enroll-modal-body {
        padding: 20px 12px;
        max-height: calc(100vh - 100px);
    }

    .course-page .enroll-modal-title {
        font-size: 1.1rem;
    }

    .course-page .enroll-modal-subtitle {
        font-size: 0.8rem;
    }

    .course-page .form-section-title {
        font-size: 0.85rem;
    }

    .course-page .section-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .course-page .form-input,
    .course-page .form-select {
        padding: 10px 10px 10px 36px;
        font-size: 16px;
    }

    .course-page .input-wrapper i,
    .course-page .select-wrapper i {
        left: 10px;
        font-size: 0.9rem;
    }

    .course-page .info-grid {
        grid-template-columns: 1fr;
    }
}


/* =================================================
   COURSES SECTION index.php course css 
================================================= */

/* ── Keyframe Animations ─────────────────────── */

@keyframes dotFade {

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

    50% {
        opacity: 0.7;
        transform: scale(1.35);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

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

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.40);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
    }
}

@keyframes shimmerMove {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(300%) skewX(-15deg);
    }
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.06);
    }

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

/* -------------------------------------------------
   SECTION — Solid #1f7244 + Animated Cross/Plus Dots
------------------------------------------------- */
.courses-section {
    padding: 60px 0;
    background-color: #1f7244;
    position: relative;
    overflow: hidden;
}

/* Animated cross/plus dot grid using SVG data URI */
.courses-section .courses-bg-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Each dot cell in the grid */
.courses-bg-dots span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    opacity: 0.25;
}

/* Plus/cross shape via clip-path */
.courses-bg-dots span::before,
.courses-bg-dots span::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 1px;
}

.courses-bg-dots span::before {
    width: 8px;
    height: 2px;
    top: 3px;
    left: 0;
}

.courses-bg-dots span::after {
    width: 2px;
    height: 8px;
    top: 0;
    left: 3px;
}

/* Decorative glow orbs */
.courses-section::before,
.courses-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.courses-section::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
    top: -160px;
    left: -120px;
    animation: floatBubble 10s ease-in-out infinite;
}

.courses-section::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    bottom: -100px;
    right: -90px;
    animation: floatBubble 14s ease-in-out infinite reverse;
}

/* -------------------------------------------------
   DECORATIVE RINGS
------------------------------------------------- */
.courses-ring-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.courses-ring-accent--1 {
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    top: -60px;
    right: 80px;
    animation: rotateSlow 20s linear infinite;
}

.courses-ring-accent--2 {
    width: 130px;
    height: 130px;
    border: 2px dashed rgba(255, 255, 255, 0.10);
    bottom: 30px;
    left: 60px;
    animation: rotateSlow 14s linear infinite reverse;
}

/* -------------------------------------------------
   CONTAINER
------------------------------------------------- */
.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------
   HEADER — Black title, White span
------------------------------------------------- */
.courses-header {
    text-align: center;
    margin-bottom: 36px;
    animation: fadeSlideDown 0.75s ease both;
}

.courses-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.courses-title span {
    color: #ffffff;
}

.courses-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}

/* -------------------------------------------------
   GRID TRACK — 5 cards per row, no scroll
------------------------------------------------- */
.courses-slider-track {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* -------------------------------------------------
   COURSE CARD — 5 per row on desktop
------------------------------------------------- */
.course-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 calc(20% - 14.4px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.20);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease;
    animation: cardReveal 0.55s ease both;
    position: relative;
}

/* Shimmer sweep on hover */
.course-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.20) 50%,
            transparent 60%);
    transform: translateX(-100%) skewX(-15deg);
    pointer-events: none;
    z-index: 2;
}

.course-card:hover::after {
    animation: shimmerMove 0.65s ease forwards;
}

/* Staggered entrance */
.course-card:nth-child(1) {
    animation-delay: 0.08s;
}

.course-card:nth-child(2) {
    animation-delay: 0.16s;
}

.course-card:nth-child(3) {
    animation-delay: 0.24s;
}

.course-card:nth-child(4) {
    animation-delay: 0.32s;
}

.course-card:nth-child(5) {
    animation-delay: 0.40s;
}

.course-card:nth-child(6) {
    animation-delay: 0.48s;
}

.course-card:nth-child(7) {
    animation-delay: 0.56s;
}

.course-card:nth-child(8) {
    animation-delay: 0.64s;
}

.course-card:nth-child(9) {
    animation-delay: 0.72s;
}

.course-card:nth-child(10) {
    animation-delay: 0.80s;
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

/* Thumbnail */
.course-card__thumb {
    width: 100%;
    height: 165px;
    overflow: hidden;
    background: linear-gradient(135deg, #c8e6d4, #a8d5bc);
    position: relative;
}

.course-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease;
}

.course-card:hover .course-card__thumb img {
    transform: scale(1.09);
}

/* Discount Badge */
.course-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    letter-spacing: 0.4px;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.40);
}

/* Body */
.course-card__body {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 6px 0 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.course-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.course-card__duration {
    background-color: #ff6b35;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.course-card__price {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
    color: #1f7244;
}

.course-card__price--original {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

.course-card__price--discount {
    font-size: 15px;
    font-weight: 700;
    color: #1f7244;
}

/* Actions */
.course-card__actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f4f2;
}

.course-card__btn {
    flex: 1;
    padding: 7px 10px;
    background-color: #1f7244;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: background 0.28s ease, transform 0.22s ease, box-shadow 0.28s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.course-card__btn:hover {
    background-color: #156038;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(31, 114, 68, 0.35);
}

.course-card__btn--outline {
    background-color: transparent;
    color: #1f7244;
    border: 2px solid #1f7244;
}

.course-card__btn--outline:hover {
    background-color: #1f7244;
    color: #fff;
}

/* -------------------------------------------------
   SLIDER BUTTONS & DOTS — hidden (no scroll needed)
------------------------------------------------- */
.slider-btn,
.slider-dots,
.slider-progress {
    display: none;
}

/* -------------------------------------------------
   EMPTY STATE
------------------------------------------------- */
.courses-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.65);
}

/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */
@media (max-width: 1200px) {
    .course-card {
        flex: 0 0 calc(25% - 13.5px);
        /* 4 cards */
    }
}

@media (max-width: 1024px) {
    .course-card {
        flex: 0 0 calc(33.333% - 12px);
        /* 3 cards */
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 44px 0;
    }

    .courses-title {
        font-size: 26px;
    }

    .course-card {
        flex: 0 0 calc(50% - 9px);
    }

    /* 2 cards */
    .courses-ring-accent--1 {
        width: 140px;
        height: 140px;
        right: 20px;
    }

    .courses-ring-accent--2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .course-card {
        flex: 0 0 100%;
    }

    /* 1 card */
}

/* ===== Join the Ardent Computech Pvt. Ltd. SECTION ===== */
.why-choose {
    position: relative;
    padding: 10px 5%;
    margin: 0;
    background: white;
    overflow: hidden;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.why-title {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.why-title h2 {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 800;
    display: inline-block;
}

.why-title h2 .black-text {
    color: #1a1a1a;
}

.why-title h2 .green-text {
    color: #1f7244;
}

.why-title p {
    font-size: clamp(14px, 2vw, 20px);
    color: #333;
    margin-top: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Desktop grid (3 columns) ── */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 50px 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ── Center image ── */
.center-img {
    position: relative;
    opacity: 0;
    animation: zoomIn 1s ease-out 0.6s forwards;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.center-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px dashed #1f7244;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.center-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.center-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(31, 114, 68, 0.4);
}

/* ── Boxes ── */
.why-box {
    text-align: center;
    max-width: 280px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.why-box:nth-child(1) {
    animation: slideInUp 0.8s ease-out 0.8s forwards;
}

.why-box:nth-child(2) {
    animation: slideInUp 0.8s ease-out 1.0s forwards;
}

.why-box:nth-child(4) {
    animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.why-box:nth-child(5) {
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

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

.why-box:hover {
    transform: translateY(-10px);
}

.why-box:hover .icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-box:hover .icon::before {
    width: 100px;
    height: 100px;
}

.icon i {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

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

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

.why-box h3 {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 800;
    background: linear-gradient(90deg, #1a1a1a 0%, #1f7244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
}

.why-box:hover h3 {
    background: linear-gradient(90deg, #1f7244 0%, #2a9059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-box p {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.why-box:hover p {
    color: #333;
}

/* ── Decorative bubbles ── */
.why-choose::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    animation: floatBubble 15s ease-in-out infinite;
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    animation: floatBubble 18s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatBubble {

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

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

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Large tablets / small laptops (≤ 1024px) ── */
@media (max-width: 1024px) {
    .why-wrapper {
        grid-template-columns: 1fr 260px 1fr;
        gap: 35px 25px;
    }

    .center-img img {
        width: 240px;
        height: 240px;
    }
}

/* ── Tablets (≤ 768px) — switch to single column, hide center image or stack it ── */
@media (max-width: 768px) {
    .why-choose {
        padding: 30px 4%;
        min-height: 40vh;
    }

    .why-title {
        margin-bottom: 28px;
    }

    /* Reflow to 2-column card grid + image centred on top */
    .why-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 24px 16px;
    }

    /* Image spans full width, appears first */
    .center-img {
        grid-column: 1 / -1;
        grid-row: auto;
        order: -1;
        margin-bottom: 8px;
    }

    .center-img img {
        width: 180px;
        height: 180px;
    }

    .why-box {
        max-width: 100%;
    }

    .icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
}

/* ── Large phones (≤ 576px) ── */
@media (max-width: 576px) {
    .why-choose {
        padding: 24px 5%;
        min-height: 40vh;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .center-img {
        grid-column: 1;
    }

    .center-img img {
        width: 150px;
        height: 150px;
    }

    .center-img::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .why-box {
        max-width: 320px;
        margin: 0 auto;
    }

    .icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .why-box h3 {
        margin: 10px 0 6px;
    }
}

/* ── Small phones (≤ 375px) ── */
@media (max-width: 375px) {
    .why-choose {
        padding: 20px 4%;
    }

    .center-img img {
        width: 130px;
        height: 130px;
    }

    .icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}


/* map location css code */

.locations-section {
    min-height: 20vh;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 14px;
}

.section-header h2 .highlight {
    color: #1f7244;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(31, 114, 68, 1);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    width: 100%;
}

.location-card {
    background: #ffffff;
    border: 1px solid rgba(31, 114, 68, 0.8);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f9f9f9;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.2) brightness(0.95);
}

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

    .container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .locations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
}



/* =================================
   LEARNING HUB — Whitesmoke BG
================================= */
.learning-hub {
    padding: 50px 0;
    background: whitesmoke;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Animated blob 1 */
.learning-hub::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(31, 114, 68, 0.08);
    filter: blur(80px);
    top: -120px;
    left: -100px;
    z-index: 0;
    animation: blobFloat1 10s ease-in-out infinite alternate;
}

/* Animated blob 2 */
.learning-hub::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(31, 114, 68, 0.06);
    filter: blur(70px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
    animation: blobFloat2 13s ease-in-out infinite alternate;
}

/* Dot grid overlay */
.hub-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(31, 114, 68, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dotsDrift 25s linear infinite;
    pointer-events: none;
}

/* Shimmer sweep */
.hub-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 70%);
    z-index: 0;
    animation: shimmerSlide 6s ease-in-out infinite;
    pointer-events: none;
}

/* Everything inside above the animations */
.hub-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* =================================
   HUB HEADER
================================= */
.hub-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 20px 0 10px;
}

.hub-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hub-title span {
    color: #1f7244;
    background: rgba(31, 114, 68, 0.10);
    padding: 2px 12px;
    border-radius: 6px;
    display: inline-block;
}

.hub-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* =================================
   SEARCH BAR
================================= */
.search-wrapper {
    max-width: 540px;
    margin: 0 auto 28px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-form:focus-within {
    border-color: #1f7244;
    box-shadow: 0 0 0 4px rgba(31, 114, 68, 0.15);
}

.search-icon-left {
    padding: 0 4px 0 18px;
    color: #ccc;
    font-size: 18px;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: color 0.3s;
    flex-shrink: 0;
}

.search-form:focus-within .search-icon-left {
    color: #1f7244;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: transparent;
    min-width: 0;
}

.search-input::placeholder {
    color: #bbb;
}

.search-clear {
    padding: 0 8px;
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.search-clear:hover {
    color: #dc3545;
}

.search-btn {
    margin: 4px;
    padding: 8px 20px;
    background: #1f7244;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #156038;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Search result info */
.search-result-info {
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-result-info strong {
    color: #1a1a1a;
}

/* =================================
   GRID
================================= */
.card-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

@media (max-width: 768px) {
    .card-collection {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
    }
}

/* =================================
   CARD
================================= */
.item-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.item-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
    border-color: rgba(31, 114, 68, 0.25);
}

/* Thumbnail */
.item-thumbnail {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    position: relative;
}

.item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.35s ease;
    display: block;
}

.item-box:hover .item-thumbnail img {
    transform: scale(1.08);
}

/* Discount badge */
.item-discount-badge {
    background: #ff6b35;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* Content */
.item-content {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-heading {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 6px 0 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */
.item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.duration-badge {
    background-color: #ff6b35;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.item-price {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.item-price__original {
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    text-decoration: line-through;
}

.item-price__discount {
    font-size: 14px;
    font-weight: 700;
    color: #1f7244;
}

.item-price__normal {
    font-size: 14px;
    font-weight: 700;
    color: #1f7244;
}

/* Actions */
.item-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f2f2f2;
}

.action-link {
    flex: 1;
    padding: 7px 10px;
    background-color: #1f7244;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.28s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.action-link:hover {
    background-color: #156038;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.4);
}

.action-link--outline {
    background-color: transparent;
    color: #1f7244;
    border-color: #1f7244;
}

.action-link--outline:hover {
    background-color: #1f7244;
    color: #fff;
}

/* =================================
   PAGINATION
================================= */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 2px solid rgba(31, 114, 68, 0.3);
    border-radius: 8px;
    background: rgba(31, 114, 68, 0.06);
    color: #1f7244;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.page-btn:hover {
    border-color: #1f7244;
    background: rgba(31, 114, 68, 0.12);
    color: #1f7244;
    text-decoration: none;
}

.page-btn.active {
    background: #1f7244;
    border-color: #1f7244;
    color: #fff;
    cursor: default;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.3);
}

.page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.page-info {
    text-align: center;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Empty state */
.no-courses {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(0, 0, 0, 0.35);
}

.no-courses i {
    font-size: 52px;
    display: block;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.2);
}

.no-courses p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* =================================
   KEYFRAMES
================================= */
@keyframes blobFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.15);
    }
}

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

    100% {
        transform: translate(-35px, -25px) scale(1.1);
    }
}

@keyframes dotsDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }

    60% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}


/* footer section code */
.page-stub {
    height: 200px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

/* FOOTER MAIN */
.site-footer {
    background: #000000 !important;
    width: 100%;
    position: relative;
}

/* Curved white accent at top */
.footer-curve {
    position: relative;
    height: 60px;
    background: #000000;
    overflow: hidden;
    display: none;
}

.footer-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Main footer content */
.footer-wrapper {
    background: #000000 !important;
    border-top: 1px solid #333333;
    padding: 60px 80px 20px 80px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
    background: transparent;
}

/* Section headings */
.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
}

.footer-section:last-child h3 {
    display: none;
}

/* Quick Links */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    font-size: 13px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links a::before {
    content: '→';
    color: #ffffff;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.contact-items {
    list-style: none;
}

.contact-items li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.6;
}

.contact-value a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #ffffff;
}

/* Follow Us Section */
.follow-us {
    display: flex;
    flex-direction: column;
}

.follow-us p {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.footer-visitor-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.footer-visitor-count:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Image Container */
.footer-section img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* Image Section - Bottom Center */
.footer-section:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 1px solid #333333;
}

.footer-section:last-child img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    min-height: 120px;
}

/* Image Section */
.footer-image-section {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    padding: 20px 80px;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
}

.copyright strong {
    color: #ffffff;
    font-weight: 700;
}

.bottom-links {
    display: flex;
    gap: 28px;
}

.bottom-links a {
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.bottom-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-wrapper {
        padding: 40px 50px;
    }

    .footer-bottom {
        padding: 20px 50px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-wrapper {
        padding: 30px 20px;
    }

    .footer-bottom {
        padding: 16px 20px;
        flex-direction: column;
    }

    .bottom-links {
        width: 100%;
        flex-wrap: wrap;
    }
}

/* ══════════════════════════════════════════════════════
   NEW CUSTOM STYLES (FRONTEND)
   ══════════════════════════════════════════════════════ */

/* ── Hero Headline & Typography ────────────────────── */
.hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.05;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease forwards 0.1s;
    opacity: 0;
}

.hero-title span {
    color: #ccff00;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(204, 255, 0, 0.2);
    z-index: -1;
}

/* ── Promotional Modal Styling ───────────────────── */
.modal-blur-bg {
    backdrop-filter: blur(4px);
}

.promo-modal-dialog {
    max-width: 780px;
}

.promo-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

/* Consolidate: promo-close-btn moved to end of file */

.promo-img-col {
    position: relative;
    overflow: hidden;
    background: #111;
}

.popup-submit-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-weight: 800 !important;
}

.popup-submit-btn:hover {
    background: #155c37 !important;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.2);
}

.footer-visitor-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-visitor-count:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

#popupFormMessage {
    font-size: 0.8rem;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tagline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 550px;
}

/* ── Hero Feature List ────────────────────────────── */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInUp 0.8s ease forwards 0.3s;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: #ccff00;
    color: #1f7244;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}

/* ── Hero Buttons ────────────────────────────────── */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1f7244 0%, #155c37 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(31, 114, 68, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #155c37 0%, #1f7244 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 114, 68, 0.4);
}

.hero-btn-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1f7244;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #1f7244;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: #f0fdf4;
    color: #155c37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ── Trust Badge ─────────────────────────────────── */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.8s ease forwards;
}

/* ── Hero Layout Fixes ────────────────────────────── */
.hero {
    height: auto !important;
    min-height: calc(100vh - 120px) !important;
    max-height: none !important;
    padding: 40px 0;
}

.layout {
    height: auto !important;
    padding: 0 48px !important;
}

.left-content {
    justify-content: center !important;
    gap: 10px;
}

/* ── Animations ───────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ── Footer & Popup Buttons ───────────────────────── */
.footer-policy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-policy-btn:hover {
    background: #ffffff;
    color: #000000;
}

.popup-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1f7244;
    font-weight: 700;
    font-size: 11px;
    border-radius: 3px;
    padding: 5px 14px;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.popup-view-btn:hover {
    background: #1f7244;
    color: white;
}

/* ── Responsive Overrides ────────────────────────── */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: clamp(10px, 2.5vw, 14px);
    }

    #globalPromoModal .col-md-5 {
        min-height: auto !important;
    }
}

@media (min-width: 768px) {
    #globalPromoModal .col-md-5 {
        min-height: 420px !important;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ── Promotional Modal Styling ───────────────────── */
.modal-blur-bg {
    backdrop-filter: blur(4px);
}

.promo-modal-dialog {
    max-width: 700px;
}

.promo-modal-content {
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1051; /* On top of modal content */
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    padding: 0.8rem !important; /* Larger hit area */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    border: none !important;
    filter: invert(0); /* Ensure black icon */
}

.promo-close-btn:hover {
    background-color: #ffffff !important;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.promo-img-col {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}