/* ===============================================
   EXPERT TRAINING ACADEMY - COMPLETE STYLES
   Design System Colors:
   Primary:   #F47B20 (Orange)
   Secondary: #1B4D89 (Blue)
   Tertiary:  #212121 (Dark)
   Neutral:   #F5F7F9 (Light Gray)
   =============================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F47B20;
    --primary-dark: #d96a15;
    --primary-light: #ff9a4d;
    --secondary: #1B4D89;
    --secondary-dark: #143a68;
    --secondary-light: #2a6bb5;
    --tertiary: #212121;
    --neutral: #F5F7F9;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--tertiary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 123, 32, 0.35);
}

.btn-outlined {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outlined:hover {
    background: var(--white);
    color: var(--tertiary);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--tertiary);
    color: var(--white);
    border-color: var(--tertiary);
}

.btn-dark:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-dark-alt {
    background: #2a2a2a;
    color: var(--white);
    border-color: #333;
}

.btn-dark-alt:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* ---------- SECTION TAGS & TITLES ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--tertiary);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 50px;
}

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

/* ============================
   HEADER / NAVBAR
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* very light border */
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.new-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.nav-logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.new-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-nav-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.new-nav-link:hover {
    color: var(--primary);
}

.new-nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.new-enrol-btn {
    padding: 8px 24px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 6px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #d85708);
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
}

.new-enrol-btn:hover {
    transform: scale(0.95);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--tertiary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    background: var(--tertiary);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    transform-origin: center bottom;
    opacity: 0;
    animation: heroSlide 12s linear infinite 0s;
}

.hero-slider .slide-1 {
    background-image: url('images/h1.jpg');
    animation-delay: 0s;
}

.hero-slider .slide-2 {
    background-image: url('images/h2.jpg');
    animation-delay: 4s;
}

.hero-slider .slide-3 {
    background-image: url('images/h3.jpg');
    background-position: center 80%;
    transform-origin: center 80%;
    animation-delay: 8s;
}

@keyframes heroSlide {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; transform: scale(1.02); }
    33% { opacity: 1; transform: scale(1.05); }
    43% { opacity: 0; transform: scale(1.07); }
    100% { opacity: 0; transform: scale(1.1); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.8) 40%, rgba(20, 20, 20, 0.2) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: block;
    width: 100%;
    max-width: 650px;
    padding: 100px 0 120px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    background: var(--primary);
    padding: 28px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================
   EXCELLENCE / ABOUT SECTION
   ============================ */
.excellence {
    padding: 100px 0;
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.excellence-images-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: auto;
}

.excellence-images-wrap .img-small,
.excellence-images-wrap .img-large {
    position: static;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: none;
}

.excellence-images-wrap .img-small {
    margin-top: 48px;
}

.experience-badge {
    position: absolute;
    right: -24px;
    bottom: -24px;
    background: var(--primary);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    text-align: center;
}

.exp-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: 1px;
}

.excellence-content .section-title {
    margin-top: 4px;
}

.excellence-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.core-values {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.value-text-wrap h4 {
    font-size: 1.05rem;
    color: var(--tertiary);
    margin-bottom: 6px;
    font-weight: 700;
}

.value-text-wrap p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================
   CERTIFICATIONS SECTION
   ============================ */
.certifications {
    padding: 100px 0;
    background: var(--neutral);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cert-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.cert-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cert-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cert-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--tertiary);
    margin-bottom: 8px;
}

.cert-org {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cert-badge {
    display: inline-block;
    background: rgba(244, 123, 32, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.cert-enroll-btn {
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: normal;
}

/* ============================
   FEATURES SECTION
   ============================ */
.features {
    padding: 100px 0;
    background: var(--tertiary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.feature-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}

.feature-card.featured:hover {
    background: var(--primary-dark);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.feature-card.featured .feature-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================
   PATH TO CERTIFICATION
   ============================ */
.path-section {
    padding: 100px 0;
    background: var(--white);
}

.path-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.path-step {
    text-align: center;
    flex: 1;
    max-width: 220px;
}

.path-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(244, 123, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.path-step:hover .path-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.path-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.path-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tertiary);
    margin-bottom: 8px;
}

.path-desc {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.path-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ============================
   TESTIMONIALS / SUCCESS STORIES
   ============================ */
.testimonials {
    padding: 100px 0;
    background: var(--neutral);
}

.custom-scroll {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 10px 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.custom-scroll::-webkit-scrollbar {
    height: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 6px;
}

.custom-review {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    color: var(--tertiary);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 16px;
    align-items: center;
}

.verified-tick {
    color: #1a73e8;
    font-size: 0.9rem;
    margin-left: 6px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--tertiary);
    line-height: 1.6;
    margin-bottom: 12px;
}




/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #e65c00);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-centered-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--tertiary);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-contact-list span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE - TABLET (768px)
   ============================ */
@media (max-width: 992px) {
    .hero-grid {
        padding: 60px 0 80px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .excellence-images-wrap {
        margin-bottom: 20px;
    }

    .excellence-images-wrap .img-small,
    .excellence-images-wrap .img-large {
        height: 280px;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid .feature-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .path-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .path-connector {
        display: none;
    }

    .path-step {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .custom-review {
        flex: 0 0 300px;
    }




    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2;
    }
}

/* ============================
   RESPONSIVE - MOBILE (768px)
   ============================ */
@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 14px;
    }

    /* Mobile Nav */
    .header-inner {
        height: 56px;
    }

    .nav-logo-text {
        font-size: 1.1rem;
    }

    .nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        transform: translateY(0);
    }

    .new-nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .new-nav-link {
        display: block;
        padding: 12px 14px;
        text-align: center;
        width: 100%;
        font-size: 0.85rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle span {
        width: 20px;
    }

    .header-actions .btn {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 56px;
        min-height: 80vh;
    }

    .hero-grid {
        padding: 40px 0 60px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 5px 12px;
        margin-bottom: 14px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-desc br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Stats Mobile */
    .stats-bar {
        padding: 16px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.58rem;
        margin-top: 2px;
    }

    /* Global section styles */
    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.78rem;
        margin-bottom: 28px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.8rem;
    }

    .btn-sm {
        padding: 7px 16px;
        font-size: 0.72rem;
    }

    /* Sections padding */
    .excellence,
    .certifications,
    .features,
    .path-section,
    .testimonials,
    .consultant-section {
        padding: 40px 0;
    }

    /* Excellence Mobile */
    .excellence-grid {
        gap: 36px;
    }

    .excellence-images-wrap .img-small,
    .excellence-images-wrap .img-large {
        height: 180px;
    }

    .excellence-images-wrap .img-small {
        margin-top: 24px;
    }

    .experience-badge {
        bottom: -15px;
        right: 5%;
        padding: 16px 20px;
        gap: 4px;
        min-width: 120px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .exp-text {
        font-size: 0.6rem;
    }

    .excellence-text {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }

    /* Cert Mobile */
    .cert-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cert-card {
        padding: 20px 14px;
    }

    .cert-logo {
        height: 64px;
        margin-bottom: 20px;
    }

    .cert-name {
        font-size: 0.82rem;
    }

    .cert-org {
        font-size: 0.68rem;
        margin-bottom: 10px;
    }

    .cert-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .features-grid .feature-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .feature-title {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 0.76rem;
    }

    /* Path Mobile */
    .path-grid {
        gap: 12px;
    }

    .path-step {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .path-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .path-number {
        font-size: 0.62rem;
        margin-bottom: 4px;
    }

    .path-title {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }

    .path-desc {
        font-size: 0.7rem;
    }

    /* Testimonial Mobile */
    .custom-scroll {
        gap: 16px;
    }

    .custom-review {
        flex: 0 0 280px;
        padding: 20px;
    }

    .review-text {
        font-size: 0.82rem;
    }

    .review-name {
        font-size: 0.85rem;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }



    /* CTA Mobile */
    .cta-banner {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .cta-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 36px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 30px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-desc {
        font-size: 0.76rem;
        margin-bottom: 16px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 0.76rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-contact-list span {
        font-size: 0.76rem;
    }

    .footer-contact-list i {
        font-size: 0.78rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 12px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .cert-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .path-step {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }

    .cta-title {
        font-size: 1.15rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}