/* ==========================================================================
   Manyata Education - Premium Landing Page CSS
   Brand Color Palette: Orange (#ff6a1a), Black (#111111), White/Gray
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --color-primary: #ff6a1a;
    --color-primary-rgb: 255, 106, 26;
    --color-primary-dark: #e0530b;
    --color-primary-light: #fff0e6;
    --color-secondary: #111111;
    --color-secondary-light: #1e1e1e;
    --color-secondary-dark: #000000;

    /* Neutral Palette */
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f8fafc;
    --color-bg-gray-dark: #f1f5f9;
    --color-border: #e2e8f0;
    --color-border-hover: #cbd5e1;

    /* Typography */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadows & Border Radii */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
    --shadow-glow: 0 0 25px rgba(255, 106, 26, 0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Common Components & Helpers */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    display: inline-block;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8839 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Buttons styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
    padding: 16px 32px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 106, 26, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-bg-white);
    padding: 15px 30px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--color-bg-white);
    color: var(--color-secondary);
    border-color: var(--color-bg-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Nav scrolling dynamic effect */
.navbar-header.sticky {
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(12px);
    height: 75px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 60px;
    margin: 0;
    object-fit: contain;
    mix-blend-mode: screen;
    transition: var(--transition-smooth);
}

.navbar-header.sticky .brand-logo {
    height: 50px;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
}

.navbar-header.sticky .nav-item {
    color: rgba(255, 255, 255, 0.85);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

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

.nav-item.active {
    color: var(--color-primary);
}

.nav-item.active::after {
    width: 100%;
}

.nav-item:hover::after {
    width: 100%;
}

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

.btn-nav-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
    padding: 10px 20px;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(255, 106, 26, 0.2);
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 106, 26, 0.35);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-bg-white);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-content {
    width: 85%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--color-bg-white);
    font-size: 32px;
    cursor: pointer;
}

.mobile-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.mobile-logo img {
    height: 220px;
    margin: -75px 0;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-link {
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--color-bg-white);
    font-weight: 500;
}

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

.mobile-cta-btn {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-title);
    font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.85) 50%, rgba(255, 106, 26, 0.12) 100%), url('../img/hero_students.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    color: var(--color-bg-white);
    overflow: hidden;
}

/* Abstract decorations */
.bg-abstract-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 106, 26, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    pointer-events: none;
}

.bg-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    pointer-events: none;
}

.orb-1 {
    top: -100px;
    left: -100px;
    background-color: var(--color-primary);
}

.orb-2 {
    bottom: -150px;
    right: -100px;
    background-color: var(--color-primary-dark);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding-right: 20px;
}

.badge-container {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 106, 26, 0.15);
    border: 1px solid rgba(255, 106, 26, 0.3);
    color: #ff914d;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 106, 26, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 106, 26, 0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-bg-white);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    gap: 4px;
    transition: background 0.25s ease;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat:hover {
    background: rgba(255, 106, 26, 0.12);
}

.stat-value {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.3;
}

.hero-trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    color: var(--color-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.trust-point span {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-center-badge {
    position: absolute;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.hero-center-badge img {
    max-width: 150px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

/* Hero Right: Float Enquiry Card with glassmorphism styling */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.enquiry-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background-color: var(--color-bg-white);
    color: var(--color-secondary);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff914d 100%);
}

.form-title {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 400;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--color-text-light);
    font-size: 15px;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-secondary);
    transition: var(--transition-smooth);
    background-color: var(--color-bg-white);
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper input::placeholder {
    color: #b0bec5;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.12);
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 16px;
    color: var(--color-text-light);
    font-size: 13px;
    pointer-events: none;
}

.label-optional {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 12px;
}

.highlight-orange {
    color: var(--color-primary);
    font-weight: 600;
}

.privacy-note {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note i {
    color: #64748b;
    font-size: 11px;
}

.btn-form-submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
    padding: 16px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 106, 26, 0.2);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 106, 26, 0.35);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.seats-warning {
    font-size: 13px;
    color: #e11d48;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.trust-badge-mini {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-badge-mini i {
    color: #059669;
}

/* ==========================================================================
   About the Course Section
   ========================================================================== */
.about-course-section {
    background-color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.about-course-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

/* Left Column Styling */
.about-course-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.course-badge {
    display: inline-block;
    background-color: rgba(201, 162, 57, 0.1);
    color: #c9a239;
    border: 1px solid rgba(201, 162, 57, 0.2);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.course-badge:hover {
    background-color: rgba(201, 162, 57, 0.15);
    transform: translateY(-1px);
}

.course-title-main {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-secondary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.course-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.course-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.course-paragraph strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.highlighted-paragraph {
    font-size: 16.5px;
    color: var(--color-text-main);
    padding-left: 20px;
    border-left: 3px solid var(--color-primary);
}

.highlight-bold {
    font-weight: 700;
    color: var(--color-primary);
}

.course-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    width: 100%;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-main);
}

.bullet-icon {
    color: var(--color-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-item strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.course-actions {
    display: flex;
    gap: 16px;
}

/* Right Column: Visual Blueprint */
.about-course-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.blueprint-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 2;
}

.blueprint-glow-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 106, 26, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.blueprint-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blueprint-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c9a239 0%, var(--color-primary) 100%);
}

.blueprint-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 106, 26, 0.15);
}

.blueprint-card-header {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blueprint-card-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-secondary);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 106, 26, 0.08);
    color: var(--color-primary);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.blueprint-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.blueprint-step-card {
    background-color: var(--color-bg-gray);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--color-border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.blueprint-step-card:hover {
    background-color: var(--color-bg-white);
    border-color: var(--color-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.step-badge-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 106, 26, 0.2);
}

.step-content-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.step-content-box p {
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.blueprint-card-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.footer-stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-stat-box .stat-big {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.footer-stat-box .stat-desc {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Floating micro badge */
.floating-blueprint-badge {
    position: absolute;
    top: 30px;
    right: -25px;
    background-color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: none; /* Hidden on all views */
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    z-index: 3;
}

.floating-blueprint-badge:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.floating-blueprint-badge i {
    color: #c9a239;
    font-size: 20px;
}

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

.f-title {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-bg-white);
}

.f-sub {
    font-size: 10px;
    color: var(--color-text-light);
}

/* ==========================================================================
   Why Choose Manyata Section
   ========================================================================== */
.why-choose-section {
    background-color: var(--color-bg-gray);
}

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

.why-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    background-color: var(--color-bg-white);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 106, 26, 0.15);
}

.why-card:hover::after {
    width: 100%;
}

.why-card:hover .why-card-icon {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: 0 8px 20px rgba(255, 106, 26, 0.2);
}

.why-card-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.why-card-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.why-cta,
.section-cta-center {
    text-align: center;
    margin-top: 52px;
}

/* ==========================================================================
   Exam Structure Section
   ========================================================================== */
.exam-structure-section {
    background-color: var(--color-bg-gray);
    position: relative;
    overflow: hidden;
}

.exam-card-stack {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.exam-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.exam-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

@media (max-width: 991px) {
    .exam-row-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.exam-part-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--color-border);
    border-left: 5px solid #c9a239;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.exam-part-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 57, 0.3);
}

.part-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.part-pill {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.part-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.topics-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.topic-tag {
    background-color: rgba(201, 162, 57, 0.05);
    border: 1.5px solid rgba(201, 162, 57, 0.15);
    color: #94711e;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: default;
}

.topic-tag:hover {
    background-color: rgba(201, 162, 57, 0.1);
    border-color: rgba(201, 162, 57, 0.35);
    transform: translateY(-1px);
}

/* Exam Divider */
.exam-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.exam-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(201, 162, 57, 0.3);
    z-index: 1;
}

.divider-text {
    position: relative;
    background-color: var(--color-bg-gray);
    color: #94711e;
    border: 1.5px solid rgba(201, 162, 57, 0.4);
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    z-index: 2;
    text-transform: uppercase;
}

/* Promise Card */
.promise-card {
    background-color: rgba(5, 150, 105, 0.04);
    border-left: 4px solid #059669;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 28px 32px;
    transition: var(--transition-smooth);
}

.promise-card:hover {
    background-color: rgba(5, 150, 105, 0.06);
}

.promise-header {
    font-size: 16.5px;
    font-weight: 700;
    color: #047857;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promise-text {
    font-size: 14.5px;
    color: #065f46;
    line-height: 1.6;
}

/* ==========================================================================
   About CMA USA Section & Infographics
   ========================================================================== */
.about-cma-section {
    background-color: var(--color-bg-white);
}

.about-cma-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-cma-left .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-cma-left .section-badge {
    margin-bottom: 12px;
}

.about-cma-left .section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cma-infographic {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-indicator {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-body h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.info-body p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Right Side visual infographic card styles */
.about-cma-right {
    display: flex;
    justify-content: center;
}

.cma-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-finance-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    width: 90%;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-finance-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.spark-header {
    background-color: var(--color-bg-gray);
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    gap: 6px;
}

.spark-header div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background-color: #ef4444;
}

.dot-yellow {
    background-color: #eab308;
}

.dot-green {
    background-color: #22c55e;
}

.card-chart-content {
    padding: 24px;
}

.chart-tag {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.bar-chart-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 180px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.bar-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 25%;
}

.bar {
    width: 32px;
    background-color: var(--color-border-hover);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all 1s ease-out;
}

.accent-column .bar {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(255, 106, 26, 0.3);
}

.bar-lbl {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.font-bold {
    color: var(--color-secondary);
    font-weight: 700;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
}

.stat-highlight h3 {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 800;
}

.stat-highlight p {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.floating-badge {
    position: absolute;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: none; /* Hidden on all views */
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.floating-badge i {
    color: var(--color-primary);
    font-size: 16px;
}

.badge-top {
    top: 20px;
    right: -20px;
}

.badge-bottom {
    bottom: 20px;
    left: -20px;
}

.floating-badge:hover {
    transform: translateY(-3px);
}

/* ==========================================================================
   Career Outcomes Section
   ========================================================================== */
.career-outcomes-section {
    background-color: var(--color-bg-white);
}

.career-outcomes-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.career-outcomes-left .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.career-outcomes-left .section-badge {
    margin-bottom: 12px;
}

.career-outcomes-left .section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.career-outcomes-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: var(--color-bg-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: var(--transition-smooth);
}

.career-item:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.career-icon {
    min-width: 44px;
    height: 44px;
    background-color: var(--color-bg-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.career-item:hover .career-icon {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.career-body h4 {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.career-body span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

/* ==========================================================================
   Batch CTA Section
   ========================================================================== */
.batch-cta-section {
    background-color: #0d1b2e;
}

.batch-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.batch-cta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 5px 14px;
    border: 1px solid rgba(255, 107, 53, 0.35);
    border-radius: var(--radius-full);
}

.batch-cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.batch-cta-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.batch-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

.btn-batch-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background-color 0.25s, transform 0.2s;
}

.btn-batch-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-batch-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: background-color 0.25s, transform 0.2s;
}

.btn-batch-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

/* ==========================================================================
   Courses Offered
   ========================================================================== */
.courses-section {
    background-color: var(--color-bg-gray);
}

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

.course-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 106, 26, 0.12);
}

.course-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, 0.8) 100%);
    z-index: 1;
}

.course-level-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
}

.course-level-tag.highlight {
    background-color: var(--color-primary);
}

.course-level-tag.special {
    background-color: #0d9488;
}

.course-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.course-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--color-bg-gray-dark);
    padding-top: 16px;
    margin-bottom: 20px;
}

.course-meta span {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-course-learn {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-course-learn i {
    transition: var(--transition-smooth);
}

.course-card:hover .btn-course-learn i {
    transform: translateX(4px);
}

/* ==========================================================================
   Student Success Stories (Testimonials)
   ========================================================================== */
.testimonials-section {
    background-color: var(--color-bg-white);
}

.testimonials-owl {
    padding-bottom: 56px;
    position: relative;
}

/* Owl nav arrows */
.testimonials-owl .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1.5px solid var(--color-border) !important;
    box-shadow: var(--shadow-sm);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--color-text-main) !important;
    font-size: 14px !important;
}

.testimonials-owl .owl-nav button:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #ffffff !important;
}

.testimonials-owl .owl-nav button span {
    display: none;
}

.testimonials-owl .owl-nav .owl-prev {
    left: -22px;
}

.testimonials-owl .owl-nav .owl-next {
    right: -22px;
}

/* Owl dots */
.testimonials-owl .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonials-owl .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    display: block;
    transition: var(--transition-smooth);
    margin: 0;
}

.testimonials-owl .owl-dots .owl-dot.active span,
.testimonials-owl .owl-dots .owl-dot:hover span {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* Card needs full height within each owl item */
.testimonials-owl .owl-item {
    padding: 4px 0 8px;
}

/* Override Owl's default img { width:100% } which stretches avatars */
.testimonials-owl .owl-item img.student-avatar,
.testimonials-owl .owl-item .student-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-card {
    background-color: var(--color-bg-gray);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 106, 26, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.student-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.student-avatar-initials {
    background: linear-gradient(135deg, var(--color-primary), #c94a0a);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
}

.student-meta h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.placement-lbl {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.star-rating {
    display: flex;
    gap: 3px;
    color: #eab308;
    font-size: 12px;
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--color-text-main);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-footer-card {
    border-top: 1.5px dashed var(--color-border);
    padding-top: 18px;
    margin-top: auto;
}

.tag-achieved {
    font-size: 12px;
    color: #059669;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ecfdf5;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Classroom Experience Section (Gallery)
   ========================================================================== */
.classroom-experience-section {
    background-color: var(--color-bg-gray);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.gallery-item.size-large {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.9) 100%);
    opacity: 0.85;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay-text {
    color: var(--color-bg-white);
}

.overlay-text h3 {
    color: var(--color-bg-white);
    font-size: 20px;
    margin-bottom: 8px;
}

.overlay-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.95;
}

/* ==========================================================================
   CMA USA Journey Section
   ========================================================================== */
.journey-section {
    background-color: var(--color-bg-white);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.journey-left {
    position: sticky;
    top: 100px;
}

.journey-left .section-title {
    margin-top: 16px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.journey-right {
    display: flex;
    flex-direction: column;
}

.journey-step {
    display: grid;
    grid-template-columns: 48px 24px 1fr;
    gap: 0 16px;
    align-items: start;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a843, #b8860b);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.35);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-connector {
    width: 2px;
    background: linear-gradient(to bottom, #d4a843, rgba(212, 168, 67, 0.15));
    min-height: calc(100% + 32px);
    margin: 48px auto 0;
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
}

.journey-step.last .step-connector {
    display: none;
}

.step-body {
    padding-bottom: 40px;
    grid-column: 3;
    grid-row: 1;
}

.journey-step.last .step-body {
    padding-bottom: 0;
}

.step-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-body p {
    font-size: 0.93rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .journey-left {
        position: static;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faqs-section {
    background-color: var(--color-bg-white);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-trigger span {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-secondary);
    padding-right: 20px;
}

.faq-icon-holder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 1.5px solid var(--color-border);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.faq-trigger:hover .faq-icon-holder {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

/* Panel content accordion logic */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-panel-content {
    padding: 0 24px 24px 24px;
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.7;
    border-top: 1px solid transparent;
}

/* Active FAQ Item classes */
.faq-item.active {
    background-color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon-holder {
    transform: rotate(135deg);
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

.faq-item.active .faq-panel-content {
    border-color: var(--color-border);
}

/* ==========================================================================
   Final CTA Banner Section
   ========================================================================== */
.final-cta-section {
    background-color: var(--color-bg-white);
    padding: 40px 24px 80px 24px;
}

.cta-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 106, 26, 0.15);
}

.cta-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 106, 26, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-title {
    color: var(--color-bg-white);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

.btn-cta-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
    padding: 18px 40px;
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    border: none;
}

.btn-cta-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 106, 26, 0.4);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.footer-logo {
    height: 100px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.footer-about-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.footer-whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: translateY(-1px);
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    color: var(--color-bg-white);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    color: var(--color-primary);
    font-size: 15px;
    margin-top: 2px;
}

.contact-lbl {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-lbl a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    background-color: var(--color-secondary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   Responsive Grid Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-center-badge {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: -20px auto;
        display: flex;
        justify-content: center;
    }

    .hero-center-badge img {
        max-width: 120px;
    }

    .hero-left {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-trust-points {
        justify-content: center;
        max-width: 500px;
    }

    .hero-stats {
        max-width: 500px;
    }

    .stat-value {
        font-size: 20px;
    }

    .hero-right {
        justify-content: center;
    }

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

    .about-cma-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-cma-left {
        order: 1;
    }

    .about-cma-right {
        order: 2;
    }

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

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

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

    .journey-left {
        position: static;
    }

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

    .gallery-item.size-large {
        grid-column: span 1;
    }

    /* About Course Section 1024px */
    .about-course-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-course-left {
        align-items: center;
        text-align: center;
    }

    .course-badge {
        margin-bottom: 16px;
    }

    .course-title-main {
        font-size: 32px;
    }

    .highlighted-paragraph {
        border-left: none;
        border-top: 3px solid var(--color-primary);
        padding-left: 0;
        padding-top: 16px;
    }

    .course-bullets {
        align-items: center;
        max-width: 500px;
    }

    .bullet-item {
        text-align: left;
        width: 100%;
        justify-content: center;
    }

    .about-course-right {
        margin-top: 10px;
    }
}

/* ==========================================================================
   Floating Contact Buttons
   ========================================================================== */
.floating-contact-btns {
    position: fixed;
    right: 20px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.float-call {
    background-color: #1a73e8;
}

.float-whatsapp {
    background-color: #25d366;
}

@media (max-width: 480px) {
    .floating-contact-btns {
        right: 14px;
        bottom: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-container {
        padding: 52px 20px;
    }

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

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Hero */
    .hero-section {
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 52px;
    }

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

    .hero-subtitle {
        font-size: 15px;
    }

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

    .hero-stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stat:nth-child(even) {
        border-right: none;
    }

    .hero-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-value {
        font-size: 18px;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Why Manyata */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Career Outcomes */
    .career-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Our Programs */
    .courses-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-owl .owl-nav .owl-prev {
        left: -4px;
    }

    .testimonials-owl .owl-nav .owl-next {
        right: -4px;
    }

    /* Batch CTA */
    .batch-cta-title {
        font-size: 1.5rem;
    }

    .batch-cta-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-batch-primary,
    .btn-batch-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Journey Section */
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .journey-left {
        position: static;
    }

    .journey-step {
        grid-template-columns: 40px 16px 1fr;
        gap: 0 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-body {
        padding-bottom: 28px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Final CTA Banner */
    .cta-banner-container {
        padding: 52px 20px;
    }

    .cta-title {
        font-size: 26px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    /* Navigation */
    .nav-menu {
        display: none;
    }

    .btn-nav-cta {
        display: inline-flex;
        font-size: 13px;
        padding: 9px 16px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: none;
    }

    /* About Course Section */
    .course-title-main {
        font-size: 26px;
    }

    .blueprint-card {
        padding: 24px 16px;
    }

    .blueprint-step-card {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .floating-blueprint-badge,
    .floating-badge {
        display: none;
    }

    /* Exam Structure Section */
    .exam-part-card {
        padding: 24px 16px;
    }

    .part-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .part-title {
        font-size: 17px;
    }

    .topic-tag {
        font-size: 13px;
        padding: 6px 14px;
        flex-grow: 1;
        width: 100%;
        text-align: center;
    }

    .promise-card {
        padding: 18px 16px;
    }

    /* FAQ */
    .faq-trigger {
        padding: 18px 16px;
    }

    .faq-trigger span {
        font-size: 15px;
    }

    .faq-panel-content {
        padding: 0 16px 18px;
    }
}

/* ==========================================================================
   Enquiry Popup Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: relative;
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-inner {
    position: relative;
    padding: 36px 32px 28px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-bg-gray);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 15px;
    transition: var(--transition-smooth);
    z-index: 10;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.form-msg {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4px;
}

.form-msg.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-msg.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 480px) {
    .section-container {
        padding: 44px 16px;
    }

    .section-title {
        font-size: 23px;
    }

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

    .hero-stat {
        flex: 1 1 100%;
    }

    .stat-value {
        font-size: 20px;
    }

    .career-item {
        padding: 16px;
        gap: 12px;
    }

    .batch-cta-badge {
        font-size: 10px;
    }

    .batch-cta-title {
        font-size: 1.3rem;
    }

    .why-card {
        padding: 24px 16px;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .modal-inner {
        padding: 28px 16px 24px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .journey-step {
        grid-template-columns: 36px 14px 1fr;
        gap: 0 10px;
    }
}