/* ==========================================
   1. ROOT VARIABLES & GLOBAL RESET
   ========================================== */
:root {
    --primary-color: #032B24;
    --secondary-color: #008457;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    
    /* Fixed: Added missing fallback definitions used in the document */
    --primary-dark: #021a16;
    --light-bg: #f9f9f9;
    --border-light: #eaeaea;
    --text-muted: #666666;
    --primary-blue: #1e40af;
    --primary-red: #b71c1c;
}

/* Optimized Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==========================================
   2. REUSABLE UTILITIES & COMPONENTS
   ========================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-submit,
.dot,
.menu-toggle {
    cursor: pointer;
}

.btn {
    text-decoration: none;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    display: inline-block;
}

.btn-green {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-green-dark {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

/* Performance optimization for animated cards */
.course-card,
.team-card,
.wcu-card,
.industry-card,
.vvm-card {
    will-change: transform;
}

.course-card:hover,
.team-card:hover,
.wcu-card:hover {
    transform: translateY(-5px);
}

/* ==========================================
   3. HEADER & NAVIGATION
   ========================================== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header-container,
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span {
    margin-right: 20px;
}

.social-icons a {
    color: var(--text-light);
    margin-left: 15px;
    text-decoration: none;
}

.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
}

.logo h2 span,
.navbar a:hover {
    color: var(--secondary-color);
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 10px;
    font-size: 14px;
    transition: .3s ease;
}

.menu-toggle,
.mobile-enroll {
    display: none;
}

.menu-toggle {
    font-size: 24px;
    color: var(--primary-color);
}

/* ==========================================
   4. HERO & HERO SLIDER
   ========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0 100px 0;
}

.hero-container {
    position: relative;
    z-index: 2; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slider-bg .slide.active {
    opacity: 1;
}

.slider-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(10 27 21 / 89%) 36%, rgb(255 255 255 / -8%) 54%);
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(10 27 21 / 89%) 36%, rgb(255 255 255 / -8%) 54%);
    z-index: -1;
}

.hero-text {
    flex: 1;
}

.welcome-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    max-width: 500px;
    color: #fff;
}

.hero-text p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: .95;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   5. INQUIRY FORM
   ========================================== */
   

.inquiry-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.inquiry-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.inquiry-form input,
.inquiry-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
}

.form-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

/* ==========================================
   6. ACHIEVEMENTS & STATISTICS
   ========================================== */
.achievements-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background-color: #008457;
}

.achieve-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.achieve-icon i {
    font-size: 35px;
    color: #fff;
}

.achieve-number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    color: #fff;
}

.achieve-label {
    font-size: 14px;
    margin: 0;
    color: #fff;
}

.stats-banner {
    background-image: url('stats-banner.png');
    border-radius: 20px;
    color: #fff;
    padding: 30px 20px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: #2ecc71;
}

.stat-info h3 {
    font-size: 24px;
    margin: 0;
}

.stat-info p {
    font-size: 13px;
    color: #ccc;
    margin: 0;
}

/* ==========================================
   7. COURSES & CARDS
   ========================================== */
.courses-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: var(--secondary-color);
    font-weight: 700;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-top: 5px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 20px;
    padding: 20px;
}

.course-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 12px;
    border-radius: 6px;
    text-align: center;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.course-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.course-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.course-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.course-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.duration {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: auto;
    margin-bottom: 20px;
}

.btn-view,
.cta-buttons a {
    display: inline-block;
    text-decoration: none;
}

.btn-view,
.section-header span {
    color: #B71C1C;
    font-weight: 700;
}

.btn-view {
    padding: 10px 5px;
    border: 1px solid #B71C1C;
    border-radius: 4px;
    width: 80%;
    max-width: 160px;
    transition: .2s ease-in-out;
}

.btn-cta-call,
.btn-view:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}

/* ==========================================
   8. WHY CHOOSE US
   ========================================== */
.why-choose-us {
    background-image: linear-gradient(rgba(0, 140, 93, 0.9), rgba(0, 110, 73, 0.95)), url('assets/wc-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.section-header .section-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    display: inline-block;
    color: #adcb4c;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header .section-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    text-align: left;
    margin: 0;
}

.section-header .section-body .section-intro {
    text-align: left;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.section-header .section-body .section-intro p:not(:last-child) {
    margin-bottom: 16px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.wcu-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.wcu-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #adcb4c;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wcu-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 159, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.wcu-icon {
    font-size: 32px;
    color: #ADCB4C;
    margin: 0;
    transition: transform 0.4s ease;
}

.wcu-card:hover .wcu-icon-wrapper {
    background: #ff9f43;
}

.wcu-card:hover .wcu-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.wcu-card h3 {
    color: #ffffff;
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.3px;
}

.btn-view-all:hover,
.team-role {
    color: var(--secondary-color);
}

/* ==========================================
   9. TRUST & REPUTATION
   ========================================== */
.trust-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1388px;
    margin: 0 auto;
    align-items: center;
}

.section-tag {
    font-size: 12px;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.trust-left h2 {
    font-size: 32px;
    color: #111;
    margin: 10px 0;
}

.trust-left p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.trust-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 20px;
}

.trust-card {
    background: #fff;
    padding: 26px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 12%);
    text-align: center;
}

.trust-card i {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.trust-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #111;
}

.trust-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   10. METHODOLOGY & FLOWS
   ========================================== */
.methodology-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.section-heading-center span {
    font-size: 14px;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 1px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.methodology-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto 0;
    flex-wrap: wrap;
    gap: 15px;
}

.step-item {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-image: url('stats-banner.png');
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.step-item p {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.step-arrow {
    color: #bbb;
    font-size: 20px;
}


/* Container sizing */
.classroom-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Base image styling stacked on top of each other */
.classroom-slider .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out; /* Smooth crossfade */
}

/* Active slide display */
.classroom-slider .slide-img.active {
    opacity: 1;
    position: relative; /* Fallback to preserve container layout structure if min-height varies */
}

.classroom-slider .slide-img.active ~ .slide-img {
    position: absolute;
}

/* ==========================================
   11. TEAM & LEADERSHIP
   ========================================== */
.our-team {
    max-width: 100%;
    padding: 60px 20px;
}

.career-pathways .section-header h2,
.industries-section .section-header h2,
.our-team .section-header h2 {
    color: #111;
}

.our-team .section-header span {
    font-size: 20px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.team-card {
    border-radius: 8px;
    text-align: center;
    padding: 15px 10px;
    transition: transform .3s, box-shadow .3s;
    background: #fff;
}

.team-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.team-img {
    margin: 0 auto 15px;
    width: 95px;
    height: 95px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
}

.team-exp {
    font-size: 12px;
    background: #f1f1f1;
    padding: 4px 12px;
    border-radius: 20px;
    color: #555;
    display: inline-block;
}

.team-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
}

.btn-view-all:hover {
    border: 2px solid var(--secondary-color);
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.leadership-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.leader-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.leader-info {
    padding: 15px;
    position: relative;
}

.leader-info h3 {
    font-size: 15px;
    margin: 0 0 4px;
    color: #111;
}

.leader-info .role {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 8px;
}

.leader-info .desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 10px;
    line-height: 1.4;
    min-height: 50px;
}

.linkedin-link {
    color: #0077b5;
    font-size: 16px;
    text-decoration: none;
}


.training-content .feature-icon-wrapper {
            background-color: #f8f9fa !important;
            border-color: #e9ecef !important;
            transition: all 0.25s ease;
        }

        .training-content .d-flex:hover .feature-icon-wrapper {
            background-color: #0b1c3f !important;
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        .training-content .btn {
            transition: all 0.3s ease;
        }

        .training-content .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
            opacity: 0.95;
        }

        @media (max-width: 767.98px) {
            .stat-item-box {
                border-end: none !important;
            }

            .stat-item-box:nth-child(odd) {
                border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
            }
        }

/* ==========================================
   12. STORIES & TESTIMONIALS
   ========================================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.story-card {
    background: #fff;
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    color: #ddd;
    font-size: 24px;
    margin-bottom: 10px;
}

.story-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.story-card hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}

.student-info h4 {
    color: var(--primary-color);
    margin-bottom: 2px;
    font-size: 16px;
}

.student-info p {
    font-size: 12px;
    color: #888;
}

.testimonials-section {
    padding: 80px 10%;
    background-color: #fff;
    text-align: center;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-section .main-heading {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin: 0 0 40px;
    font-weight: 800;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform .5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: #f9fbf9;
    border: 1px solid #e1ebe1;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.student-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2e7d32;
}

.student-info h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #1a1a1a;
}

.student-role {
    margin: 2px 0;
    font-size: .85rem;
    color: #666;
}

.student-exp {
    display: inline-block;
    font-size: .75rem;
    background: #edf7ed;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.testimonial-text {
    font-size: .95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 20px;
}

.rating-stars {
    color: #ffb300;
    font-size: 1.1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot.active {
    background: #2e7d32;
    width: 24px;
    border-radius: 6px;
}

.view-all-box {
    margin-top: 40px;
}

.view-all-btn {
    transition: .3s;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #2e7d32;
    color: #2e7d32;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 5px;
}

.view-all-btn:hover {
    background-color: #2e7d32;
    color: #fff;
}

/* ==========================================
   13. ROADMAP & PATHWAYS
   ========================================== */
.career-pathways {
    background-color: #fafafa !important;
    padding: 60px 0;
    overflow: visible !important;
}

.roadmap-wrapper .roadmap-step {
    border-color: #eaeaea !important;
    overflow: visible !important;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.roadmap-wrapper .roadmap-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
    z-index: 3;
}

.roadmap-wrapper .roadmap-step:hover .step-icon-circle {
    transform: translate(-50%, -50%) scale(1.05);
}

/* ==========================================
   14. INDUSTRIES & PARTNERS
   ========================================== */
.industries-section {
    max-width: 100%;
    padding: 60px 20px;
    background-color: #fdfdfd;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.industry-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .03);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid #f0f0f0;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.footer-links li a:hover,
.vvm-card:hover {
    transform: translateX(5px);
}

.industry-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #eef7f4;
}

.industry-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.industry-card:hover .industry-img-wrapper img {
    transform: scale(1.08);
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    padding: 20px 15px;
    margin: 0;
}

.partners-section {
    padding: 40px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.partners-text {
    max-width: 280px;
}

.partners-text h3 {
    font-size: 14px;
    color: var(--secondary-color);
    margin: 0 0 5px;
    letter-spacing: 0.5px;
}

.partners-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.partners-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-grow: 1;
    justify-content: space-around;
    flex-wrap: wrap;
}

.logo-item img {
    max-height: 65px;
    filter: grayscale(20%);
    transition: 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
}

/* ==========================================
   15. ABOUT SECTION & HERO
   ========================================== */
.about-section {
    padding: 80px 10%;
    background-color: #f9fbf9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-box {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #2e7d32;
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, .3);
    text-align: center;
}

.experience-badge h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.experience-badge p {
    font-size: .85rem;
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content-box {
    flex: 1.2;
}

.sub-heading,
.testimonials-section .sub-heading {
    color: #2e7d32;
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    color: #1a1a1a;
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 800;
}

.about-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vvm-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.vvm-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
    border-left: 4px solid #2e7d32;
    transition: transform .3s;
}

.vvm-icon {
    font-size: 1.8rem;
    background: #edf7ed;
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

.vvm-text h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.vvm-text p {
    margin: 0;
    font-size: .95rem;
    color: #666;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    background-color: #2e7d32;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color .3s, box-shadow .3s;
}

.cta-btn:hover {
    background-color: #1b5e20;
    box-shadow: 0 8px 15px rgba(27, 94, 32, .2);
}

.about-hero {
    background-image: url('assets/about-hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 50px 20px;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.about-hero-text {
    margin-right: 127px;
}

.about-hero-text h1 {
    font-size: 36px;
    margin-bottom: 5px;
}

.about-hero-text .subtitle {
    color: #2ecc71;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.about-hero-text .description {
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    font-size: 24px;
    color: #2ecc71;
    margin-bottom: 8px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-red);
    transform: rotate(45deg);
}

.feature-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-hero-image img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

/* ==========================================
   16. MISSION VISION VALUES
   ========================================== */
.mvv-section {
    padding: 0;
    background: #ffffff;
    font-family: sans-serif;
}

.mvv-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.mvv-row {
    background-image: url('assets/mv.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    display: flex;
    border-bottom: 2px solid var(--border-light);
}

.mvv-row.vision-row {
    background-image: url('assets/vv.png');
    background-position: right center;
}

.mvv-content {
    flex: 1;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.mvv-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    position: relative;
}

.mvv-title .highlight {
    color: var(--primary-red);
}

.mvv-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--primary-red);
    margin-top: 8px;
}

.mvv-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.mvv-description strong {
    color: var(--primary-blue);
}

.mvv-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
}

.mvv-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f7f9fb;
}

.mission-bg {
    background-image: url('mission-banner.jpg');
}

.vision-bg {
    background-image: url('vision-banner.jpg');
}

/* ==========================================
   17. CLOSING CALL TO ACTIONS & FOOTER
   ========================================== */
.final-cta {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons a {
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 4px;
}

.btn-cta-wa {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.main-footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 70px 10% 20px;
    border-top: 4px solid #2e7d32;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 25px;
    position: relative;
}

.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 35px;
    background-color: #2e7d32;
}

.brand-col .footer-logo {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 15px;
    font-weight: 800;
    letter-spacing: .5px;
}

.brand-col .footer-logo span {
    color: #2e7d32;
    margin-left: 4px;
}

.brand-col .footer-desc {
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #9ca3af;
    font-size: .95rem;
    display: inline-block;
    transition: .3s;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1f2937;
    color: #9ca3af;
    transition: .3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: #2e7d32;
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .95rem;
}

.footer-contact-info li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color .3s;
}

.footer-bottom-links a:hover,
.footer-contact-info li a:hover {
    color: #fff;
}

.footer-newsletter h5 {
    color: #fff;
    font-size: .95rem;
    margin: 0 0 12px;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    position: relative;
    max-width: 280px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #fff;
    font-size: .9rem;
    outline: 0;
    transition: border-color .3s;
}

.newsletter-form input:focus {
    border-color: #2e7d32;
}

.newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    border: none;
    background-color: #2e7d32;
    color: #fff;
    padding: 0 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color .3s;
}

.newsletter-form button:hover {
    background-color: #1b5e20;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    margin-left: 20px;
    transition: color .3s;
}

.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.action-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.action-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-icon {
    font-size: 28px;
    color: #2ecc71;
}

.action-text h4 {
    margin: 0 0 2px;
    font-size: 16px;
}

.action-text p {
    margin: 0;
    font-size: 12px;
    color: #ccc;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-bar {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-apply {
    background: var(--secondary-color);
    color: #fff;
}

.btn-wa {
    background: transparent;
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.btn-call {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-bar:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ==========================================
   18. RESPONSIVE BREAKPOINTS & MEDIA QUERIES
   ========================================== */
@media (min-width: 992px) {
    .roadmap-wrapper .roadmap-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0; 
        right: -15px; 
        width: 22px;
        height: 2px;
        border-top: 2px dotted #b0bec5;
        z-index: -1;
    }
}

@media (max-width: 992px) {
    .section-header .section-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-container,
    .about-hero-container,
    .trust-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-box {
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
    }

    .experience-badge {
        right: 10px;
        bottom: -10px;
    }

    .main-heading,
    .testimonials-section .main-heading {
        font-size: 2rem;
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .navbar,
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-content {
        gap: 8px;
    }

    .social-icons a,
    .top-bar span {
        margin: 0 10px;
    }

    .menu-toggle {
        display: block;
    }

    .desktop-enroll,
    .navbar {
        display: none;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
        z-index: 99;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 12px 0;
        font-size: 16px;
        width: 100%;
    }

    .mobile-enroll {
        display: inline-block;
        width: auto;
        margin: 15px auto 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1,
    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-section::before {
        background: rgba(3, 43, 36, .85);
    }

    .achievements-section {
        justify-content: center;
        gap: 40px;
    }

    .roadmap-container {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        align-items: center;
        width: 100%;
    }

    .roadmap-step {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-card h3 {
        font-size: 16px;
        margin-top: 0;
    }

    .step-icon {
        margin-bottom: 8px;
    }

    .roadmap-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: none !important;
        margin: 15px 0;
        text-align: center;
        animation: 2s ease-in-out infinite pulseArrowMobile;
    }

    .roadmap-arrow i {
        display: inline-block;
        font-size: 20px;
        margin: 0 auto;
    }

    .roadmap-arrow i::before {
        content: "\f078" !important;
    }

    .mvv-grid,
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .mvv-row {
        flex-direction: column;
        background-size: inherit;
    }

    .mvv-content {
        max-width: 100%;
        padding: 40px 20px;
    }

    .mvv-image {
        min-height: 300px;
    }

    .mvv-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .roadmap-wrapper {
        gap: 3.5rem !important;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 15px;
        background-attachment: scroll;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .course-card,
    .wcu-card {
        padding: 20px 10px;
    }

    .wcu-card h3 {
        font-size: 14px;
    }

    .course-card p,
    .wcu-card p {
        font-size: 12px;
    }

    .team-btn-container {
        margin-top: 25px;
    }

    .btn-view-all {
        width: 85%;
        text-align: center;
        padding: 10px 0;
        font-size: 13px;
    }

    .stories-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .achievements-section,
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .courses-grid {
        gap: 12px;
        padding: 10px;
    }

    .course-card h3 {
        font-size: 15px;
    }

    .btn-view {
        width: 90%;
        font-size: 11px;
        padding: 6px 0;
    }

    .achievements-section {
        display: grid;
        gap: 20px;
        padding: 15px;
    }

    .achieve-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
        text-align: center;
    }

    .achieve-number {
        font-size: 26px;
    }

    .achieve-label {
        font-size: 13px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .about-hero-text h1 {
        font-size: 22px;
    }

    .about-hero {
        background-position: initial;
    }

    .about-hero-text {
        margin-right: -4px;
    }

    .hero-features-grid,
    .mvv-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        justify-content: center;
    }

    .action-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .action-text {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        min-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-img-wrapper {
        height: 120px;
    }

    .industry-card h3 {
        font-size: 15px;
        padding: 12px 5px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-role {
        font-size: 13px;
    }

    .hero-features-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   19. ANIMATIONS
   ========================================== */
@keyframes pulseArrowMobile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

.course-details-page {
    --primary-color: #014122;
    --accent-green: #00aa55;
    --light-bg: #f8fafc;
    --text-dark: #333333;
    --text-muted: #666666;
    --border-color: #e2e8f0;
}

.course-details-page .breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-muted);
    background-color: var(--light-bg);
}

.course-details-page .breadcrumbs span {
    color: var(--text-dark);
}

.course-details-page .hero {
    background: linear-gradient(to right, rgb(10 27 21 / 89%) 36%, rgb(255 255 255 / -8%) 54%), url('assets/course-bg.png');
    color: var(--white);
    padding: 60px 0 100px 0;
    position: relative;
}

.course-details-page .badge-internationally {
    background-color: rgba(0, 170, 85, 0.2);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.course-details-page .hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.course-details-page .hero h1 .highlight-green {
    color: var(--accent-green) !important;
}

.course-details-page .hero-desc {
    max-width: 700px;
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.course-details-page .hero-features {
    display: flex;
    gap: 30px;
}

.course-details-page .hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light)
}

.course-details-page .hero-feat-item i {
    color: var(--accent-green);
    font-size: 18px;
}

.course-details-page .quick-metrics-container {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.course-details-page .quick-metrics {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 20px;
    border: 1px solid var(--border-color);
}

.course-details-page .metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border-right: 1px solid var(--border-color);
}

.course-details-page .metric-item:last-child {
    border-right: none;
}

.course-details-page .metric-item i {
    color: var(--accent-green);
    font-size: 24px;
}

.course-details-page .metric-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.course-details-page .metric-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.course-details-page .sub-nav-tabs {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    background: var(--white);
    width: 100%;
}

.course-details-page .tabs-wrapper {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.course-details-page .tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.course-details-page .tabs-wrapper li {
    flex-shrink: 0;
}

.course-details-page .tabs-wrapper li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0;
    display: inline-block;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.course-details-page .tabs-wrapper li a.active,
.course-details-page .tabs-wrapper li a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--accent-green);
}

.course-details-page .about-split-grid {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.course-details-page .section-title-main {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.course-details-page .about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
}

.course-details-page .accreditation-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--light-bg);
}

.course-details-page .provider-logo-box {
    /*background: var(--primary-color);*/
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.course-details-page .provider-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-details-page .accreditation-details p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.course-details-page .accreditation-details a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.course-details-page .course-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.course-details-page .course-card-image {
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.course-details-page .course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-details-page .card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.50));
}




.course-details-page .play-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #facc15;
    border: none;
    color: #0f172a;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
}

.course-details-page .course-card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.course-details-page .course-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.course-details-page .course-card-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.course-details-page .badge-offer,
.course-details-page .badge-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.course-details-page .badge-offer {
    background: #fee2e2;
    color: #b91c1c;
}

.course-details-page .badge-open {
    background: #dcfce7;
    color: #166534;
}

.course-details-page .course-card-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.course-details-page .price-current {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

.course-details-page .price-old {
    font-size: 14px;
    color: #64748b;
    text-decoration: line-through;
}

.course-details-page .course-card-subtitle {
    margin: 0;
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
}

.course-details-page .course-card-actions {
    display: grid;
    gap: 12px;
    /* grid-template-columns: 1fr 1fr; */
}


.btn-brochure{
    margin-top: 11px;
    border-radius: 5px;
    padding: 8px;
    text-decoration: none;
    font-weight: 600;
}

.course-details-page .btn-course-enroll,
.course-details-page .btn-course-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.course-details-page .btn-course-enroll {
    background: #b91c1c;
}

.course-details-page .btn-course-whatsapp {
    background: #10b981;
    gap: 8px;
}

.course-details-page .course-card-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 13px;
}

.course-details-page .course-card-note i {
    color: #0f172a;
    font-size: 14px;
}

@media (max-width: 768px) {
    .course-details-page .course-card-actions {
        grid-template-columns: 1fr;
    }
}


.mobile-enroll-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-enroll-price {
    display: flex;
    flex-direction: column;
    /* color: #fff; */
}

.mobile-enroll-price span {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.mobile-enroll-price small {
    color: rgba(16, 16, 16, 0.998);
    font-size: 12px;
}

.mobile-enroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c91a17;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    min-width: 40%;
    text-align: center;
}

.mobile-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    min-width: 40%;
    text-align: center;
}



.mobile-enroll-btn:hover {
    background: #a51412;
}


.mobile-whatsapp-btn:hover {
    background: #a51412;
}

.mobile-whatsapp-btn:hover {
    background: #128c7e;
}

.course-details-page .why-choose-section {
    background-color: var(--light-bg);
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: center;
}

.course-details-page .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.course-details-page .why-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.course-details-page .why-card:hover {
    transform: translateY(-5px);
}

.course-details-page .why-icon {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.course-details-page .why-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.course-details-page .why-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.course-details-page .modules-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.course-details-page .module-list-item {
    display: flex;
    gap: 20px;
    /*margin-bottom: 25px;*/
    align-items: flex-start;
}

.course-details-page .module-index {
    background: #e6f6ee;
    color: var(--accent-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.course-details-page .module-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.course-details-page .module-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.course-details-page .highlights-box {
    background-color: #f0fdf4;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #bbf7d0;
}

.course-details-page .highlights-box h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.course-details-page .highlights-box ul {
    list-style: none;
}

.course-details-page .highlights-box ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.course-details-page .highlights-box ul li i {
    color: var(--accent-green);
}

.course-details-page .help-banner {
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.course-details-page .help-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-details-page .help-left i {
    font-size: 32px;
    color: var(--primary-color);
}

.course-details-page .help-text h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.course-details-page .help-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.course-details-page .help-actions {
    display: flex;
    gap: 15px;
}

.course-details-page .btn-phone,
.course-details-page .btn-whatsapp {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-details-page .btn-phone {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.course-details-page .btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.course-details-page .attendees-section {
    text-align: center;
    margin-bottom: 60px;
}

.course-details-page .attendees-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.course-details-page .attendee-card {
    border-right: 1px solid var(--border-color);
    padding: 10px 20px;
}

.course-details-page .attendee-card:last-child {
    border-right: none;
}

.course-details-page .attendee-card i {
    font-size: 28px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.course-details-page .attendee-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.course-details-page .bottom-cta-banner {
    background: linear-gradient(rgba(1, 65, 34, 0.95), rgba(1, 65, 34, 0.95)), url('assets/cta-bg.jpg');
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.course-details-page .cta-left h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.course-details-page .cta-left p {
    color: #cbd5e1;
    font-size: 14px;
}

.course-details-page .cta-buttons {
    display: flex;
    gap: 15px;
}

.course-details-page .btn-primary-cta {
    background-color: var(--accent-green);
    color: #ffff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.course-details-page .btn-secondary-cta {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}


/* Mobile Optimization for Syllabus Section */
@media (max-width: 768px) {
    /* Stack the split grid layout vertically */
    .about-split-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .syllabus-main-card {
        padding: 15px;
        background: #ffffff;
        border-radius: 12px;
    }

    /* Accordion Item Container spacing */
    .module-accordion-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    /* Heading/Header Bar (Solid Green Theme from Image) */
    .module-bar {
        background: #0b6623 !important; /* Matches your green brand color */
        color: #ffffff !important;
        padding: 14px 16px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    /* Content Body Area */
    .module-body {
        background: #f8fafc; /* Ultra-light tint background */
        border-left: 1px solid #e2e8f0;
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    /* Inner List Content Layout */
    .module-content-list {
        padding: 20px 16px;
        color: #334155;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Paragraph description styling inside the accordion */
    .module-content-list p {
        margin-top: 0;
        margin-bottom: 16px;
        color: #64748b;
        font-size: 13.5px;
    }

    /* Clean up list spacing and alignment */
    .module-content-list ol, 
    .module-content-list ul {
        margin: 0;
        padding-left: 20px; /* Indents numbers cleanly */
        text-align: left;    /* Fixes layout break visible in the screenshot */
    }

    .module-content-list li {
        margin-bottom: 10px;
        font-weight: 700;    /* Matches the bold item text in your image */
        color: #1e293b;
    }
    
    .module-content-list li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .course-details-page {
        padding-bottom: 90px;
    }

    .mobile-enroll-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 14px 18px;
        background: #ffffff;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.18);
        z-index: 9999;
    }
    .course-details-page .quick-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-details-page .metric-item {
        padding: 15px 15px;
    }

    .course-details-page .about-split-grid {
        grid-template-columns: 4fr;
    }

    .course-details-page .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-details-page .modules-split-grid {
        grid-template-columns: 1fr;
    }

    .course-details-page .help-banner {
        flex-wrap: wrap;
    }

    .course-details-page .attendees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-details-page .bottom-cta-banner {
        flex-wrap: wrap;
    }

    .course-details-page .hero-features {
        flex-wrap: wrap;
    }
}





        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            overflow-x: hidden;
            background-color: #f8fafc;
        }

        /* --- Enquiry Hero Main Container --- */
        .enquiry-hero {
            position: relative;
            background-color: #041410;
            background: linear-gradient(to right, rgb(10 27 21 / 92%) 40%, rgb(4 20 16 / 40%) 100%), url('assets/course-bg.png');
            background-size: cover;
            background-position: center top;
            color: #ffffff;
            padding: 60px 0;
            overflow: hidden;
        }

        .course-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .course-hero-flex-layout {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        /* --- Left Side Content Styling --- */
        .course-hero-left-content {
            flex: 1.2;
        }

        .sub-heading-tag {
            color: #10b981;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }

        .course-hero-left-content h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .course-hero-description {
            font-size: 15px;
            color: #94a3b8;
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 40px;
        }

        /* --- Features Row --- */
        .features-row {
            display: flex;
            gap: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
        }

        .feature-inline-item {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .feature-inline-item i {
            font-size: 24px;
            color: #10b981;
            flex-shrink: 0;
        }

        .feature-inline-item span {
            font-size: 12px;
            color: #cbd5e1;
            line-height: 1.4;
            font-weight: 600;
        }

        /* --- Right Side Form Design --- */
        .course-hero-right-form {
            flex: 0.8;
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        .enquiry-card {
            background-color: #ffffff;
            color: #0f172a;
            width: 100%;
            max-width: 380px;
            border-radius: 10px;
            padding: 30px 24px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .enquiry-card h3 {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .title-underline {
            width: 30px;
            height: 3px;
            background-color: #036838;
            margin: 0 auto 25px auto;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 13px;
            color: #334155;
            background-color: #f8fafc;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #036838;
        }

        .btn-submit-enquiry {
            width: 100%;
            background-color: #036838;
            color: #ffffff;
            font-size: 13px;
            font-weight: 700;
            padding: 14px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 8px;
            transition: background-color 0.2s;
        }

        .btn-submit-enquiry:hover {
            background-color: #024d29;
        }

        .form-footer-note {
            font-size: 11px;
            color: #64748b;
            font-weight: 600;
            margin-top: 15px;
        }

        /* --- Benefits Section Styles --- */
        .benefits-section {
            background-color: #ffffff;
            padding: 40px 0;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .benefit-card {
            background-color: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .benefit-icon-circle {
            width: 50px;
            height: 50px;
            background-color: #f0fdf4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon-circle i {
            color: #036838;
            font-size: 20px;
        }

        .benefit-content h4 {
            font-size: 14px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
            margin: 0 0 4px 0;
        }

        .benefit-content p {
            font-size: 12px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* --- Popular Courses Layout --- */
        .popular-courses-section {
            background-color: #f8fafc;
            padding: 60px 0;
        }

        .courses-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .courses-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .courses-tag {
            color: #036838;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .courses-header h2 {
            font-size: 32px;
            color: #0f172a;
            font-weight: 800;
            margin-top: 8px;
        }

        .course-categories-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 35px;
        }

        .tab-btn {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 600;
            color: #475569;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tab-btn:hover {
            background-color: #f1f5f9;
        }

        .tab-btn.active {
            background-color: #036838;
            color: #ffffff;
            border-color: #036838;
        }

        .courses-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .course-card {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-4px);
        }

        .card-image-wrapper {
            /*height: 160px;*/
            position: relative;
            background-size: cover;
            background-position: center;
            width: 100%;
            background-color: #e2e8f0;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .badge-status {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 10px;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 4px;
            color: #ffffff;
            z-index: 2;
        }

        .badge-coming { background-color: #f59e0b; }

        .brand-logo-mini {
            position: absolute;
            bottom: -15px;
            left: 16px;
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 10px;
            font-weight: 900;
            color: #1e3a8a;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            z-index: 2;
            text-transform: uppercase;
        }

        .logo-iosh { color: #0284c7; }
        .logo-osha { color: #dc2626; font-size: 11px; }
        .logo-fire { color: #ea580c; font-size: 14px; }
        .logo-dip { color: #059669; font-size: 14px; }

        .card-body-content {
            padding: 25px 18px 20px 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-body-content h3 {
            font-size: 15px;
            color: #0f172a;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            min-height: 42px;
        }

        .card-desc {
            font-size: 12px;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 16px;
            min-height: 36px;
        }

        .card-meta-details {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card-meta-details p {
            font-size: 12px;
            color: #475569;
            display: flex;
            align-items: center;
            margin: 0;
        }

        .card-meta-details p i {
            color: #64748b;
            width: 20px;
            font-size: 12px;
        }

        .card-meta-details p span:nth-child(2) {
            width: 65px;
            font-weight: 600;
            color: #64748b;
        }

        .card-meta-details p span:last-child {
            font-weight: 600;
            color: #334155;
        }

        .card-action-btns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: auto;
        }
        
        .card-action-btns a,
        .card-action-btns button {
            padding: 10px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            text-align: center;
            display: inline-block;
            width: 100%;
        }

        .btn-secondary-view {
            background-color: transparent;
            color: #bd3131;
            border: 1px solid #bd3131;
        }

        .btn-secondary-view:hover {
            background-color: #bd3131;
            color: #ffffff;
        }

        .btn-primary-enroll {
            background-color: #036838;
            color: #ffffff;
            border: none;
        }

        .btn-primary-enroll:hover {
            background-color: #024d29;
        }

        .btn-coming-soon {
            background-color: #cbd5e1;
            color: #64748b;
            border: none;
            cursor: not-allowed !important;
        }

        /* --- Stats & Journey Base Framework --- */
        .custom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 5;
        }

        .stats-consultation-section {
            background-color: #ffffff;
            padding: 30px 0;
        }

        .stats-bar-wrapper {
            background-color: #031c14;
            border-radius: 8px;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .promo-column {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1.2;
        }

        .promo-icon i {
            color: #10b981;
            font-size: 32px;
            flex-shrink: 0;
        }

        .promo-text-content h4 {
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 4px 0;
        }

        .promo-text-content p {
            color: #94a3b8;
            font-size: 12px;
            margin: 0;
            max-width: 280px;
            line-height: 1.4;
        }

        .btn-talk-expert {
            background-color: #036838;
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 6px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s;
        }

        .btn-talk-expert:hover {
            background-color: #024d29;
        }

        .vertical-separator {
            width: 1px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
        }

        .metrics-grid-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1.8;
            gap: 15px;
        }

        .metric-counter-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metric-counter-item i {
            color: #10b981;
            font-size: 24px;
            flex-shrink: 0;
        }

        .metric-counter-item h3 {
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            line-height: 1.1;
        }

        .metric-counter-item p {
            color: #94a3b8;
            font-size: 12px;
            margin: 0;
            white-space: nowrap;
        }

        /* --- Global Journey Banner --- */
        .global-journey-banner {
            position: relative;
            background-color: #051a13;
            background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 0;
            overflow: hidden;
        }

        .banner-overlay-dark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(3, 23, 16, 0.95) 50%, rgba(4, 20, 15, 0.7) 100%);
            z-index: 1;
        }

        .banner-inner-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .journey-text-left {
            flex: 1.4;
        }

        .journey-text-left h2 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 10px 0;
            letter-spacing: -0.5px;
        }

        .journey-text-left p {
            color: #cbd5e1;
            font-size: 15px;
            margin: 0 0 30px 0;
        }

        .journey-buttons-group {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-action-call {
            background-color: #036838;
            color: #ffffff;
            padding: 10px 18px;
            border-radius: 6px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: background 0.2s;
        }

        .btn-action-call:hover {
            background-color: #024d29;
        }

        .btn-action-call i { font-size: 18px; }

        .btn-action-call div {
            display: flex;
            flex-direction: column;
        }

        .btn-action-call span {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .btn-action-call strong {
            font-size: 14px;
            font-weight: 700;
        }

        .btn-action-outline {
            border: 1px solid rgba(255, 255, 255, 0.4);
            background-color: transparent;
            color: #ffffff;
            padding: 14px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background 0.2s, border-color 0.2s;
        }

        .btn-action-outline:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: #ffffff;
        }

        /* --- JS Dynamic Utility Class --- */
        .course-card.is-hidden {
            display: none !important;
        }


        /* ==========================================
           DYNAMIC RESPONSIVE MEDIA QUERIES
        ========================================== */

        /* Laptop Viewports */
        @media (max-width: 1200px) {
            .course-hero-left-content h1 { font-size: 38px; }
            .courses-cards-grid { grid-template-columns: repeat(3, 1fr); }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* Tablet Viewports */
        @media (max-width: 992px) {
            .enquiry-hero { padding: 60px 0; }
            .course-hero-flex-layout {
                flex-direction: column;
                align-items: center;
                /*text-align: center;*/
                gap: 50px;
            }
            .course-hero-description { margin: 0 auto 35px auto; }
            .features-row { justify-content: center; }
            .course-hero-right-form { justify-content: center; }
            .enquiry-card { max-width: 480px; }
            
            .stats-bar-wrapper {
                flex-direction: column;
                align-items: stretch;
            }
            .promo-column {
                flex-direction: column;
                text-align: center;
            }
            
            .quick-metrics{
                grid-template-columns: repeat(2, 1fr);
            }
            
            .metric-item{
                    padding: 24px 15px;
            }
            .promo-text-content p { max-width: 100%; }
            .vertical-separator {
                width: 100%;
                height: 1px;
                margin: 10px 0;
            }
            .metrics-grid-row {
                justify-content: space-around;
                flex-wrap: wrap;
                gap: 25px;
            }

            .banner-inner-flex {
                flex-direction: column;
                text-align: center;
            }
            .journey-buttons-group { justify-content: center; }
        }

        /* Medium Mobile Viewports */
        @media (max-width: 768px) {
            .course-hero-left-content h1 { font-size: 32px; }
            .features-row { 
                align-items: stretch; gap: 15px; }
            .feature-inline-item { justify-content: center; text-align: left; }
            
            .benefits-grid { grid-template-columns: 1fr; }
            .courses-cards-grid { grid-template-columns: repeat(2, 1fr); }
            
            .quick-metrics{
                grid-template-columns: repeat(2, 1fr);
            }
            
            .metric-item{
                    padding: 24px 15px;
            }
            .course-categories-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                white-space: nowrap;
                flex-wrap: nowrap;
                padding-bottom: 8px;
                -webkit-overflow-scrolling: touch;
            }
            .tab-btn { flex-shrink: 0; }
            .card-image-wrapper { height: 180px; }
        }

        /* Small Mobile Viewports (Phones) */
        @media (max-width: 576px) {
            .course-hero-left-content h1 { font-size: 26px; }
            .enquiry-card { padding: 24px 16px; }
            .courses-header h2 { font-size: 24px; }
            .courses-cards-grid { grid-template-columns: 1fr; }
            
            .quick-metrics{
                grid-template-columns: repeat(2, 1fr);
            }
            
            .metric-item{
                    padding: 24px 15px;
            }
            
            .metrics-grid-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px 10px;
            }
            .metric-counter-item {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }

            .journey-text-left h2 { font-size: 24px; }
            .journey-buttons-group { flex-direction: column; align-items: stretch; }
            .btn-action-call, .btn-action-outline { justify-content: center; width: 100%; }
        }

        /* Tiny Screen Adjustment */
        @media (max-width: 380px) {
            .metrics-grid-row { grid-template-columns: 1fr; }
            .course-hero-left-content h1 { font-size: 22px; }
            .card-action-btns { grid-template-columns: 1fr; }
        }
   
