html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* â”€â”€â”€ Navbar Shell â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 10px 40px rgba(31, 114, 68, 0.08), inset 0 -1px 0 rgba(255,255,255,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
}

/* â”€â”€â”€ Inner Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* â”€â”€â”€ Brand â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.nav-brand::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(45, 166, 94, 0.3) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}

.nav-brand:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.nav-brand img {
    height: 108px;
    width: 108px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    box-shadow: 0 8px 24px rgba(31, 114, 68, 0.12), 0 0 0 2px rgba(31, 114, 68, 0.05);
}

.nav-brand:hover img {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 12px 32px rgba(31, 114, 68, 0.25), 0 0 0 4px rgba(45, 166, 94, 0.15);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
}

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

.nav-links li a {
    display: block;
    color: #2d4538;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
    position: relative;
    isolation: isolate;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 13px;
}

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

.nav-links li a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #248b52 0%, #1f7244 50%, #165231 100%);
    opacity: 0;
    transform: scale(0.7) translateY(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
    z-index: -1;
    box-shadow: 0 8px 20px rgba(31, 114, 68, 0.3);
}

.nav-links li a:hover {
    color: #ffffff !important;
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

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

.nav-links li a.active {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
}

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

.nav-links li a.active::before {
    opacity: 0.6;
    transform: scale(1.1);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1.1); opacity: 0.6; filter: blur(8px); }
    100% { transform: scale(1.3); opacity: 0.9; filter: blur(12px); }
}

/* â”€â”€â”€ Dropdown Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-links li .dropdown-menu {
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(31, 114, 68, 0.15) !important;
    border: 1px solid rgba(31, 114, 68, 0.08) !important;
    margin-top: 10px;
}

.nav-links li .dropdown-item {
    background: transparent !important;
    color: #2d4538 !important;
    padding: 10px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    border: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links li .dropdown-item::before,
.nav-links li .dropdown-item::after {
    display: none !important;
}

.nav-links li .dropdown-item:hover,
.nav-links li .dropdown-item:focus,
.nav-links li .dropdown-item.active {
    background: #f0f4f2 !important;
    color: #1f7244 !important;
    transform: none !important;
    border: none !important;
}

/* â”€â”€â”€ Hamburger Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(31, 114, 68, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.08);
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1f7244;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
    transform-origin: center;
}

.nav-hamburger:hover {
    background: #1f7244;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 114, 68, 0.2);
}

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

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

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

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

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

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

/* â”€â”€â”€ Mobile overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 14, 0.6);
    z-index: 998;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* â”€â”€â”€ Review Badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 2px solid rgba(31, 114, 68, 0.12);
}

.nb-review-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 114, 68, 0.15);
    border-radius: 12px;
    padding: 4px 10px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.05);
    position: relative;
    overflow: hidden;
}

.nb-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.nb-review-card:hover::before {
    left: 150%;
}

.nb-review-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 24px rgba(31, 114, 68, 0.15);
    border-color: rgba(31, 114, 68, 0.3);
    background: #ffffff;
}

.nb-review-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.nb-review-card:hover .nb-review-logo {
    transform: scale(1.1) rotate(5deg);
}

.nb-review-logo.g-logo {
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nb-review-logo.jd-logo {
    background: transparent;
    padding: 0;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

.nb-count {
    font-size: 8px;
    font-weight: 600;
    color: #6b7280;
    margin-left: 3px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOP BAR MARQUEE â€” above navbar
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.topbar-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #0a2414 0%, #164a2b 50%, #0a2414 100%);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 2px solid rgba(45, 166, 94, 0.4);
}

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

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

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

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

.topbar-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

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

.topbar-marquee-track i {
    color: #5DF094;
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(93, 240, 148, 0.6));
}

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

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

/* â”€â”€â”€ Mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .site-navbar {
        padding: 0;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-brand img {
        height: 78px;
        width: 78px;
        border-width: 2px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 2px solid #1f7244;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 24px;
        border-radius: 0 0 24px 24px;
    }

    .nav-menu.open {
        display: flex;
        animation: menuSlideDown 0.4s cubic-bezier(0.34, 1.5, 0.64, 1) both;
    }

    @keyframes menuSlideDown {
        from { opacity: 0; transform: translateY(-20px) scaleY(0.95); transform-origin: top; }
        to { opacity: 1; transform: translateY(0) scaleY(1); transform-origin: top; }
    }

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

    .nav-links li a {
        padding: 16px 24px;
        width: 100%;
        text-align: left;
        border-radius: 14px;
        background: rgba(31, 114, 68, 0.03);
        border: 1px solid rgba(31, 114, 68, 0.08);
        font-size: 14px;
    }

    .nav-links li a::before,
    .nav-links li a::after {
        display: none;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: linear-gradient(135deg, #1f7244 0%, #165231 100%) !important;
        color: #ffffff !important;
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(31, 114, 68, 0.3);
        border-color: transparent;
    }

    .navbar-reviews {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 24px 20px 10px;
        justify-content: center;
        gap: 12px;
    }
    
    .nb-review-card {
        padding: 6px 12px;
    }

    .topbar-marquee-track span {
        font-size: 11.5px;
        padding: 0 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOP BAR MARQUEE â€” above navbar
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.topbar-marquee {
    width: 100%;
    overflow: hidden;
    background: #0f3d25;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

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

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

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

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

.topbar-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

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

.topbar-marquee-track i {
    color: #4ade80;
    font-size: 12px;
}

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

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

/* â”€â”€â”€ Mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .nav-container {
        padding: 10px 20px;
    }
    
    .nav-brand img {
        height: 55px;
        width: 55px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 16px;
    }

    .nav-menu.open {
        display: flex;
        animation: menuSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

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

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

    .nav-links li a {
        padding: 14px 20px;
        width: 100%;
        text-align: left;
        border-radius: 10px;
        background: rgba(0,0,0,0.02);
    }

    .nav-links li a::before {
        display: none;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(31, 114, 68, 0.08) !important;
        transform: translateX(4px);
    }

    .navbar-reviews {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 20px 16px 10px;
        justify-content: center;
        gap: 16px;
    }

    .topbar-marquee-track span {
        font-size: 11px;
        padding: 0 16px;
    }
}


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

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

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

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

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

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

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

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

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

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

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




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

/* â”€â”€â”€ Mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .nav-brand img {
        height: 78px;
        width: auto;
        max-width: 100%;
    }

    .nav-hamburger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION CSS â€” Updated
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MARQUEE STRIP â€” REMOVED FROM LEFT
   (now lives in right-content top)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes floatAnim {

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

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

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

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

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

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

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

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

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

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

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

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

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

    .right-bg {
        display: none;
    }

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

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

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

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

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

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

    /* â”€â”€ HERO TEXT ADJUSTMENTS (MOBILE) â”€â”€ */
    .trust-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.1;
        margin: 6px 0;
        text-align: center;
    }

    .hero-tagline {
        margin: 0 0 10px 0;
        text-align: center;
    }

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

    .hero-features-list {
        margin: 4px 0 16px 0;
        gap: 10px 14px;
        justify-content: center;
    }

    .feature-item {
        font-size: 0.85rem;
    }
    .feature-item i {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    @keyframes float {

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

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

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

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

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

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

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

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

    .navbar {
        padding: 12px 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    @keyframes float {

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

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

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

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

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

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

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

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

    .star,
    .plus {
        display: none;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .program-img {
        height: 200px;
    }

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

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

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

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

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

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

    .btn-group {
        gap: 8px;
    }

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

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

    .program-img {
        height: 180px;
    }

    .program-body {
        padding: 16px;
    }

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

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

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

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

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

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

    .program-body {
        padding: 14px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Floating Icon Animation */
@keyframes floatIcon {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Testimonial section */

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

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

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

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

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

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

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

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

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

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

/* ---------- CARD ---------- */
.testimonial-card {
    min-width: 48%;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    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 IMAGE ---------- */
.testimonial-image {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.student-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: fill;
    border: 3px solid #1f7244;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.15);
}

.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 {
    display: none;
}
.testimonial-avatar img {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* About section css strat from here */

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

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

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

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

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

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

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

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

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

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

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

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

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

.about-img {
    width: 100%;
    height: 480px;
    object-fit: fill;
    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: 991px) {
    .about-section .row {
        flex-wrap: wrap;
    }

    .about-img-col,
    .about-section .col-lg-7 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .about-img-col {
        margin-bottom: 40px;
    }

    .about-img-wrapper::before {
        top: -14px;
        left: -14px;
        width: 60%;
        height: 60%;
    }

    .about-img-badge {
        position: static;
        margin-top: 20px;
        bottom: auto;
        right: auto;
        left: auto;
        transform: none;
        background: #1f7244;
        padding: 14px 18px;
        min-width: auto;
        width: fit-content;
    }
}

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

    .main-heading {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .sub-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-box a {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        display: inline-flex;
        justify-content: center;
        padding: 14px 20px;
    }

    .about-img {
        height: auto;
        min-height: 260px;
    }

    .about-img-wrapper::before {
        top: -10px;
        left: -10px;
        width: 65%;
        height: 65%;
    }

    .about-img-badge {
        right: 0;
        bottom: auto;
        padding: 12px 16px;
    }

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

    .about-section .about-list {
        gap: 10px;
    }
}



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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BREADCRUMB â€” slimmer
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.course-page .cp-breadcrumb-wrapper {
    background: #f5f6fa;
    border-bottom: 1px solid #e0e4e8;
    padding: 7px 20px;
}

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

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

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

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

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” Split: white left | green right
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION (Corporate Redesign)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.course-page .cp-hero {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.course-page .cp-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding: 0 28px;
}

/* â”€â”€ LEFT column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.course-page .cp-hero-left {
    color: #334155;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

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

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

.course-page .cp-hero-badge.badge-gov {
    background: #11316b;
    color: #ffffff;
}

.course-page .cp-hero-badge.badge-discount {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
}

/* Title & Subtitle */
.course-page .cp-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #0f172a;
    letter-spacing: -1px;
}

.course-page .cp-hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 30px;
    max-width: 90%;
}

/* Highlights Row */
.course-page .cp-hero-highlights {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.course-page .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 8px;
    flex: 1;
    min-width: 140px;
}

.course-page .highlight-item .icon {
    width: 36px;
    height: 36px;
    background: #dbeafe;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.course-page .highlight-item .text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.25;
}

/* USP List */
.course-page .cp-hero-usps {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-page .cp-hero-usps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.course-page .cp-hero-usps i {
    color: #11316b;
    font-size: 1.2rem;
    margin-top: 1px;
}

/* Summary Box */
.course-page .cp-hero-summary-box {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    gap: 24px;
    margin-bottom: 24px;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    flex-wrap: wrap;
}

.course-page .summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-page .summary-item i {
    font-size: 1.8rem;
    color: #64748b;
}

.course-page .summary-item .text {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.3;
}

.course-page .summary-item strong {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 700;
}

/* Features Box */
.course-page .cp-hero-features-box {
    display: flex;
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.course-page .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 140px;
}

.course-page .feature-item i {
    font-size: 1.8rem;
    color: #11316b;
}

.course-page .feature-item .details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.course-page .feature-item strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.course-page .feature-item span {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

/* Batch / Fee card */
.course-page .cp-batch-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.course-page .cp-batch-fee-btn-row {
    display: flex;
    align-items: flex-end;
    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: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.course-page .cp-batch-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
}

.course-page .cp-batch-card-title strong {
    color: #166534;
    font-weight: 800;
}

.course-page .cp-batch-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}

.course-page .cp-batch-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.course-page .cp-batch-fee-original {
    text-decoration: line-through;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.course-page .cp-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.course-page .cp-pill.pill-outline {
    background: transparent;
    border: 1px solid #166534;
    color: #166534;
}

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

/* Apply button */
.course-page .cp-hero-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1f7244;
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.course-page .cp-hero-apply-btn:hover {
    background: #165a38;
}

.course-page .cp-hero-action-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    color: #1f7244;
    border: 1px solid #1f7244;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.course-page .cp-hero-action-outline:hover {
    background: #f0fdf4;
}

/* â”€â”€ RIGHT column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.course-page .cp-hero-right {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    align-items: center;
}

.course-page .cp-hero-image-wrapper {
    position: absolute;
    top: -40px;
    right: 20px;
    width: 280px;
    height: 280px;
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .course-page .cp-hero-image-wrapper {
        display: block;
    }
}

.course-page .hero-student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 12px 12px;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Floating Icons */
.course-page .float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    animation: floatAnim 3s ease-in-out infinite;
    z-index: 2;
}

.course-page .float-icon.icon-ai {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
    color: #1f7244;
}

.course-page .float-icon.icon-play {
    bottom: 80px;
    left: -30px;
    animation-delay: 1s;
    color: #0d2b63;
}

.course-page .float-icon.icon-chat {
    top: 40px;
    right: -20px;
    animation-delay: 2s;
    color: #3b82f6;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.course-page .cp-interest-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    margin-top: 180px; /* Push down to overlap the image */
    width: 100%;
}

/* Top accent bar */
.course-page .cp-interest-card-top {
    background: #0d2b63;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.course-page .top-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.course-page .top-text .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.course-page .top-text .title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.course-page .cp-interest-card-body {
    padding: 0;
}

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

.course-page .snap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.course-page .snap-item i {
    color: #0d2b63;
    font-size: 1.2rem;
}

/* Price block */
.course-page .cp-interest-price-block {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.course-page .price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.course-page .price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.course-page .price-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d2b63;
}

.course-page .price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.course-page .price-save-badge {
    background: #dc2626;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.course-page .price-saving {
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 600;
}

/* Registration Fee Banner */
.course-page .cp-reg-fee-banner {
    margin: 20px 24px;
    padding: 16px;
    background: #0d2b63;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.course-page .reg-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-page .lock-icon {
    font-size: 1.4rem;
    color: #ffffff;
}

.course-page .reg-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.course-page .reg-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
}

.course-page .reg-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 12px;
    min-width: 80px;
    text-align: center;
}

.course-page .reg-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d2b63;
    line-height: 1.1;
}

.course-page .reg-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

/* Quick contact form */
.course-page .cp-interest-form {
    padding: 0 24px 24px;
}

.course-page .form-group {
    position: relative;
    margin-bottom: 16px;
}

.course-page .form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1rem;
    pointer-events: none;
}

.course-page .form-control {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 14px 16px 14px 44px;
    font-size: 0.9rem;
    color: #0f172a;
    transition: all 0.2s;
    box-sizing: border-box;
}

.course-page .form-control:focus {
    border-color: #0d2b63;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13,43,99,0.1);
    outline: none;
}

.course-page .submit-btn {
    width: 100%;
    background: #0d2b63;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-page .submit-btn:hover {
    background: #11316b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13,43,99,0.2);
}

.course-page .cp-interest-footer {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.course-page .cp-interest-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-page .cp-interest-footer i {
    color: #0d2b63;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .course-page .cp-hero-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .course-page .cp-hero-title {
        font-size: 2.2rem;
    }
    .course-page .cp-hero-right {
        margin-top: 20px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 768px) {
    .course-page .cp-hero-summary-box,
    .course-page .cp-hero-features-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .course-page .summary-item,
    .course-page .feature-item {
        width: 100%;
        text-align: left;
        flex-direction: row;
    }
    .course-page .feature-item i {
        font-size: 1.5rem;
    }
    .course-page .cp-interest-footer {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

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

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

.course-page .tabs-scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-page .tabs-scroll-btn {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #1e293b;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.course-page .tabs-scroll-btn:hover {
    background: #f1f5f9;
    border-color: rgba(31, 114, 68, 0.22);
}

.course-page .tabs-nav-wrapper {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.course-page .tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    background: #f1f5f9;
    border-radius: 100px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

@media (max-width: 900px) {
    .course-page .tabs-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-left: 16px;
        padding-right: 16px;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .course-page .tabs-scroll-wrapper {
        display: flex;
    }

    .course-page .tabs-scroll-btn {
        display: inline-flex;
    }

    .course-page .tabs-nav-wrapper {
        min-width: 0;
    }

    .course-page .tabs-nav {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding: 0 16px 10px;
        gap: 0;
        border-bottom: 1px solid #eee;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

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

.course-page .tab-button {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.course-page .tab-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.course-page .tab-button:hover {
    color: #1e293b;
    background: rgba(255, 255, 255, 0.5);
}

.course-page .tab-button:hover i {
    transform: scale(1.1);
}

.course-page .tab-button.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    box-shadow: 0 4px 12px rgba(42, 157, 92, 0.3);
}

.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.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-page .tab-content > h3 i {
    font-size: 1.6rem;
    color: var(--green);
    background: rgba(42, 157, 92, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.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: #ffffff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.course-page .info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--green), var(--green-dark));
}

.course-page .info-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-page .info-section h3 i {
    font-size: 1.6rem;
    color: var(--green);
    background: rgba(42, 157, 92, 0.1);
    padding: 10px;
    border-radius: 12px;
}

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

.course-page .info-list li {
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 12px;
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.course-page .info-list li:last-child {
    margin-bottom: 0;
}

.course-page .info-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--green);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(42, 157, 92, 0.3);
}

.course-page .info-list li:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transform: translateX(4px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.course-page .lecture-name {
    color: #334155;
    font-weight: 600;
    flex: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.course-page .faq-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-page .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.course-page .faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.course-page .faq-item.active {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(42, 157, 92, 0.1);
}

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

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

.course-page .faq-toggle {
    color: var(--green);
    font-size: 0.9rem;
    background: rgba(42, 157, 92, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

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

.course-page .faq-answer {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.course-page .faq-item.active .faq-answer {
    display: block;
    animation: cpFadeIn 0.3s ease;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   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: '\2713';
    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;
}

/* â”€â”€â”€ Coupon Input Validation States â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.course-page .form-input.is-valid {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.05);
}

.course-page .form-input.is-invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.course-page .form-input.is-valid + i,
.course-page .form-input.is-invalid + i {
    color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .course-page .tabs-scroll-btn {
        display: inline-flex;
    }

    .course-page .tabs-nav-wrapper {
        overflow: hidden;
    }

    /* Hide scrollbar Chrome/Safari */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .course-page .cp-hero-right {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
    }

    .course-page .cp-interest-card {
        width: 100%;
    }

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

    .course-page .cp-reg-fee-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .course-page .cp-reg-fee-left {
        width: 100%;
    }

    .course-page .cp-reg-fee-amount {
        margin-top: 12px;
        align-self: flex-start;
    }

    .course-page .cp-hero-badges {
        justify-content: flex-start;
    }

    .course-page .cp-hero-apply-btn,
    .course-page .cp-hero-action-btn {
        width: 100%;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

/* â”€â”€ Keyframe Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@keyframes dotFade {

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

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

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

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

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

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

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

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

@keyframes btnPulse {

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

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

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

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

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

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

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

/* -------------------------------------------------
   SECTION â€” Same design as Trusted Clients section
------------------------------------------------- */
.courses-section {
    padding: 70px 0 20px;
    background: linear-gradient(120deg, #f8faf9 0%, #e6f2eb 50%, #f8faf9 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Decorative Blur Spots for Background Animation */
.courses-section::before,
.courses-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: floatShape 12s ease-in-out infinite alternate;
}

.courses-section::before {
    width: 350px;
    height: 350px;
    background: rgba(31, 114, 68, 0.12); /* Theme color */
    top: -50px;
    left: -100px;
}

.courses-section::after {
    width: 450px;
    height: 450px;
    background: rgba(16, 185, 129, 0.1);
    bottom: -150px;
    right: -100px;
    animation-delay: -6s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}


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

/* -------------------------------------------------
   HEADER â€” Same design as Trusted Clients section
------------------------------------------------- */
.courses-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeSlideDown 0.75s ease both;
}

.courses-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #283a5a;
    line-height: 1.25;
    margin-bottom: 10px;
}

.courses-title span {
    color: #1f7244;
}

.courses-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* -------------------------------------------------
   GRID TRACK â€” 3 cards per row, bigger and more prominent
------------------------------------------------- */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.course-card {
    animation: cardFadeIn 0.5s ease forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show more button container */
.courses-show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Show more button */
.courses-show-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1f7244;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 114, 68, 0.25);
}

.courses-show-more-btn:hover {
    background: #156038;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 114, 68, 0.35);
}

.courses-show-more-btn:active {
    transform: translateY(0);
}

.courses-show-more-btn i {
    transition: transform 0.3s ease;
}

/* -------------------------------------------------
   COURSE CARD â€” 4 per row on desktop
------------------------------------------------- */
.course-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #1f7244;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s 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:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 119, 59, 0.12);
    border-color: rgba(0, 119, 59, 0.2);
}

/* Thumbnail */
.course-card__thumb {
    width: 100%;
    height: 240px;
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #eef0f2;
    overflow: hidden;
    position: relative;
}

.course-card__thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.course-card:hover .course-card__thumb img {
    transform: scale(1.05);
}

/* 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: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #283a5a;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.course-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 28px;
}

.course-card__duration {
    background-color: #ff6b35;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.course-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0px;
    font-size: 14px;
    font-weight: 700;
    color: #1f7244;
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

.course-card__price--original {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    line-height: 1.1;
}

.course-card__price--discount {
    font-size: 16px;
    font-weight: 800;
    color: #1f7244;
    line-height: 1.1;
}

/* Actions */
.course-card__actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
    border-top: 1px solid #eef0f2;
    padding-top: 10px;
}

.course-card__btn {
    flex: 1;
    padding: 7px 10px;
    background-color: #1f7244;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.28s ease, transform 0.22s ease, box-shadow 0.28s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.course-card__btn:hover {
    background-color: #156038;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(31, 114, 68, 0.35);
}

.course-card__btn--outline {
    background-color: transparent;
    color: #1f7244;
    border: 2px solid #1f7244;
}

.course-card__btn--outline:hover {
    background-color: #1f7244;
    color: #fff;
}

/* -------------------------------------------------
   SLIDER BUTTONS & DOTS â€” hidden (no scroll needed)
------------------------------------------------- */
.slider-btn,
.slider-dots,
.slider-progress {
    display: none;
}

/* -------------------------------------------------
   EMPTY STATE
------------------------------------------------- */
.courses-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.65);
}

/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cards */
    }
}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards */
    }
}

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

    .courses-title {
        font-size: 26px;
    }

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

    .courses-show-more-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 8px;
        /* 1 card */
    }
    
    .course-card {
        border-radius: 10px;
    }
    
    .courses-show-more-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Additional responsive fixes for home page */
    .courses-section .item-thumbnail {
        height: 150px;
    }
    
    .courses-section .item-heading {
        font-size: 14px;
    }
    
    .courses-section .feature-item {
        font-size: 10px;
    }
    
    .courses-section .feature-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    .courses-section .feature-icon-wrapper i {
        font-size: 14px;
    }
    
    /* Hero section mobile fixes */
    .hero-title {
        font-size: 28px !important;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 12px !important;
    }
    
    .hero-features-list {
        font-size: 12px;
        gap: 8px 12px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btn-primary, .hero-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Stats section mobile fixes */
    .stats-section {
        padding: 30px 0;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* CTA banner mobile fixes */
    .cta-banner__heading {
        font-size: 20px;
    }
    
    .cta-banner__sub {
        font-size: 14px;
    }
    
    .cta-banner__btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Career paths section mobile fixes */
    .cp-section {
        padding: 40px 0;
    }
    
    .cp-pill {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .cp-pro-img {
        max-width: 200px;
    }
    
    /* Testimonials section mobile fixes */
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    /* About section mobile fixes */
    .about-section {
        padding: 30px 0;
    }
    
    .about-img {
        height: 200px;
    }
    
    .main-heading {
        font-size: 24px;
    }
    
    .sub-text {
        font-size: 14px;
    }
    
    .about-list li {
        font-size: 13px;
    }
    
    /* Locations section mobile fixes */
    .locations-section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .map-wrapper iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* Additional tablet responsive fixes */
    .courses-section .item-thumbnail {
        height: 180px;
    }
    
    .courses-section .item-heading {
        font-size: 16px;
    }
    
    .courses-section .item-price {
        font-size: 14px;
    }
}

/* ===== Join the Ardent Computech Pvt. Ltd. SECTION ===== */
.why-choose {
    position: relative;
    padding: 10px 5%;
    margin: 0;
    background: white;
    overflow: hidden;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.why-title {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
}

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

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

.why-title h2 {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 800;
    display: inline-block;
}

.why-title h2 .black-text {
    color: #1a1a1a;
}

.why-title h2 .green-text {
    color: #1f7244;
}

.why-title p {
    font-size: clamp(14px, 2vw, 20px);
    color: #333;
    margin-top: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* â”€â”€ Desktop grid (3 columns) â”€â”€ */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 50px 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* â”€â”€ Center image â”€â”€ */
.center-img {
    position: relative;
    opacity: 0;
    animation: zoomIn 1s ease-out 0.6s forwards;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

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

.center-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px dashed #1f7244;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

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

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

.center-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.center-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(31, 114, 68, 0.4);
}

/* â”€â”€ Boxes â”€â”€ */
.why-box {
    text-align: center;
    max-width: 280px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.why-box:nth-child(1) {
    animation: slideInUp 0.8s ease-out 0.8s forwards;
}

.why-box:nth-child(2) {
    animation: slideInUp 0.8s ease-out 1.0s forwards;
}

.why-box:nth-child(4) {
    animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.why-box:nth-child(5) {
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

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

.why-box:hover {
    transform: translateY(-10px);
}

.why-box:hover .icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-box:hover .icon::before {
    width: 100px;
    height: 100px;
}

.icon i {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

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

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

.why-box h3 {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 800;
    background: linear-gradient(90deg, #1a1a1a 0%, #1f7244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
}

.why-box:hover h3 {
    background: linear-gradient(90deg, #1f7244 0%, #2a9059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-box p {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.why-box:hover p {
    color: #333;
}

/* â”€â”€ Decorative bubbles â”€â”€ */
.why-choose::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    animation: floatBubble 15s ease-in-out infinite;
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    animation: floatBubble 18s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatBubble {

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

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

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

/* â”€â”€ Large tablets / small laptops (â‰¤ 1024px) â”€â”€ */
@media (max-width: 1024px) {
    .why-wrapper {
        grid-template-columns: 1fr 260px 1fr;
        gap: 35px 25px;
    }

    .center-img img {
        width: 240px;
        height: 240px;
    }
}

/* â”€â”€ Tablets (â‰¤ 768px) â€” switch to single column, hide center image or stack it â”€â”€ */
@media (max-width: 768px) {
    .why-choose {
        padding: 30px 4%;
        min-height: 40vh;
    }

    .why-title {
        margin-bottom: 28px;
    }

    /* Reflow to 2-column card grid + image centred on top */
    .why-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 24px 16px;
    }

    /* Image spans full width, appears first */
    .center-img {
        grid-column: 1 / -1;
        grid-row: auto;
        order: -1;
        margin-bottom: 8px;
    }

    .center-img img {
        width: 180px;
        height: 180px;
    }

    .why-box {
        max-width: 100%;
    }

    .icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
}

/* â”€â”€ Large phones (â‰¤ 576px) â”€â”€ */
@media (max-width: 576px) {
    .why-choose {
        padding: 24px 5%;
        min-height: 40vh;
    }

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

    .center-img {
        grid-column: 1;
    }

    .center-img img {
        width: 150px;
        height: 150px;
    }

    .center-img::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .why-box {
        max-width: 320px;
        margin: 0 auto;
    }

    .icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .why-box h3 {
        margin: 10px 0 6px;
    }
}

/* â”€â”€ Small phones (â‰¤ 375px) â”€â”€ */
@media (max-width: 375px) {
    .why-choose {
        padding: 20px 4%;
    }

    .center-img img {
        width: 130px;
        height: 130px;
    }

    .icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}


/* map location css code */

.locations-section {
    min-height: 20vh;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 14px;
}

.section-header h2 .highlight {
    color: #1f7244;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(31, 114, 68, 1);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    width: 100%;
}

.location-card {
    background: #ffffff;
    border: 1px solid rgba(31, 114, 68, 0.8);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f9f9f9;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.2) brightness(0.95);
}

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

    .container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .locations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
}



/* =================================
   LEARNING HUB â€” Whitesmoke BG
================================= */
.learning-hub {
    padding: 50px 0;
    background: whitesmoke;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Animated blob 1 */
.learning-hub::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(31, 114, 68, 0.08);
    filter: blur(80px);
    top: -120px;
    left: -100px;
    z-index: 0;
    animation: blobFloat1 10s ease-in-out infinite alternate;
}

/* Animated blob 2 */
.learning-hub::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(31, 114, 68, 0.06);
    filter: blur(70px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
    animation: blobFloat2 13s ease-in-out infinite alternate;
}

/* Dot grid overlay */
.hub-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(31, 114, 68, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dotsDrift 25s linear infinite;
    pointer-events: none;
}

/* Shimmer sweep */
.hub-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 70%);
    z-index: 0;
    animation: shimmerSlide 6s ease-in-out infinite;
    pointer-events: none;
}

/* Everything inside above the animations */
.hub-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* =================================
   HUB HEADER
================================= */
.hub-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 20px 0 10px;
}

.hub-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hub-title span {
    color: #1f7244;
    background: rgba(31, 114, 68, 0.10);
    padding: 2px 12px;
    border-radius: 6px;
    display: inline-block;
}

.hub-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* =================================
   SEARCH BAR
================================= */
.search-wrapper {
    max-width: 540px;
    margin: 0 auto 28px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-form:focus-within {
    border-color: #1f7244;
    box-shadow: 0 0 0 4px rgba(31, 114, 68, 0.15);
}

.search-icon-left {
    padding: 0 4px 0 18px;
    color: #ccc;
    font-size: 18px;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: color 0.3s;
    flex-shrink: 0;
}

.search-form:focus-within .search-icon-left {
    color: #1f7244;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: transparent;
    min-width: 0;
}

.search-input::placeholder {
    color: #bbb;
}

.search-clear {
    padding: 0 8px;
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.search-clear:hover {
    color: #dc3545;
}

.search-btn {
    margin: 4px;
    padding: 8px 20px;
    background: #1f7244;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #156038;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Search result info */
.search-result-info {
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-result-info strong {
    color: #1a1a1a;
}

/* =================================
   GRID
================================= */
.card-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

@media (max-width: 768px) {
    .card-collection {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
    }
}

/* =================================
   CARD
================================= */
.item-box {
    background: #ffffff;
    border: 1px solid rgba(31, 114, 68, 0.12);
    border-top: 5px solid #1f7244;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 114, 68, 0.12);
    border-color: rgba(31, 114, 68, 0.25);
}

/* Thumbnail */
.item-thumbnail {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    position: relative;
    border-bottom: 1px solid rgba(31, 114, 68, 0.08);
}

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

/* Content */
.item-content {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-heading {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */
.item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

/* Badge container for left side */
.item-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.duration-badge {
    background: #ff6b35;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* Discount badge */
.item-discount-badge {
    background: #0ea5e9;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* Rating badge */
.rating-badge {
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.rating-badge i {
    color: #fff;
    font-size: 11px;
}

/* Responsive badge spacing */
@media (max-width: 768px) {
    .item-meta {
        gap: 8px;
        justify-content: flex-start;
    }
}

.item-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.item-price__original {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
    text-decoration: line-through;
}

.item-price__discount {
    font-size: 16px;
    font-weight: 800;
    color: #1f7244;
}

.item-price__normal {
    font-size: 16px;
    font-weight: 800;
    color: #1f7244;
}

/* Actions */
.item-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
}

.action-link {
    flex: 1;
    padding: 10px 10px;
    background: linear-gradient(135deg, #248a52 0%, #1f7244 100%);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(31, 114, 68, 0.2);
}

.action-link:hover {
    background: linear-gradient(135deg, #1f7244 0%, #165a38 100%);
    box-shadow: 0 6px 15px rgba(31, 114, 68, 0.4);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.action-link--outline {
    border-color: #1f7244;
    background: rgba(31, 114, 68, 0.05);
    color: #1f7244;
    box-shadow: none;
}

.action-link--outline:hover {
    background: #1f7244;
    color: #fff;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.25);
}

.action-link--primary {
    background: linear-gradient(135deg, #248a52 0%, #1f7244 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(31, 114, 68, 0.2);
}

.action-link--primary:hover {
    background: linear-gradient(135deg, #1f7244 0%, #165a38 100%);
    box-shadow: 0 6px 15px rgba(31, 114, 68, 0.4);
    color: #fff;
}

/* =================================
   PAGINATION
================================= */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 36px;
    flex-wrap: wrap;
    width: 100%;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 2px solid rgba(31, 114, 68, 0.3);
    border-radius: 8px;
    background: rgba(31, 114, 68, 0.06);
    color: #1f7244;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.page-btn:hover {
    border-color: #1f7244;
    background: rgba(31, 114, 68, 0.12);
    color: #1f7244;
    text-decoration: none;
}

.page-btn.active {
    background: #1f7244;
    border-color: #1f7244;
    color: #fff;
    cursor: default;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.3);
}

.page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.page-info {
    text-align: center;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Empty state */
.no-courses {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(0, 0, 0, 0.35);
}

.no-courses i {
    font-size: 52px;
    display: block;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.2);
}

.no-courses p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* =================================
   KEYFRAMES
================================= */
@keyframes blobFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.15);
    }
}

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

    100% {
        transform: translate(-35px, -25px) scale(1.1);
    }
}

@keyframes dotsDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }

    60% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}


/* footer section code */
.page-stub {
    height: 200px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

/* FOOTER MAIN */
.site-footer {
    background: #000000 !important;
    width: 100%;
    position: relative;
}

/* Curved white accent at top */
.footer-curve {
    position: relative;
    height: 60px;
    background: #000000;
    overflow: hidden;
    display: none;
}

.footer-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Main footer content */
.footer-wrapper {
    background: #000000 !important;
    border-top: 1px solid #333333;
    padding: 60px 80px 20px 80px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
    background: transparent;
}

/* Section headings */
.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
}

.footer-section:last-child h3 {
    display: none;
}

/* Quick Links */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    font-size: 13px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links a::before {
    content: 'â†’';
    color: #ffffff;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.contact-items {
    list-style: none;
}

.contact-items li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.6;
}

.contact-value a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #ffffff;
}

/* Follow Us Section */
.follow-us {
    display: flex;
    flex-direction: column;
}

.follow-us p {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.footer-visitor-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.footer-visitor-count:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Image Container */
.footer-section img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* Image Section - Bottom Center */
.footer-section:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 1px solid #333333;
}

.footer-section:last-child img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    min-height: 120px;
}

/* Image Section */
.footer-image-section {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    padding: 20px 80px;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
}

.copyright strong {
    color: #ffffff;
    font-weight: 700;
}

.bottom-links {
    display: flex;
    gap: 28px;
}

.bottom-links a {
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.bottom-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-wrapper {
        padding: 40px 50px;
    }

    .footer-bottom {
        padding: 20px 50px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-wrapper {
        padding: 30px 20px;
    }

    .footer-bottom {
        padding: 16px 20px;
        flex-direction: column;
    }

    .bottom-links {
        width: 100%;
        flex-wrap: wrap;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW CUSTOM STYLES (FRONTEND)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero Headline & Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.05;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease forwards 0.1s;
    opacity: 0;
}

.hero-title span {
    color: #ccff00;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(204, 255, 0, 0.2);
    z-index: -1;
}

/* â”€â”€ Promotional Modal Styling â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-blur-bg {
    backdrop-filter: blur(4px);
}

.promo-modal-dialog {
    max-width: 780px;
}

.promo-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

/* Consolidate: promo-close-btn moved to end of file */

.promo-img-col {
    position: relative;
    overflow: hidden;
    background: #111;
}

.popup-submit-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-weight: 800 !important;
}

.popup-submit-btn:hover {
    background: #155c37 !important;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.2);
}

.footer-visitor-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-visitor-count:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

#popupFormMessage {
    font-size: 0.8rem;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    animation: fadeInDown 0.3s ease;
}

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

.hero-tagline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 550px;
}

/* â”€â”€ Hero Feature List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInUp 0.8s ease forwards 0.3s;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: #ccff00;
    color: #1f7244;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}

/* â”€â”€ Hero Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5DF094 0%, #22c55e 100%);
    color: #071a0e;
    padding: 14px 28px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(93, 240, 148, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary:hover {
    color: #071a0e;
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(93, 240, 148, 0.5);
}

.hero-btn-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.hero-btn-primary .btn-icon i {
    color: #000000;
}

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

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1f7244;
    padding: 14px 28px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: #f0fdf4;
    color: #155c37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* â”€â”€ Trust Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.8s ease forwards;
}

/* â”€â”€ Hero Layout Fixes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    height: auto !important;
    min-height: calc(100vh - 120px) !important;
    max-height: none !important;
    padding: 40px 0;
}

.layout {
    height: auto !important;
    padding: 0 48px !important;
}

.left-content {
    justify-content: center !important;
    gap: 10px;
}

/* â”€â”€ Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* â”€â”€ Footer & Popup Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-policy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-policy-btn:hover {
    background: #ffffff;
    color: #000000;
}

.popup-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1f7244;
    font-weight: 700;
    font-size: 11px;
    border-radius: 3px;
    padding: 5px 14px;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.popup-view-btn:hover {
    background: #1f7244;
    color: white;
}

/* â”€â”€ Responsive Overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: clamp(10px, 2.5vw, 14px);
    }

    #globalPromoModal .col-md-5 {
        min-height: auto !important;
    }
}

@media (min-width: 768px) {
    #globalPromoModal .col-md-5 {
        min-height: 420px !important;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: nowrap;
    }
}

/* â”€â”€ Promotional Modal Styling â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-blur-bg {
    backdrop-filter: blur(4px);
}

.promo-modal-dialog {
    max-width: 700px;
}

.promo-modal-content {
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1051; /* On top of modal content */
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    padding: 0.8rem !important; /* Larger hit area */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    border: none !important;
    filter: invert(0); /* Ensure black icon */
}

.promo-close-btn:hover {
    background-color: #ffffff !important;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.promo-img-col {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}
/* --------------------------------------
   TOP BAR PROMO WITH TIMER & POPUP FIX
   -------------------------------------- */
.topbar-promo {
    width: 100%;
    background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    background-size: 200% auto;
    animation: promoGradientMove 4s linear infinite;
    padding: 8px 0;
    color: #ffffff;
    font-size: 13px;
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: center;
}

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

.promo-content-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1400px;
    padding: 0 32px;
}

.promo-badge {
    background: #fbbf24;
    color: #1e3a8a;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(251, 191, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.promo-text {
    font-weight: 500;
}
.promo-text strong {
    color: #fcd34d;
    font-weight: 800;
}

.promo-coupon-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px dashed rgba(255,255,255,0.4);
}
.promo-coupon {
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 1px;
    display: inline-block;
    animation: bounceScale 2s infinite ease-in-out;
}

@keyframes bounceScale {
    0%, 100% { transform: scale(1) rotate(0deg); text-shadow: 0 0 5px rgba(251, 191, 36, 0.4); }
    50% { transform: scale(1.1) rotate(2deg); text-shadow: 0 0 15px rgba(251, 191, 36, 0.9); }
}

.promo-timer-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}
.timer-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.95;
    letter-spacing: 0.4px;
}
.promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}
.timer-unit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.timer-box {
    background: rgba(255,255,255,0.12);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    animation: glowTimer 1.5s infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.35);
    min-width: 42px;
    text-align: center;
    display: inline-block;
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.timer-unit-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    opacity: 0.9;
    text-transform: uppercase;
    color: #e5edf9;
}

@keyframes glowTimer {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.15);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 20px rgba(59, 130, 246, 0.6);
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
    }
}
.timer-sep {
    font-weight: 700;
    opacity: 0.7;
}

/* Topbar close / dismiss button */
.topbar-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    padding: 0;
    line-height: 1;
    z-index: 10;
    flex-shrink: 0;
}
.topbar-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-50%) scale(1.12);
}
.topbar-close:active {
    transform: translateY(-50%) scale(0.93);
}
/* Enable overflow:hidden so the JS collapse animation works */
.topbar-promo {
    overflow: hidden;
}


/* Modal Border Radius Fix */
#globalPromoModal .promo-modal-content {
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

@media (max-width: 991px) {
    .promo-content-wrapper {
        flex-direction: column;
        gap: 6px;
        padding: 0 16px;
        text-align: center;
    }
    .promo-timer-wrap {
        margin-left: 0;
    }
    .topbar-promo {
        padding: 12px 0;
    }
}

/* ------------------------------------------------------


/* RESPONSIVE */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0 !important;
    }

    .about-section .row {
        flex-wrap: wrap !important;
    }

    .about-section .about-img-col,
    .about-section .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .about-section .about-img-badge {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 20px !important;
        padding: 15px 20px !important;
        min-width: auto !important;
    }

    .about-section .badge-num {
        font-size: 24px !important;
    }

    .about-section .main-heading {
        margin-top: 20px !important;
    }
}

@media (max-width: 768px) {
    .about-section .about-list {
        gap: 12px !important;
    }

    .about-section .btn-box {
        flex-direction: column !important;
        width: 100% !important;
    }

    .about-section .abt-btn,
    .about-section .contact-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }
}


/* whatsapp button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    background: #1f7244;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;

    /* Floating + glowing animation */
    animation: floatGlow 2.5s ease-in-out infinite;
}

/* reCAPTCHA Responsive Wrapper */
.g-recaptcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    overflow: hidden;
    padding: 5px 0;
    width: 100%;
}

.g-recaptcha-wrapper .g-recaptcha {
    transform: scale(1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .g-recaptcha-wrapper {
        transform: scale(0.95);
    }
}

@media (max-width: 768px) {
    .g-recaptcha-wrapper {
        transform: scale(0.9);
        margin: 8px 0;
    }
}

@media (max-width: 576px) {
    .g-recaptcha-wrapper {
        transform: scale(0.85);
        margin: 6px 0;
    }
}

@media (max-width: 480px) {
    .g-recaptcha-wrapper {
        transform: scale(0.8);
        margin: 5px 0;
    }
}

@media (max-width: 400px) {
    .g-recaptcha-wrapper {
        transform: scale(0.75);
        margin: 4px 0;
    }
}

@media (max-width: 360px) {
    .g-recaptcha-wrapper {
        transform: scale(0.7);
        margin: 3px 0;
    }
}

@media (max-width: 320px) {
    .g-recaptcha-wrapper {
        transform: scale(0.65);
        margin: 2px 0;
    }
}

/* Icon size */
.whatsapp-float i {
    font-size: 28px;
}

/* Hover effect */
.whatsapp-float:hover {
    background: #185a36;
    animation-play-state: paused;
}

/* Navigation CTA Button */
.nav-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4) !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6) !important;
    color: #0f172a !important;
}

@media (max-width: 768px) {
    .nav-cta {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Up-down + glow */
@keyframes floatGlow {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 6px rgba(31,114,68,0.6);
    }
    50% {
        transform: translateY(-12px);
        box-shadow: 0 0 22px rgba(31,114,68,1);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 6px rgba(31,114,68,0.6);
    }
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 24px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Visitor Stat Badge in Navbar */
.nav-visitor-stat {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.visitor-count-badge {
    background: rgba(31, 114, 68, 0.1);
    color: #1f7244;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(31, 114, 68, 0.15);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.visitor-count-badge i {
    font-size: 1rem;
    color: #1f7244;
}

.visitor-count-badge:hover {
    background: rgba(31, 114, 68, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .nav-visitor-stat {
        padding: 15px 0 5px 0;
        justify-content: center;
    }
    .visitor-count-badge {
        width: 100%;
        justify-content: center;
    }
}

/* about page css  */

/* ABOUT SECTION MAIN */
.about-ardent {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    min-height: 80vh;
    padding: 60px 0;
    overflow: hidden;
}

/* MAIN WRAPPER */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    width: 90%;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease-out forwards;
}

/* LEFT TEXT */
.about-text {
    flex: 1 1 460px;
    color: #1f7244;
    opacity: 0;
    animation: fadeLeft 1.2s ease-out forwards;
    animation-delay: 0.25s;
}

/* TOP BAR MARQUEE â€” Professional Rolling Stats */
.topbar-marquee {
    background: #1f7244;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.topbar-marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeRoll 40s linear infinite;
}

.topbar-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 50px;
    opacity: 0.9;
}

.topbar-marquee-track span i {
    color: #ff9800; /* Subtle gold icon */
    font-size: 1rem;
}

@keyframes marqueeRoll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Ensure smooth hover pause */
.topbar-marquee:hover .topbar-marquee-track {
    animation-play-state: paused;
}

.about-label {
    letter-spacing: 2px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    color: #1f7244;
}

.about-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1f7244;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-title span {
    color: #153d22;
}

.about-desc {
    margin: 12px 0;
    color: #333;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
}

.values-title {
    margin-top: 18px;
    font-size: clamp(16px, 2vw, 20px);
    color: #1f7244;
    font-weight: 700;
}

.values-list {
    margin-top: 8px;
    padding-left: 20px;
    color: #555;
    font-size: clamp(14px, 1.5vw, 16px);
}

.values-list li {
    margin-bottom: 6px;
}

/* BUTTON */
.btn-about {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #1f7244;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-size: clamp(14px, 1.5vw, 16px);
}

.btn-about:hover {
    background: #155c37;
    transform: translateY(-3px);
}

/* RIGHT IMAGE SIDE */
.about-image {
    position: relative;
    flex: 1 1 420px;
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* SHAPES */
.shape-circle {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: clamp(120px, 20vw, 220px);
    height: clamp(120px, 20vw, 220px);
    border-radius: 50%;
    background: #1f7244;
    opacity: 0.15;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.shape-dots {
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: clamp(90px, 15vw, 150px);
    height: clamp(90px, 15vw, 150px);
    background-image: radial-gradient(#1f7244 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.25;
    z-index: 1;
    animation: floatReverse 5s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

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

/* Tablets */
@media (max-width: 991px) {
    .about-ardent {
        min-height: auto;
        height: auto;
        padding: 40px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-text {
        text-align: center;
        flex: 0 0 auto;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .about-title {
        font-size: clamp(24px, 7vw, 34px);
    }

    .about-desc {
        max-width: 100%;
    }

    .about-image {
        width: 100%;
        flex: 0 0 auto;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .about-ardent {
        padding: 20px 0;
    }

    .about-wrapper {
        width: 92%;
    }

    .btn-about {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .shape-circle,
    .shape-dots {
        display: none;
    }
}

/* MVV section */
        .mvv-section {
            padding: 0;
            background-color: #ffffff;
        }

        .mvv-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            background: white;
            padding: 40px 20px;
            border-radius: 0;
            box-shadow: none;
            font-family: "Inter", sans-serif;
        }

        .cards-wrapper {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .card {
            background: white;
            border: 3px solid #1f7244;
            border-radius: 15px;
            width: 320px;
            height: 265px;
            padding: 80px 30px 30px 30px;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .card:nth-child(1) {
            animation: fadeInUp 0.6s ease-out forwards, 
                       generateEffect 1.5s ease-out 0.1s forwards;
        }

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

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

        .card-header {
            position: absolute;
            top: -20px;
            left: 20px;
            right: 20px;
            background: #1f7244;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 4px 6px rgba(31, 114, 68, 0.3);
            animation: slideInRight 0.5s ease-out forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .card:nth-child(1) .card-header {
            animation: slideInRight 0.5s ease-out forwards,
                      glowPulse 1.5s ease-out 0.2s forwards;
        }

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

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

        .card-number {
            position: absolute;
            top: -25px;
            left: -15px;
            background: #1f7244;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            border: 4px solid white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .card-content {
            text-align: center;
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 30px;
            min-height: 90px;
        }

        .card-icon {
            text-align: center;
            font-size: 50px;
            color: #1f7244;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            transition: transform 0.3s ease;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes generateEffect {
            0% {
                filter: brightness(1);
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            25% {
                filter: brightness(1.3);
                box-shadow: 0 0 30px rgba(31, 114, 68, 0.6),
                           0 0 60px rgba(31, 114, 68, 0.4);
            }
            50% {
                filter: brightness(1.5);
                box-shadow: 0 0 40px rgba(31, 114, 68, 0.8),
                           0 0 80px rgba(31, 114, 68, 0.5),
                           inset 0 0 20px rgba(31, 114, 68, 0.3);
                transform: scale(1.05) translateY(0);
            }
            75% {
                filter: brightness(1.3);
                box-shadow: 0 0 30px rgba(31, 114, 68, 0.6),
                           0 0 60px rgba(31, 114, 68, 0.4);
            }
            100% {
                filter: brightness(1);
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                transform: scale(1) translateY(0);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.4);
                box-shadow: 0 4px 6px rgba(31, 114, 68, 0.3),
                           0 0 20px rgba(31, 114, 68, 0.8);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: translateX(-50%) scale(1);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
            }
        }

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

        /* Hover Effects */
        .card:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease;
            box-shadow: 0 8px 16px rgba(31, 114, 68, 0.3);
        }

        .card:hover .card-icon {
            animation: pulse 1s ease-in-out infinite;
            transform: translateX(-50%) scale(1);
        }

        .card:hover .card-number {
            animation: rotate 0.6s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cards-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .mvv-section {
                padding: 0;
            }

            .mvv-container {
                padding: 10px 15px;
            }

            .card {
                width: 100%;
                max-width: 350px;
            }
        }
/*--------------------------------------------------------------
# Enroll Section
--------------------------------------------------------------*/
.enroll {
  background: linear-gradient(135deg, #ffffff 0%, rgba(31, 114, 68, 0.05) 100%);
  padding: 30px 0;
  font-family: 'Inter', sans-serif;
}

.enroll .enrollment-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(31, 114, 68, 0.15);
  border: 1px solid rgba(31, 114, 68, 0.1);
}

@media (max-width: 768px) {
  .enroll .enrollment-form-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
}

.enroll .enrollment-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.enroll .enrollment-header h2 span {
  color: #1f7244;
}

@media (max-width: 768px) {
  .enroll .enrollment-header h2 {
    font-size: 1.4rem;
  }
}

.enroll .enrollment-header p {
  font-size: 0.875rem;
  color: rgba(31, 114, 68, 0.7);
  line-height: 1.6;
}

.enroll .enrollment-form .form-group {
  margin-bottom: 1.5rem;
}

.enroll .enrollment-form .form-group .form-label {
  font-weight: 600;
  color: #1f7244;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.enroll .enrollment-form .form-group .form-control,
.enroll .enrollment-form .form-group .form-select {
  background-color: #ffffff;
  border: 2px solid rgba(31, 114, 68, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: #1f7244;
}

.enroll .enrollment-form .form-group .form-control:focus,
.enroll .enrollment-form .form-group .form-select:focus {
  border-color: #1f7244;
  box-shadow: 0 0 0 0.2rem rgba(31, 114, 68, 0.2);
  outline: none;
}

.enroll .enrollment-form .form-group .form-control::placeholder,
.enroll .enrollment-form .form-group .form-select::placeholder {
  color: rgba(31, 114, 68, 0.4);
}

.enroll .enrollment-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.enroll .enrollment-form .schedule-options .form-check {
  margin-bottom: 12px;
  padding: 15px 20px;
  background: rgba(31, 114, 68, 0.05);
  border-radius: 10px;
  border: 2px solid rgba(31, 114, 68, 0.15);
  transition: all 0.3s ease;
}

.enroll .enrollment-form .schedule-options .form-check:hover {
  background: rgba(31, 114, 68, 0.1);
  border-color: rgba(31, 114, 68, 0.3);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input {
  margin-top: 3px;
  margin-left: 0px;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input:checked {
  background-color: #1f7244;
  border-color: #1f7244;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-label {
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.enroll .enrollment-form .agreement-section {
  background: rgba(31, 114, 68, 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #1f7244;
}

.enroll .enrollment-form .agreement-section .form-check {
  margin-bottom: 15px;
}

.enroll .enrollment-form .agreement-section .form-check:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-input:checked {
  background-color: #1f7244;
  border-color: #1f7244;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label {
  font-size: 0.85rem;
  line-height: 1.5;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a {
  color: #1f7244;
  text-decoration: underline;
  font-weight: 600;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a:hover {
  color: #1f7244;
}

.enroll .enrollment-form .btn-enroll {
  background: #1f7244;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.enroll .enrollment-form .btn-enroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.enroll .enrollment-form .btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(31, 114, 68, 0.4);
}

.enroll .enrollment-form .btn-enroll:hover:before {
  left: 100%;
}

.enroll .enrollment-form .btn-enroll:active {
  transform: translateY(-1px);
}

.enroll .enrollment-form .btn-enroll .bi {
  font-size: 1.1rem;
}

.enroll .enrollment-form .enrollment-note {
  font-size: 0.8rem;
  color: rgba(31, 114, 68, 0.6);
  font-style: italic;
}

.enroll .enrollment-form .enrollment-note .bi {
  color: #1f7244;
  margin-right: 5px;
}

.enroll .enrollment-benefits {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 50px rgba(31, 114, 68, 0.1);
  border: 1px solid rgba(31, 114, 68, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.enroll .enrollment-benefits h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: center;
}

.enroll .enrollment-benefits h3 span {
  color: #1f7244;
}

.enroll .enrollment-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(31, 114, 68, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.enroll .enrollment-benefits .benefit-item:hover {
  background: rgba(31, 114, 68, 0.1);
  transform: translateX(5px);
}

.enroll .enrollment-benefits .benefit-item .benefit-icon {
  background: #1f7244;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.enroll .enrollment-benefits .benefit-item .benefit-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1f7244;
}

.enroll .enrollment-benefits .benefit-item .benefit-content p {
  font-size: 0.725rem;
  color: rgba(31, 114, 68, 0.7);
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.enroll .enrollment-benefits .enrollment-stats {
  background: #1f7244;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item {
  display: block;
  margin-bottom: 15px;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-label {
  display: block;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

@media (max-width: 992px) {
  .enroll .enrollment-benefits {
    margin-top: 50px;
    position: static;
    top: auto;
  }
}

@media (max-width: 576px) {
  .enroll .enrollment-benefits {
    padding: 30px 15px;
  }

  .enroll .enrollment-benefits .benefit-item {
    padding: 15px;
    gap: 12px;
  }

  .enroll .enrollment-benefits .benefit-item .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-right: 0;
  }
}

/* ============================================================
   our student work in section css yha se 
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-heading {
  font-size: 28px;
  font-weight: 800;
  color: rgba(17, 17, 17, 1);
  line-height: 1.3;
  margin-top: 0;
}
.section-heading span {
  color: rgba(31, 114, 68, 1);
}
/* ============================================================
   VARIATION D â€” TIMELINE / MILESTONE STRIP
============================================================ */
@keyframes neonTopFlash {
  0%, 100% { box-shadow: inset 0 5px 15px -5px rgba(31,114,68,0.5); border-color: #1f7244; }
  50% { box-shadow: inset 0 2px 5px -2px rgba(31,114,68,0.2); border-color: #0d4627; }
}

.vd {
  background: #fff;
  padding: 30px 0 80px 0;
  border-top: 3px solid rgba(31, 114, 68, 1);
  animation: neonTopFlash 1.2s infinite alternate;
}
.vd-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  margin-top: 0;
  padding-top: 0;
}
.vd-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.vd-line::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 114, 68, 1) 60%, rgba(229, 229, 229, 1) 100%);
  z-index: 0;
}
.vd-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  cursor: default;
}
@keyframes neonBorderFlash {
  0%, 100% {
    box-shadow: 0 0 5px #fff, 0 0 10px #1f7244, 0 0 20px #1f7244, 0 0 30px #1f7244;
    border-color: #1f7244;
  }
  50% {
    box-shadow: 0 0 2px #fff, 0 0 5px #1f7244, 0 0 10px #1f7244, 0 0 15px #1f7244;
    border-color: #0d4627;
  }
}

@keyframes neonTextFlash {
  0%, 100% {
    text-shadow: 0 0 2px #fff, 0 0 5px #1f7244, 0 0 10px #1f7244;
    color: #1f7244;
  }
  50% {
    text-shadow: 0 0 1px #fff, 0 0 2px #1f7244, 0 0 5px #1f7244;
    color: #0d4627;
  }
}

.vd-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px rgba(31, 114, 68, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #1f7244;
  transition: all 0.25s;
  flex-shrink: 0;
  animation: neonBorderFlash 1.2s infinite alternate;
}
.vd-node:hover .vd-dot {
  background: #1f7244;
  color: #fff;
  transform: scale(1.15);
  animation: none;
  box-shadow: 0 0 15px #1f7244, 0 0 30px #1f7244;
}
.vd-dot.hollow {
  background: rgba(255, 255, 255, 1);
  color: rgba(31, 114, 68, 1);
  border-color: rgba(229, 229, 229, 1);
  box-shadow: 0 0 0 2px rgba(229, 229, 229, 1);
  font-size: 11px;
  font-weight: 700;
  animation: none;
}
.vd-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 1);
  text-align: center;
  line-height: 1.4;
  max-width: 80px;
  animation: neonTextFlash 1.2s infinite alternate;
}
.vd-node:hover .vd-label {
  color: rgba(31, 114, 68, 1);
}
/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 600px) {
  .vd {
    padding: 30px 0 40px 0;
  }
  .vd-head {
    margin-bottom: 32px;
  }
  .section-heading {
    font-size: 24px;
  }
  .vd-line {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 20px;
    scrollbar-width: none;
  }
  .vd-line::-webkit-scrollbar {
    display: none;
  }
  .vd-line::before {
    display: block;
    width: 200%;
  }
  .vd-node {
    flex: 0 0 110px;
    scroll-snap-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: auto;
  }
  .vd-label {
    text-align: center;
    max-width: 80px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BANNER SECTION - Premium Elegant Styling
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0d3d20 0%, #1f7244 25%, #165a38 50%, #1a5c38 75%, #0d3d20 100%);
    padding: 120px 0;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: gentleFloat 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gentleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
}

.cta-banner__text {
    flex: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-banner__heading {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 28px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner__heading::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-banner__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 2px;
}

.cta-banner__sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
}

.cta-banner__action {
    flex-shrink: 0;
}

.cta-banner__btn {
    display: inline-block;
    background: linear-gradient(135deg, #1f7244 0%, #165a38 100%);
    color: #ffffff;
    padding: 20px 56px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-banner__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 61, 32, 0.15), transparent);
    transition: left 0.8s ease;
}

.cta-banner__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(13, 61, 32, 0.1);
    border-radius: 2px;
}

.cta-banner__btn:hover {
    background: linear-gradient(135deg, #165a38 0%, #0d3d20 100%);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-banner__btn:hover::before {
    left: 100%;
}

.cta-banner__btn:active {
    transform: translateY(-3px);
}

/* CTA Banner Responsive Design */
@media (max-width: 992px) {
    .cta-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 30px;
    }

    .cta-banner__heading {
        font-size: 2rem;
    }

    .cta-banner__sub {
        font-size: 1rem;
    }

    .cta-banner__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner__content {
        padding: 0 20px;
        gap: 30px;
    }

    .cta-banner__heading {
        font-size: 1.75rem;
    }

    .cta-banner__sub {
        font-size: 0.95rem;
    }

    .cta-banner__btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner__heading {
        font-size: 1.5rem;
    }

    .cta-banner__sub {
        font-size: 0.9rem;
    }

    .cta-banner__btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CAREER PATHS SECTION â€” Pill + Image Layout
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.cp-section {
    padding: 80px 0;
    background: #f8faf9;
    position: relative;
    overflow: hidden;
}

.cp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(31,114,68,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 85% 50%, rgba(204,255,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Inner two-column layout */
.cp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
}

/* â”€â”€ LEFT COLUMN â”€â”€ */
.cp-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

.cp-heading span {
    color: #1f7244;
    position: relative;
}

.cp-heading span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1f7244, #b3e600);
    border-radius: 2px;
    opacity: 0.5;
}

.cp-subtext {
    font-size: 15px;
    color: #4b6b5e;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

/* Pill rows */
.cp-pill-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Default pill */
.cp-pill {
    display: inline-block;
    padding: 9px 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    background: #ffffff;
    text-decoration: none !important;
    transition: all 0.25s ease;
    letter-spacing: 0.1px;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.cp-pill:hover {
    border-color: #1f7244;
    color: #1f7244;
    background: rgba(31,114,68,0.05);
    box-shadow: 0 4px 14px rgba(31,114,68,0.12);
    transform: translateY(-2px);
}

/* Accent pill (highlighted) */
.cp-pill--accent {
    border-color: rgba(31,114,68,0.35);
    color: #1f7244;
    background: rgba(31,114,68,0.06);
    font-weight: 700;
}

.cp-pill--accent:hover {
    background: #1f7244;
    color: #ffffff;
    border-color: #1f7244;
    box-shadow: 0 6px 18px rgba(31,114,68,0.25);
}

/* â”€â”€ RIGHT COLUMN â”€â”€ */
.cp-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-image-wrap {
    position: relative;
    width: 380px;
    height: 440px;
}

/* Decorative spinning rings */
.cp-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: cpRingSpin 8s linear infinite;
    pointer-events: none;
}

.cp-ring--outer {
    inset: -18px;
    border-top-color: #1f7244;
    border-right-color: #1f7244;
    opacity: 0.18;
    animation-duration: 10s;
}

.cp-ring--inner {
    inset: -6px;
    border-bottom-color: #b3e600;
    border-left-color: #b3e600;
    opacity: 0.3;
    animation-direction: reverse;
    animation-duration: 7s;
}

@keyframes cpRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Professional image */
.cp-pro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50% 50% 46% 46% / 42% 42% 58% 58%;
    box-shadow: 0 20px 60px rgba(31,114,68,0.18);
    display: block;
    background: #e8f5ef;
}

/* Floating badge */
.cp-badge-float {
    position: absolute;
    bottom: 20px;
    left: -24px;
    background: #ffffff;
    border: 1.5px solid rgba(31,114,68,0.2);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(31,114,68,0.15);
    animation: cpBadgeFloat 3s ease-in-out infinite;
    white-space: nowrap;
}

.cp-badge-float i {
    font-size: 18px;
    color: #1f7244;
    flex-shrink: 0;
}

.cp-badge-float span {
    font-size: 13px;
    font-weight: 700;
    color: #1a2e23;
}

@keyframes cpBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 991px) {
    .cp-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cp-pill-row {
        justify-content: center;
    }

    .cp-subtext {
        max-width: 100%;
    }

    .cp-right {
        justify-content: center;
    }

    .cp-image-wrap {
        width: 300px;
        height: 350px;
    }

    .cp-badge-float {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .cp-section {
        padding: 55px 0;
    }

    .cp-inner {
        padding: 0 20px;
        gap: 30px;
    }

    .cp-heading {
        font-size: 1.7rem;
    }

    .cp-pill {
        font-size: 12.5px;
        padding: 8px 14px;
    }

    .cp-image-wrap {
        width: 240px;
        height: 280px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW HERO SECTION FOR VIEW.PHP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cp-hero-new {
  background-color: #f8fafc;
  color: #1e293b;
  position: relative;
  overflow: hidden;
  padding: 20px 0 0 0;
  font-family: 'Inter', sans-serif;
}

.cp-hero-bg-split {
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  background: #103323; /* Dark green */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.cp-hero-bg-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 8px solid #c8a356; /* Golden border */
}

/* Background dots for right side */
.cp-hero-bg-split::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cp-hero-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: auto;
}

/* Left Content */
.cp-hero-content {
  padding-bottom: 20px;
}

.cp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 24px;
}

.cp-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.cp-breadcrumb a:hover {
  color: #195934;
}

.breadcrumb-separator {
  color: #cbd5e1;
}

.breadcrumb-current {
  color: #0f172a;
  font-weight: 700;
}

.cp-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cp-badge-gov {
  background: #e6f4ea;
  color: #195934;
}

.cp-badge-discount {
  background: #fee2e2;
  color: #dc2626;
}

.cp-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.cp-title .text-black {
  color: #0f172a;
}
.cp-title .text-green { display: inline-block; white-space: nowrap;
  color: #195934;
}
.cp-title .title-swish {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 25px;
  z-index: -1;
}

.cp-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 35px;
  max-width: 500px;
  font-weight: 500;
}

.cp-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-feature-icon {
  width: 44px;
  height: 44px;
  background: #e6f4ea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #195934;
  font-size: 1.3rem;
}

.cp-feature span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.cp-cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.cp-price-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  row-gap: 8px;
}

.cp-price-original {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #dc2626;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.cp-price-current {
  font-size: 1.8rem;
  color: #195934;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.cp-price-savings {
  background: #dcfce7;
  color: #166534;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Price + Coupon side-by-side row (view.php) */
.cp-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.cp-coupon-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0;
  padding: 7px 14px;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1.5px dashed #f59e0b;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #92400e;
  animation: couponPulse 2.5s ease-in-out infinite;
}
.cp-coupon-hint i {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
}
.cp-coupon-hint strong {
  color: #b45309;
}
@keyframes couponPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

/* Compact coupon hint for course cards (index.php) */
.cp-coupon-hint--card {
  margin-top: 0;
  padding: 3px 8px;
  font-size: 0.72rem;
  gap: 4px;
  border-radius: 6px;
}
.cp-coupon-hint--card i {
  font-size: 0.78rem;
}

.cp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  min-width: 170px;
}
.cp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.cp-btn .btn-icon i {
  font-size: 1.4rem;
}

.cp-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.cp-btn .btn-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.cp-btn .btn-text span {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.9;
}

.cp-btn-primary {
  background: #195934;
  color: #ffffff;
}

.cp-btn-secondary {
  background: #c8a356;
  color: #ffffff;
}

.cp-btn-outline {
  background: #ffffff;
  color: #195934;
  border: 1px solid #195934;
}

/* Right Content */
.cp-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cp-floating-badge {
  position: absolute;
  background: rgba(16, 51, 35, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.cp-floating-badge i {
  color: #ffffff;
}
.float-top-left { top: 5%; left: -5%; }
.float-mid-left { top: 35%; left: -10%; }
.float-mid-right { top: 30%; right: -5%; }

/* Laptop Mockup */
.cp-laptop-container {
  width: 100%;
  max-width: 750px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  margin-top: -40px;
}
.cp-laptop-screen {
  background: #0f172a;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 16px solid #1e293b;
  border-bottom: 6px solid #1e293b;
}
.cp-laptop-header {
  display: none;
}
.cp-laptop-content {
  display: flex;
  min-height: 280px;
  background: #1e293b;
}
.cp-laptop-sidebar {
  width: 130px;
  background: #0f172a;
  padding: 20px 0;
}
.cp-sidebar-item {
  padding: 12px 20px;
  font-size: 0.8rem;
  color: #94a3b8;
}
.cp-sidebar-item.active {
  background: #195934;
  color: #fff;
}
.cp-laptop-main {
  flex: 1;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-laptop-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #94a3b8;
}
.cp-laptop-base {
  height: 24px;
  background: #94a3b8;
  border-radius: 0 0 16px 16px;
  position: relative;
}
.cp-laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #64748b;
  border-radius: 0 0 6px 6px;
}

/* Right Stats Box */
.cp-hero-stats-box {
  background: rgba(16, 51, 35, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  gap: 20px;
  z-index: 3;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.cp-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-stat-item .cp-hero-stat-icon {
  font-size: 1.6rem;
  color: #ffffff;
}
.cp-stat-item strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.2;
}
.cp-stat-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* Bottom Full-Width Sections */
.cp-hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}
.cp-hero-bottom-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.cp-benefits-bar {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.cp-benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cp-benefit-item .cp-benefit-icon {
  width: 48px;
  height: 48px;
  background: #e6f4ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #195934;
  font-size: 1.4rem;
}
.cp-benefit-item strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.cp-benefit-item span {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}

.cp-trust-banner {
  background: #103323;
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.cp-trust-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cp-trust-avatars {
  display: flex;
}
.cp-trust-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #103323;
  margin-left: -12px;
}
.cp-trust-avatars img:first-child {
  margin-left: 0;
}
.cp-trust-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}
.cp-trust-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cp-trust-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
}
.cp-trust-rating span {
  color: #ffffff;
  font-weight: 700;
  margin-left: 6px;
}
.cp-trust-right {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.8);
}
.cp-trust-right i {
  font-size: 1.8rem;
  color: #4ade80;
  line-height: 1;
}
.cp-trust-right span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1200px) {
  .cp-hero-bg-split { width: 45%; }
  .float-top-left { left: -5%; }
  .float-mid-left { left: -10%; }
  .cp-hero-stats-box { gap: 12px; flex-wrap: nowrap; justify-content: flex-start; }
  .cp-hero-wrapper { gap: 30px; }
  .cp-title { font-size: clamp(2rem, 3.5vw, 3rem); }
}

@media (max-width: 992px) {
  .cp-hero-bg-split { display: none; }
  .cp-hero-new { background: #f8fafc; padding: 15px 0 0 0; }
  .cp-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }
  .cp-hero-content { padding-bottom: 15px; }
  .cp-hero-visual {
    background: #103323;
    padding: 40px 20px 30px;
    border-radius: 16px;
    margin-top: 20px;
    order: -1;
  }
  .float-top-left { top: 20px; left: 20px; }
  .float-mid-left { top: 120px; left: 10px; }
  .float-mid-right { top: 80px; right: 20px; }
  
  .cp-benefits-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .cp-trust-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .cp-trust-left {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cp-hero-new { padding: 15px 0 0 0; }
  .cp-hero-wrapper { padding: 0 15px; gap: 25px; }
  
  .cp-breadcrumb { font-size: 0.75rem; margin-bottom: 16px; flex-wrap: wrap; }
  .cp-badges { flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
  .cp-badge { padding: 6px 10px; font-size: 0.65rem; }
  
  .cp-title { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 16px; }
  .cp-description { font-size: 0.95rem; margin-bottom: 24px; max-width: 100%; }
  
  .cp-features { flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .cp-feature-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .cp-feature span { font-size: 0.75rem; }
  
  .cp-cta-buttons { flex-direction: column; gap: 12px; margin-bottom: 15px; }
  .cp-btn { padding: 12px 16px; }
  .btn-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .btn-text strong { font-size: 0.9rem; }
  .btn-text span { font-size: 0.75rem; }
  
  .cp-price-display { gap: 8px; margin-bottom: 20px; }
  .cp-price-original { font-size: 0.95rem; }
  .cp-price-current { font-size: 1.4rem; }
  .cp-price-savings { font-size: 0.75rem; padding: 3px 8px; }
  
  .cp-hero-stats-box { flex-direction: row; gap: 8px; padding: 8px 12px; overflow-x: auto; }
  .cp-stat-item { gap: 5px; }
  .cp-stat-item .cp-hero-stat-icon { font-size: 1rem; }
  .cp-stat-item strong { font-size: 0.75rem; }
  .cp-stat-item span { font-size: 0.65rem; }
  
  .cp-benefits-bar { grid-template-columns: 1fr; gap: 15px; }
  .cp-benefit-item { padding: 15px; }
  .cp-benefit-icon { width: 36px; height: 36px; font-size: 1rem; }
  .cp-benefit-item strong { font-size: 0.85rem; }
  .cp-benefit-item span { font-size: 0.7rem; }
  
  .cp-laptop-container { max-width: 100%; margin-top: 0; }
  .cp-laptop-screen { border-width: 14px; border-bottom-width: 5px; }
}

@media (max-width: 480px) {
  .cp-hero-new { padding: 10px 0 0 0; }
  .cp-hero-wrapper { padding: 0 12px; gap: 20px; }
  
  .cp-breadcrumb { font-size: 0.7rem; gap: 6px; }
  .cp-badges { gap: 6px; }
  .cp-badge { padding: 5px 8px; font-size: 0.6rem; }
  
  .cp-title { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 12px; }
  .cp-description { font-size: 0.9rem; margin-bottom: 20px; }
  
  .cp-features { gap: 10px; margin-bottom: 20px; }
  .cp-feature-icon { width: 34px; height: 34px; font-size: 1rem; }
  .cp-feature span { font-size: 0.7rem; }
  
  .cp-cta-buttons { gap: 10px; }
  .cp-btn { padding: 10px 14px; }
  .btn-icon { width: 36px; height: 36px; font-size: 1rem; }
  .btn-text strong { font-size: 0.85rem; }
  .btn-text span { font-size: 0.7rem; }
  
  .cp-price-display { gap: 6px; margin-bottom: 15px; }
  .cp-price-original { font-size: 0.85rem; }
  .cp-price-current { font-size: 1.2rem; }
  .cp-price-savings { font-size: 0.7rem; padding: 2px 6px; }
  
  .cp-hero-stats-box { padding: 6px 10px; gap: 6px; }
  .cp-stat-item { gap: 4px; }
  .cp-stat-item .cp-hero-stat-icon { font-size: 0.9rem; }
  .cp-stat-item strong { font-size: 0.7rem; }
  .cp-stat-item span { font-size: 0.6rem; }
  
  .cp-laptop-container { margin-top: 0; }
  .cp-laptop-screen { border-width: 12px; border-bottom-width: 4px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CERTIFICATE TAB SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.certificate-section {
  padding: 10px 0;
}

.cert-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.cert-display-container {
  width: 100%;
  max-width: 800px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

.cert-image {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.cert-placeholder {
  width: 100%;
  max-width: 800px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

.cert-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #9ca3af;
}

.cert-placeholder-content i {
  font-size: 3rem;
  opacity: 0.5;
}

.cert-placeholder-content p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .cert-preview {
    grid-template-columns: 1fr;
  }
  .cert-display-container,
  .cert-placeholder {
    max-width: 100%;
  }
}

/* Security for Certificate Images */
.cert-display-container {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cert-display-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 10;
}

.cert-mockup {
  width: 100%;
  max-width: 680px;
  background: #fff;
  border: 2px solid #c8a356;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: relative;
}
.cert-mockup::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid #e8d49a;
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}

.cert-mockup-header {
  background: #103323;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.cert-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.cert-mockup-title {
  border-left: 2px solid rgba(255,255,255,0.3);
  padding-left: 16px;
}
.cert-top-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cert-sub-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c8a356;
  margin-top: 2px;
}

.cert-mockup-body {
  padding: 30px 40px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cert-presented {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 8px;
}
.cert-name-line {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  font-style: italic;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  border-bottom: 2px solid #e8d49a;
  display: inline-block;
  padding: 0 30px 8px;
  min-width: 300px;
}
.cert-course-line {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 10px;
}
.cert-course-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #195934;
  margin-bottom: 8px;
  padding: 0 20px;
}
.cert-duration {
  font-size: 0.82rem;
  color: #94a3b8;
}

.cert-mockup-footer {
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #f1f5f9;
  position: relative;
  z-index: 1;
}
.cert-seal {
  font-size: 2.8rem;
  color: #195934;
  line-height: 1;
}
.cert-sign-block {
  text-align: center;
}
.cert-sign-line {
  width: 140px;
  height: 1px;
  background: #334155;
  margin-bottom: 6px;
}
.cert-sign-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .cert-name-line { min-width: unset; font-size: 1.3rem; }
  .cert-mockup-body { padding: 20px; }
  .cert-mockup-footer { padding: 14px 20px; }
}
/* =========================================================================
   AGY PREMIUM DEPARTMENT COURSES SECTION
========================================================================= */
.agy-premium-courses {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f2eb 50%, #d8f3dc 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}
.agy-premium-courses::before {
    content: '';
    position: absolute;
    top: -150px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(31, 114, 68, 0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}
.agy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.agy-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.agy-badge {
    display: inline-block;
    background: rgba(31, 114, 68, 0.1);
    color: #1f7244;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.agy-badge i {
    margin-right: 4px;
    color: #f59e0b;
}

.agy-heading {
    font-size: 48px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}
.agy-heading span {
    background: linear-gradient(135deg, #1f7244 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.agy-subheading {
    font-size: 18px;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Layout: Left sidebar + Right content */
.agy-courses-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

/* LEFT: Vertical Department Sidebar */
.agy-dept-sidebar {
    width: 270px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 22px 14px;
    position: sticky;
    top: 90px;
    border: 1px solid rgba(31,114,68,0.08);
}
.agy-dept-sidebar-label {
    font-size: 10.5px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 0 6px 12px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 6px;
}
.agy-dept-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 10px;
    border-left: 3px solid transparent;
    font-size: 13.5px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    margin-bottom: 2px;
    gap: 10px;
    line-height: 1.45;
}
.agy-dept-badge:hover {
    background: #f0fdf4;
    color: #1f7244;
    border-left-color: rgba(31,114,68,0.3);
}
.agy-dept-badge.active {
    background: linear-gradient(90deg, #f0fdf4 0%, #e8f8f0 100%);
    color: #1f7244;
    border-left-color: #1f7244;
    font-weight: 700;
}
.agy-dept-badge-name {
    flex: 1;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
}
.agy-dept-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    background: #e5e7eb;
    color: #6b7280;
    transition: all 0.2s ease;
}
.agy-dept-badge.active .agy-dept-count {
    background: #1f7244;
    color: #ffffff;
}

/* RIGHT: Content area */
.agy-content-area {
    flex: 1;
    min-width: 0;
}

/* Dropdown Wrapper */
.agy-dropdown-wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    padding: 24px;
    margin-bottom: 30px;
}
.agy-dropdown-header {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.agy-department-dropdown {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}
.agy-department-dropdown:hover {
    background: #ffffff;
    border-color: #135d36;
    box-shadow: 0 4px 12px rgba(19, 93, 54, 0.1);
}
.agy-department-dropdown:focus {
    outline: none;
    border-color: #135d36;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(19, 93, 54, 0.1);
}
.agy-department-dropdown option {
    padding: 12px 16px;
    font-weight: 500;
}

/* Sidebar */
.agy-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.agy-sidebar-header {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.agy-category-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.agy-nav-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.agy-nav-btn::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #135d36, #2dd4bf);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 4px;
}
.agy-nav-btn:hover {
    background: #f9fafb;
    padding-left: 20px;
}
.agy-nav-btn.is-active {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(19, 93, 54, 0.08);
}
.agy-nav-btn.is-active::before {
    transform: scaleY(1);
}
.agy-nav-icon {
    font-size: 20px;
    color: #9ca3af;
    transition: color 0.3s ease;
}
.agy-nav-btn.is-active .agy-nav-icon, .agy-nav-btn:hover .agy-nav-icon {
    color: #135d36;
}
.agy-nav-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
}
.agy-nav-btn.is-active .agy-nav-text {
    color: #111827;
}
.agy-nav-count {
    background: #f3f4f6;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.agy-nav-btn.is-active .agy-nav-count {
    background: #135d36;
    color: #ffffff;
}

/* Panels */
.agy-content-area {
    flex: 1;
    min-width: 0;
}
.agy-course-panel {
    display: none;
    animation: agyFadeIn 0.5s ease forwards;
}
.agy-course-panel.is-active {
    display: block;
}
@keyframes agyFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.agy-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 5px solid #1f7244;
}
.agy-panel-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.highlight-dot {
    width: 10px; height: 10px;
    background: #1f7244;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(31,114,68, 0.5);
}
.agy-panel-footer-action {
    margin-top: 32px;
    text-align: center;
}
.agy-btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: #1f7244;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(31,114,68,0.25);
    transition: all 0.3s ease;
}
.agy-btn-view-more:hover {
    background: #135d36;
    box-shadow: 0 6px 20px rgba(19,93,54,0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Grid & Cards */
.agy-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 22px;
}

/* Mobile Horizontal Scrolling for AGY Courses Grid */
@media (max-width: 768px) {
    .agy-cards-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
        gap: 15px;
    }
    
    .agy-cards-grid::-webkit-scrollbar {
        display: none;
    }
    
    .agy-cards-grid .agy-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        max-width: 280px;
    }
}
.agy-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(31,114,68,0.10);
    border-top: 4px solid #1f7244;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.agy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(31, 114, 68, 0.12);
    border-color: rgba(31,114,68,0.3);
}
.agy-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}
.agy-card-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.agy-badge-discount {
    display: inline-flex;
    align-items: center;
    background: #f59e0b;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}
.agy-media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}
.agy-card:hover .agy-media-overlay {
    opacity: 1;
}
.agy-btn-preview {
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.agy-card:hover .agy-btn-preview {
    transform: translateY(0);
}
.agy-btn-preview:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.agy-card-body {
    padding: 22px 20px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.agy-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 14px;
}
.agy-card-meta .rating i {
    color: #fbbf24;
}
.agy-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 16px;
    flex-grow: 1;
}
.agy-card-link {
    color: #111827;
    text-decoration: none;
}
.agy-card-link:hover {
    color: #1f7244;
}
.agy-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
.agy-card-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 12.5px;
    color: #374151;
    padding: 14px 0 4px;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}
.agy-card-features span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.agy-card-features i {
    color: #1f7244;
    font-size: 14px;
    flex-shrink: 0;
}
.agy-card-footer {
    padding: 14px 20px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}
.agy-price-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.agy-price-new, .agy-price-free {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}
.agy-price-old {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
}
.agy-btn-enroll {
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.agy-btn-enroll:hover {
    background: #135d36;
    box-shadow: 0 4px 15px rgba(19, 93, 54, 0.3);
    color: #fff;
}

/* Empty State */
.agy-empty-state {
    text-align: center;
    padding: 60px 0;
    color: #9ca3af;
}
.agy-empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .agy-courses-layout {
        flex-direction: column;
    }
    .agy-dropdown-wrapper {
        margin-bottom: 20px;
    }
    .agy-sidebar {
        width: 100%;
        position: static;
        padding: 20px;
        margin-bottom: 20px;
    }
    .agy-nav-btn {
        width: auto;
        flex: 1;
        min-width: 160px;
    }
}

@media (max-width: 576px) {
    .agy-heading {
        font-size: 26px;
    }
    .agy-dropdown-wrapper {
        padding: 16px;
    }
    .agy-dropdown-header {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .agy-department-dropdown {
        padding: 12px 14px;
        font-size: 14px;
        padding-right: 40px;
    }
    .agy-sidebar {
        padding: 15px;
        margin-bottom: 20px;
    }
    .agy-nav-btn {
        width: 100%;
        min-width: 100%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .agy-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .agy-courses-layout {
        flex-direction: column;
    }
    .agy-sidebar {
        width: 100%;
        position: static;
        padding: 20px;
    }
    .agy-category-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .agy-nav-btn {
        width: auto;
        flex: 1;
        min-width: 160px;
    }
}
@media (max-width: 768px) {
    .agy-premium-courses {
        padding: 20px 0;
    }
    .agy-heading {
        font-size: 26px;
    }
    .agy-sidebar {
        padding: 15px;
        margin-bottom: 20px;
    }
    .agy-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .agy-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .agy-nav-btn {
        width: 100%;
        min-width: 100%;
    }
}





.hidden-course {
    display: none !important;
}
.hidden-course.show-course {
    display: flex !important;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   PERFORMANCE: GPU Acceleration & Scroll Optimisations
============================================================= */

/* Promote animated/hoverable elements to their own compositor layer */
.agy-card,
.item-box,
.testimonial-card,
.site-navbar,
.agy-nav-btn,
.hero,
.stats-section,
[data-aos] {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Contain layout/paint for heavy sections */
.courses-section,
.testimonials-section {
    contain: layout style;
}

/* Smooth-scroll for inner scroll containers */
.testimonials-grid,
.agy-content-area {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent heavy backdrop-filter from causing scroll lag on sticky nav */
@supports (backdrop-filter: blur(1px)) {
    .site-navbar {
        will-change: backdrop-filter, transform;
    }
}
