* {
    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 2px 20px rgba(31, 114, 68, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border: 2px solid rgba(31, 114, 68, 0.25);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.site-navbar::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #165a35, #1f7244, #2da65e, #1f7244, #165a35);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

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

/* ─── Inner Container ─────────────────────────────────────── */
.site-navbar > .container {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 16px;
}

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

.site-navbar .navbar-brand img {
    height: 68px;
    width: auto;
    border: 2px solid rgba(31, 114, 68, 0.20);
    border-radius: 10px;
    padding: 4px;
    display: block;
}

/* ─── Collapse wrapper ────────────────────────────────────── */
.site-navbar .navbar-collapse {
    align-items: center;
}

/* ─── Nav Links ───────────────────────────────────────────── */
.site-navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.site-navbar .navbar-nav .nav-link {
    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;
}

.site-navbar .navbar-nav .nav-link::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;
}

.site-navbar .navbar-nav .nav-link::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;
}

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

.site-navbar .navbar-nav .nav-link:hover::before { opacity: 1; transform: scale(1.5); }
.site-navbar .navbar-nav .nav-link:hover::after  { opacity: 1; transform: scale(1); }

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

.site-navbar .navbar-nav .nav-link.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); }
}

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

/* ─── Toggler ─────────────────────────────────────────────── */
.site-navbar .navbar-toggler {
    border: 1.5px solid #1f7244;
    border-radius: 10px;
    padding: 8px 11px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-navbar .navbar-toggler::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f7244, #2da65e);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: 0;
}

.site-navbar .navbar-toggler:hover::before { transform: translateY(0); }

.site-navbar .navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(31, 114, 68, 0.20);
    outline: none;
}

.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31,114,68,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

/* ─── 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;          /* fixed height matches nav pills */
}

.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);
}

/* Logo circle */
.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: #e8173d;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* Text block */
.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;
}

/* ─── Desktop ─────────────────────────────────────────────── */
@media (min-width: 992px) {
    .site-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        align-items: center;
    }

    .site-navbar .navbar-nav {
        display: flex;
        flex-direction: row;
    }

    .site-navbar .navbar-toggler {
        display: none;
    }
}

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        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;
    }

    .site-navbar .navbar-collapse.show,
    .site-navbar .navbar-collapse.collapsing {
        display: block;
    }

    .site-navbar .navbar-nav {
        padding: 12px 16px 8px;
        flex-direction: column;
        gap: 4px;
    }

    .site-navbar .navbar-nav .nav-link {
        padding: 11px 22px;
        width: 100%;
        text-align: left;
    }

    .navbar-reviews {
        border-left: none;
        border-top: 1px solid rgba(31, 114, 68, 0.10);
        padding: 12px 16px 16px;
        justify-content: center;
        gap: 10px;
    }
}
/* ════════════════════════════════
   HERO SECTION CSS — Size Increased
   ════════════════════════════════ */

.hero {
    height: calc(100vh - 72px);      /* FIX: was -108px, now -72px = more hero height */
    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.15) 0%, transparent 48%),
        radial-gradient(ellipse at 55% 85%, rgba(31,114,68,0.2) 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.014) 55px, rgba(255,255,255,0.014) 56px),
        repeating-linear-gradient(-45deg, transparent, transparent 55px, rgba(255,255,255,0.014) 55px, rgba(255,255,255,0.014) 56px);
}

/* ── RIGHT BG ── */
.right-bg {
    position: absolute;
    inset: 0; left: 50%;
    background: linear-gradient(155deg, #eef5f0 0%, #ddeee5 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 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-right: 36px;
    padding-top: 14px;
    padding-bottom: 14px;
    min-width: 0;
    overflow: hidden;
}

/* ── 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;
    color: white;
    letter-spacing: -0.3px;
    text-align: center;
    line-height: 1.1;
}
.brand-sub {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-top: 3px;
    text-align: center;
}

/* ══════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════ */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: rgba(74, 222, 128, 0.07);
    border: 1px solid rgba(74, 222, 128, 0.22);
    border-radius: 10px;
    padding: 6px 0;
    animation: fadeUp .52s ease .04s both;
    position: relative;
    flex-shrink: 0;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}
.marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, rgba(9,40,20,0.9), transparent);
}
.marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, rgba(9,40,20,0.9), transparent);
}

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

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    padding: 0 18px;
    border-right: 1px solid rgba(74, 222, 128, 0.18);
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.marquee-track span:last-child { border-right: none; }
.marquee-track i { color: #4ade80; font-size: 12px; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ── TAGLINE ── */
.hero-tagline {
    text-align: center;
    animation: fadeUp .55s ease .08s both;
    flex-shrink: 0;
}
.hero-tagline p {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}
.hero-tagline p strong {
    color: #4ade80;
    font-weight: 800;
}

/* ── CTA BUTTONS ── */
.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: fadeUp .65s ease .35s both;
    flex-shrink: 0;
}
.btn-enroll {
    display: inline-flex; align-items: center; gap: 7px;
    background: #4ade80; color: #052e16;
    font-size: 13.5px; font-weight: 800;
    padding: 11px 26px; border-radius: 50px;
    border: none; cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 22px rgba(74,222,128,0.42);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.btn-enroll:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(74,222,128,0.5); }

.btn-courses {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.28);
    color: white;
    font-size: 13.5px; font-weight: 700;
    padding: 11px 26px; border-radius: 50px;
    cursor: pointer; text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s, border-color .2s;
    white-space: nowrap;
}
.btn-courses:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* ── 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 {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.16);
    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);
}
.offer-label-top { font-size: 13px; font-weight: 800; color: #0f1f14; }
.offer-sublabel  { font-size: 9px; font-weight: 600; color: #6b7c72; 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: #0f3d25;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 5px 8px;
    min-width: 40px;
}
.timer-num  { font-size: 16px; font-weight: 900; color: #4ade80; line-height: 1; font-variant-numeric: tabular-nums; }
.timer-unit { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .7px; margin-top: 2px; }
.timer-sep  { font-size: 16px; font-weight: 900; color: #0f3d25; }

/* ── CAROUSEL ── */
.carousel-outer {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 0;
}
.carousel-track {
    display: flex;
    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.38);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white; 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.4); 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%;
    background: rgba(255,255,255,0.28);
    border: none; cursor: pointer; padding: 0;
    transition: background .22s, transform .22s;
}
.dot.active { background: #4ade80; transform: scale(1.4); }

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

.circle-wrap {
    position: relative;
    width: clamp(320px, 52vh, 520px);
    height: clamp(320px, 52vh, 520px);
    animation: floatAnim 3.5s ease-in-out infinite;
}
.circle-wrap::before {
    content: '';
    position: absolute; inset: -20px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,114,68,0.13) 0%, transparent 70%);
}
.circle-wrap::after {
    content: '';
    position: absolute; inset: -13px; border-radius: 50%;
    border: 2px dashed rgba(31,114,68,0.18);
    animation: spinSlow 20s linear infinite;
}

/* ── IMAGE / VIDEO CIRCLE ── */
.image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid white;
    box-shadow: 0 26px 65px rgba(0,0,0,0.14);
    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 */
.sound-btn {
    position: absolute;
    bottom: 16px; right: 16px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(6, 26, 13, 0.88);
    border: 2px solid #4ade80;
    color: #4ade80;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 30;
    transition: background .2s, transform .2s, box-shadow .2s, border-color .2s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 0 3px rgba(74,222,128,0.15);
}
.sound-btn:hover {
    background: #1f7244;
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(74,222,128,0.45), 0 0 0 4px rgba(74,222,128,0.2);
}
.sound-btn.muted {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.sound-btn.muted:hover { border-color: #4ade80; color: #4ade80; }

/* 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(-15px)} }
@keyframes spinSlow  { to{transform:rotate(360deg)} }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .circle-wrap { width: clamp(280px, 44vh, 400px); height: clamp(280px, 44vh, 400px); }
}
@media (max-width: 820px) {
    body { overflow: auto; }
    .left-bg { clip-path: none; }
    .right-bg { display: none; }
    .layout { flex-direction: column; padding: 24px 20px; gap: 20px; height: auto; align-items: stretch; }
    .hero { height: auto; min-height: calc(100vh - 72px); max-height: none; }
    .left-content { flex: none; width: 100%; padding-right: 0; padding-top: 0; padding-bottom: 0; justify-content: flex-start; gap: 14px; }
    .right-content { flex: none; height: auto; }
    .circle-wrap  { width: 310px; height: 310px; }
    .offer-glass  { min-height: 320px; }
    .sound-btn { width: 36px; height: 36px; font-size: 13px; bottom: 10px; right: 10px; }
}
        
/* 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: 60px 0;
        min-height: 80vh;
    }

    .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: 50px 0;
        min-height: 75vh;
    }

    .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 SECTION
=================================== */
.alumni-section {
    padding: 30px 0px;
    background: #ffffff;
}

/* ================================
   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 {
    font-size: 20px;
    font-weight: 600;
    color: #1f7244;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* 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 {
    color: #176535;
    transform: scale(1.08);
    transition: 0.3s ease;
}

/* ================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {
    .alumni-title {
        font-size: 24px;
    }
    .alumni-logo {
        min-width: 150px;
        min-height: 100px;
    }
    .alumni-logo h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .alumni-title {
        font-size: 22px;
    }
    .alumni-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .alumni-logo h3 {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .alumni-logo {
        padding: 18px;
        min-width: 130px;
    }
    .alumni-title {
        font-size: 20px;
    }
    .alumni-logo h3 {
        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;
    }
}


/* ============================================================
   HERO REDESIGN — Above-the-fold, editorial split-panel style
   Same green palette, completely fresh aesthetic
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
.course-page {
  --hero-bg-start : #1f7244;
  --hero-bg-mid   : #196338;
  --hero-bg-end   : #165a38;
  --accent-gold   : #ffc107;
  --accent-cyan   : #ffffff;
  --white         : #ffffff;
  --text-muted    : rgba(255,255,255,0.72);
  --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 — Compact editorial split-panel, above the fold
══════════════════════════════════════════════════════════ */
.course-page .cp-hero {
  background: var(--green-xdark);
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Target: fit in ~90vh minus breadcrumb (~36px) */
  min-height: calc(100vh - 97px);
  display: flex;
  align-items: stretch;
}

/* Animated gradient base */
.course-page .cp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f7244 0%, #165a38 45%, #0f3d26 100%);
  z-index: 0;
}

/* Diagonal accent stripe */
.course-page .cp-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 130%;
  background: linear-gradient(160deg, rgba(255,193,7,0.07) 0%, rgba(31,114,68,0.3) 40%, rgba(15,61,38,0.9) 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
}

/* Dot grid texture */
.course-page .cp-hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,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.6; }
  50%      { opacity: 1;   }
}

/* ── Animated floating orbs — more visible ───────────── */
.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(255,193,7,0.38) 0%, rgba(255,193,7,0.1) 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(110,231,183,0.28) 0%, rgba(110,231,183,0.08) 50%, transparent 75%);
  bottom: -60px; left: 35%;
  animation: cpOrb2 16s ease-in-out infinite;
}

.course-page .cp-hero-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,193,7,0.22) 0%, rgba(255,193,7,0.06) 50%, transparent 75%);
  top: 25%; right: 40%;
  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%; left: 2%;
  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 — more visible ───────────────── */
.course-page .cp-hero-scan {
  position: absolute;
  top: 0; left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.07) 45%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.07) 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(255,193,7,0.18);
  width: 420px; height: 420px;
  top: 50%; left: 18%;
  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(255,193,7,0.1);
  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;   }
}

.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 ─────────────────────────────────────────── */
.course-page .cp-hero-left {
  color: var(--white);
  padding: 26px 36px 26px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(255,255,255,0.1);
  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(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
}

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

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

/* Back button as badge — sits beside 70% OFF */
.course-page .cp-hero-badge.badge-back {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.2s;
}

.course-page .cp-hero-badge.badge-back:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

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

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

/* Gold left-border accent on title */
.course-page .cp-hero-title::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin-bottom: 8px;
}

.course-page .cp-hero-title .highlight {
  color: var(--accent-gold);
  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;
}

/* Batch card pushed to bottom regardless of USP count */
.course-page .cp-batch-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 14px 18px 16px;
  margin-top: auto;
  margin-bottom: 16px;
}

.course-page .cp-hero-usps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}

.course-page .usp-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: rgba(255,193,7,0.18);
  border: 1px solid rgba(255,193,7,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  font-size: 0.65rem;
  margin-top: 1px;
}

/* Apply Now + Brochure row inside batch card */
.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: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

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

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

.course-page .cp-batch-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  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: var(--text-muted);
  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(255,193,7,0.5); color: var(--accent-gold); }
.course-page .cp-pill-row { display: flex; gap: 7px; flex-wrap: wrap; }

/* (apply-row removed — buttons now live inside cp-batch-card via cp-batch-btn-row) */

.course-page .cp-hero-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--accent-gold);
  color: #0f3d26;
  border: 2px solid var(--accent-gold);
  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(255,193,7,0.25);
}

.course-page .cp-hero-apply-btn:hover {
  background: #ffca28;
  border-color: #ffca28;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(255,193,7,0.35);
}

.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(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}

.course-page .cp-hero-action-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}

/* ── RIGHT column — Interest Card ─────────────────────── */
.course-page .cp-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 0 24px 28px;
}

.course-page .cp-interest-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  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 inside interest card */
.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 — unchanged style kept below
══════════════════════════════════════════════════════════ */
.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 #e0e4e8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.course-page .module-item:hover { border-color: var(--green); }

.course-page .module-header {
  background: #f9fafb;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #e0e4e8;
}

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

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

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

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

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

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

.course-page .module-body      { display: none; padding: 20px; }
.course-page .module-body.show { display: block; }

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

.course-page .lecture-item {
  background: #f9fafb;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-left: 3px solid var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s;
  font-size: 0.95rem;
}

.course-page .lecture-item:hover { background: #f3f4f6; }

.course-page .lecture-number {
  background: var(--green);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  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: var(--green);
  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-dark); }

.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; }

@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; }
}

@media (max-width: 900px) {
  .course-page .cp-hero        { min-height: auto; }
  .course-page .cp-hero-inner  { grid-template-columns: 1fr; padding: 0 20px; }
  .course-page .cp-hero-left   { padding: 28px 0 0 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .course-page .cp-hero-right  { padding: 20px 0 28px 0; max-width: 520px; }
  .course-page .cp-interest-card { position: static; }
  .course-page .cp-hero-title  { font-size: 1.65rem; }
  .course-page .cp-card-col    { flex: 0 0 calc(50% - 13px); }
}

@media (max-width: 767px) {
  .course-page .cp-hero-title  { font-size: 1.4rem; }
  .course-page .tabs-section   { padding: 40px 16px; }
  .course-page .tabs-nav       { gap: 16px; }
  .course-page .tab-button     { font-size: 0.8rem; padding: 10px 0; }
  .course-page .info-section   { padding: 22px 18px; }
  .course-page .info-card      { padding: 20px; }
  .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: 30px 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; }
}

@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 .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 — COMPLETE 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;
}

/* ─────────────────────────────────────────────────
   SLIDER WRAPPER
───────────────────────────────────────────────── */
.courses-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.courses-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.courses-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ─────────────────────────────────────────────────
   COURSE CARD
───────────────────────────────────────────────── */
.course-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 calc(25% - 13.5px);
  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;
  -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
───────────────────────────────────────────────── */
.slider-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease, color 0.28s ease,
              transform 0.22s ease, box-shadow 0.28s ease,
              border-color 0.28s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.20);
  z-index: 2;
  animation: btnPulse 2.8s ease-in-out infinite;
  user-select: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: #ffffff;
  color: #1f7244;
  border-color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(0,0,0,0.30);
  animation: none;
}

.slider-btn:active {
  transform: scale(0.94);
}

.slider-btn:disabled {
  opacity: 0.30;
  cursor: not-allowed;
  pointer-events: none;
  animation: none;
}

/* ─────────────────────────────────────────────────
   DOTS
───────────────────────────────────────────────── */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease,
              width 0.35s ease,
              border-radius 0.35s ease,
              border-color 0.3s ease;
}

.slider-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  width: 28px;
  border-radius: 6px;
}

/* ─────────────────────────────────────────────────
   PROGRESS BAR — hidden/removed
───────────────────────────────────────────────── */
.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: 1024px) {
  .course-card {
    flex: 0 0 calc(33.333% - 12px);
  }
}

@media (max-width: 768px) {
  .courses-section { padding: 44px 0; }
  .courses-title   { font-size: 26px; }
  .course-card     { flex: 0 0 calc(50% - 9px); }
  .slider-btn      { width: 36px; height: 36px; font-size: 15px; }
  .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%; }
}
/* ===== 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 — Full Green BG
================================= */
.learning-hub {
    padding: 50px 0;
    background: #1f7244;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Animated blob 1 */
.learning-hub::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(168, 240, 198, 0.15);
    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(255, 255, 255, 0.08);
    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(255,255,255,0.15) 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.06) 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: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.hub-title span {
    color: #000000;
    background: rgba(255,255,255,0.18);
    padding: 2px 12px;
    border-radius: 6px;
    display: inline-block;
}
.hub-description {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    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: #a8f0c6;
    box-shadow: 0 0 0 4px rgba(168,240,198,0.25);
}
.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(255,255,255,0.85);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.search-result-info strong { color: #fff; }

/* =================================
   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(255,255,255,0.2);
    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.15);
}
.item-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.5);
}

/* 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: cover;
    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;
    -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(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    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: #fff;
    background: rgba(255,255,255,0.22);
    color: #fff;
    text-decoration: none;
}
.page-btn.active {
    background: #fff;
    border-color: #fff;
    color: #1f7244;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.page-info {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    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(255,255,255,0.5);
}
.no-courses i {
    font-size: 52px;
    display: block;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.4);
}
.no-courses p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    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);
    }

    /* 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;
      }
    }