/* ============================================
   VEP TECH ACADEMY - WEBINAR LANDING PAGE
   ✨ Premium Aurora Design - Surprise Edition ✨
============================================ */

/* CSS Variables */
:root {
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Professional Corporate Colors */
    --primary: #004b87;       /* Deep Corporate Blue */
    --primary-dark: #003366;  /* Navy */
    --primary-light: #0066cc; /* Link Blue */
    --secondary: #ff9d00;     /* Accentuating Orange/Yellow */
    --secondary-light: #ffb74d;
    --accent: #2e7d32;        /* Corporate Green/Success */
    --accent-light: #4caf50;

    /* Clean Solid Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, #f57c00 100%);
    --gradient-dark: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 75, 135, 0.1) 0%, rgba(0, 75, 135, 0.05) 100%);
    --gradient-blue-bright: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    --gradient-aurora: none; /* Disabled for corporate design */

    /* Background Colors - Clean White/Gray */
    --bg-primary: #ffffff;
    --bg-secondary: #f4f7f6; /* Very light cool gray */
    --bg-tertiary: #eef2f5;
    --bg-card: #ffffff;

    /* Text Colors - High Contrast */
    --text-primary: #111827;   /* Almost Black */
    --text-secondary: #4b5563; /* Dark Gray */
    --text-muted: #6b7280;     /* Medium Gray */

    /* Clean Borders (No glass effect) */
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-glow: transparent;

    /* Shadows - Structured and Professional */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 4px 14px 0 rgba(0, 75, 135, 0.25);
    --shadow-glow-cyan: none;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 100px) 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Border Radius - Structured */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;
}

/* Premium Dark Mode Variables */
body.dark-mode {
    --bg-primary: #020617;   /* Deep Midnight */
    --bg-secondary: #0f172a; /* Midnight Slate */
    --bg-tertiary: #1e293b;  /* Dark Slate */
    --bg-card: #0f172a;      /* Matching Slate for cards */

    --text-primary: #ffffff;   /* Pure White */
    --text-secondary: #e2e8f0; /* Brighter Soft Gray */
    --text-muted: #94a3b8;     /* Lighter Slate Gray */

    --glass-bg: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-glow: rgba(0, 75, 135, 0.2);

    --gradient-dark: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 75, 135, 0.3) 0%, rgba(0, 75, 135, 0.1) 100%);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);

    /* Navbar & Badge Brightness Fixes */
    .logo span {
        color: var(--text-primary);
    }
    
    .badge {
        background: rgba(96, 165, 250, 0.1);
        border-color: rgba(96, 165, 250, 0.3);
        color: #60a5fa;
    }

    .sticky-mobile-cta {
        background: rgba(15, 23, 42, 0.95);
        border-top-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    }

    .s-price { color: #ffffff; }
    .s-seats { color: #94a3b8; }
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

/* Navigation 
   - Solid Corporate Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-glow {
    background: var(--secondary);
    color: white;
}

.btn-glow:hover {
    background: var(--secondary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
}

/* Advanced Glass Component */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 10px 40px -10px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Hero Section Restructure */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-primary);
    overflow: hidden;
    text-align: center;
}

/* Corporate slanted background instead of mesh */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    z-index: 0;
}

.hero-container {
    display: block;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 75, 135, 0.08); /* Corporate Blue Tint */
    border: 1px solid rgba(0, 75, 135, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.badge i {
    font-size: 0.9rem;
}

/* Responsive typography with clamp */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: var(--gradient-blue-bright);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.seats-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d97706; /* Warning/Corporate orange */
    font-size: 0.9rem;
    font-weight: 600;
}

/* Redesigned Hero Layout - Cinematic Center */
.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-main {
    text-align: center;
    width: 100%;
}

.hero-main .badge {
    margin-bottom: 30px;
}

.hero-main .hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-main .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main .hero-cta {
    align-items: center;
    margin-bottom: 40px;
}

.hero-visual-card {
    position: relative;
    padding: 4px; /* For border gradient effect */
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius-lg);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-visual-inner {
    background: var(--bg-card);
    padding: 30px 40px;
    border-radius: calc(var(--radius-lg) - 4px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .hero-visual-inner {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        gap: 20px;
    }
}

.hero-visual-inner .countdown-wrapper h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0;
    white-space: nowrap;
}

.hero-visual-inner .countdown {
    display: flex;
    gap: 16px;
    width: auto;
    margin-bottom: 0;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-light);
    font-size: 1rem;
}

/* Removed old hero-visual - using centered layout now */
.hero-visual {
    display: none;
}

.hero-card {
    padding: 32px;
    max-width: 420px;
    width: 100%;
}

.countdown-wrapper h3 {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}

.countdown-item {
    text-align: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    min-width: 80px;
}

.countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 75, 135, 0.2);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.bonus-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(6, 182, 212, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.25);
    transition: all var(--transition-normal);
}

.bonus-preview:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.15);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.bonus-icon i {
    font-size: 1.3rem;
    color: white;
}

.bonus-info h4 {
    font-size: 0.8rem;
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.bonus-info p {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.bonus-value {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Remove legacy hero wave */
.hero-wave { display: none; }

.hero-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Audience Section (Who Can Attend) */
.audience-section {
    background: var(--bg-primary);
    position: relative;
    padding-top: 60px;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 24px;
}

.audience-card {
    padding: 32px 24px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 75, 135, 0.2);
    background: var(--bg-card);
}

.audience-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 75, 135, 0.08); /* Corporate Blue Tint */
    border-radius: var(--radius-md);
}

.audience-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Beginner-Friendly Roles Section */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.role-card {
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.role-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.role-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 75, 135, 0.2);
}

.role-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.role-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Daily Tasks Section */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.task-col {
    padding: 40px;
}

.tasks-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tasks-subtitle i {
    color: var(--primary-light);
}

.tasks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tasks-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.tasks-list li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.tools-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-tag {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
}

/* Roadmap Section */
.roadmap-wrapper {
    margin-top: 50px;
    padding: 40px;
}

.roadmap-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .roadmap-path {
        flex-direction: column;
        gap: 40px;
    }
    
    .roadmap-line {
        display: none; /* Hide horizontal line on mobile */
    }
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.roadmap-step.active .step-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.roadmap-line {
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    opacity: 0.3;
}

/* Why Section */
.why-section {
    background: var(--bg-secondary);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: rgba(0, 75, 135, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-tertiary); /* Ghost text */
    opacity: 0.8;
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

/* Curriculum Section */
.curriculum-section {
    background: var(--bg-primary);
    position: relative;
    padding-top: 80px;
}

.curriculum-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent);
}

.curriculum-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.curriculum-module {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.curriculum-module:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 75, 135, 0.2);
    background: var(--bg-card);
}

.highlight-module {
    border-color: rgba(0, 75, 135, 0.3);
    background: rgba(0, 75, 135, 0.02);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.module-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.highlight-module .module-icon {
    background: var(--gradient-accent);
}

.module-icon i {
    font-size: 1.3rem;
    color: white;
}

.module-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.module-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.module-list li {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.module-list li:last-child {
    border-bottom: none;
}

.module-list li i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 2px;
}

.highlight-module .module-list li i {
    color: var(--accent-light);
}

.module-list li div strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.module-list li div p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Tamil Language Badge */
.tamil-badge {
    background: rgba(46, 125, 50, 0.1) !important;
    border-color: rgba(46, 125, 50, 0.3) !important;
    color: var(--accent-light) !important;
    margin-left: 10px;
}

/* Rewards Section */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reward-card {
    padding: 45px 35px;
    text-align: center;
    position: relative;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    perspective: 1000px;
}

.reward-visual {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.certificate-visual img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #ffffff;
}

.reward-card:hover .reward-visual {
    transform: rotateY(15deg) rotateX(10deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
}

@media (max-width: 768px) {
    .reward-card:hover .reward-visual {
        transform: translateY(-5px);
    }
}

.certificate-visual {
    position: relative;
}

.certificate-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.1);
    pointer-events: none;
}

.reward-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.1);
    pointer-events: none;
}

/* Horizontal Reward Card (Desktop) */
@media (min-width: 992px) {
    .reward-card-horizontal {
        grid-column: span 2;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 40px;
        padding: 50px;
    }

    .reward-content-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .reward-card-horizontal .reward-visual {
        flex: 0 0 400px;
        margin-bottom: 0;
    }

    .reward-card-horizontal .reward-badge {
        margin-left: 0;
    }
}

/* Standalone Certificate Showcase */
.certificate-standalone {
    margin-top: 60px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.certificate-info {
    text-align: left;
}

.certificate-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.certificate-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.certificate-display-wrapper {
    perspective: 2000px;
}

.certificate-premium-frame {
    position: relative;
    border-radius: 12px;
    background: #ffffff;
    padding: 15px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(96, 165, 250, 0.2);
    transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1);
    transform-style: preserve-3d;
}

.premium-cert-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}

.certificate-standalone:hover .certificate-premium-frame {
    transform: rotateY(-15deg) rotateX(10deg) scale(1.05);
}

.quality-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 157, 0, 0.3);
    z-index: 10;
}

@media (max-width: 992px) {
    .certificate-standalone {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        text-align: center;
    }
    
    .certificate-info {
        text-align: center;
    }
    
    .certificate-info h3 {
        font-size: 1.6rem;
    }
}

.reward-card.highlight-card {
    border-color: rgba(255, 157, 0, 0.3);
    background: rgba(255, 157, 0, 0.02);
}

.reward-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.highlight-card .reward-icon {
    color: var(--secondary);
}

.reward-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.reward-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.reward-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-top: auto;
}

.reward-badge.featured {
    background: var(--gradient-accent);
    color: white;
}

/* Event Details & Registration Section */

.bonus-card-large {
    padding: 50px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 0;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
    }
    
    .bonus-value-tag {
        justify-content: center;
    }
}

.book-mockup {
    display: flex;
    justify-content: center;
}

.book-cover {
    width: 200px;
    height: 280px;
    background: var(--primary-dark);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: white;
    box-shadow: 10px 10px 30px rgba(0, 75, 135, 0.3);
    transform: perspective(500px) rotateY(-10deg);
    transition: transform var(--transition-fast);
}

.book-cover:hover {
    transform: perspective(500px) rotateY(-5deg);
}

.book-cover img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.book-cover h4 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
}

.bonus-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-right h3 {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.bonus-value-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.free-tag {
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}

.bonus-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.bonus-features li i {
    color: var(--accent);
}

/* Register Section */
.register-section {
    background: var(--bg-primary);
    position: relative;
}

/* Registration Section styling is simplified */
.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .register-wrapper {
        grid-template-columns: 1fr;
    }
}

.event-details {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.event-details h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.event-details h2 i {
    color: var(--primary-light);
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 75, 135, 0.03);
    border: 1px solid rgba(0, 75, 135, 0.1);
    border-radius: var(--radius-sm);
}

.detail-item.highlight {
    background: rgba(34, 197, 94, 0.08); /* Brighter Green */
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.detail-item.highlight .detail-icon {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

.detail-item.highlight .detail-icon i {
    color: #4ade80; /* Bright Green */
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.15); /* Brighter Cyan/Blue Background */
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.detail-icon i {
    font-size: 1.4rem;
    color: #38bdf8; /* Bright Cyan/Blue */
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-info label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-info span {
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-info .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.detail-info small {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA Trigger enhancements */
.cta-trigger {
    cursor: pointer;
}

/* Modal specific form spacing */
#registrationModal .modal {
    max-width: 480px;
}

#registrationModal .modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

#registrationModal .register-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

/* Registration Form */
.register-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.register-form h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.register-form>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    transition: all var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-progress-note {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.secure-note i {
    color: #22c55e;
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    position: relative;
    padding: 80px 0 30px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-contact p, .social-links {
        justify-content: center;
    }
}

.footer-brand img {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    border-radius: 16px;
    padding: 8px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--accent);
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.order-summary {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.order-summary h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.summary-item.bonus {
    color: var(--text-secondary);
}

.summary-item .free {
    color: #22c55e;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.attendee-info {
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.attendee-info p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.attendee-info p span:first-child {
    color: var(--text-muted);
}

.modal-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.modal-note i {
    color: #22c55e;
}

/* Animations */
.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slideIn {
    animation: slideIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-main {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-main .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-main .hero-cta {
        align-items: center;
    }

    .trust-bar {
        justify-content: center;
    }

    .curriculum-wrapper {
        grid-template-columns: 1fr;
    }

    .bonus-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bonus-right {
        order: -1;
    }

    .bonus-features {
        justify-content: center;
    }

    .bonus-value-tag {
        justify-content: center;
    }
}

/* ============================================
   Testimonial Section
============================================ */
.testimonial-section {
    background: var(--bg-tertiary);
    position: relative;
    padding-bottom: 120px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 75, 135, 0.4);
}

.card-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.1;
    pointer-events: none;
}

.stars {
    color: var(--secondary);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Instructor Bio Section
============================================ */
.instructor-section {
    background: var(--bg-primary);
    position: relative;
    padding-bottom: 140px;
}

.instructor-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Faded subtle background graphic */
.instructor-faded-bg {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.instructor-image-col {
    position: relative;
    z-index: 2;
}

/* Premium Circular Image Wrapper */
.instructor-image-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(0, 75, 135, 0.05); /* Soft outer navy ring */
}

.instructor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid #ffffff; /* Crisp inner border */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.instructor-image-wrap:hover .instructor-img {
    transform: scale(1.02);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glassmorphism Badge overlaying the image */
/* High-Prestige Floating Badge */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #020617 !important; /* Deep Midnight */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ff9d00; /* Gold/Orange Accent */
    z-index: 3;
}

.exp-years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.95;
    line-height: 1.3;
}

.instructor-content-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0; /* Removed heavy padding and box background */
}

.instructor-content-col .section-label {
    margin-bottom: 15px;
    background: rgba(0, 75, 135, 0.08); /* Corporate Blue Tint */
    color: var(--primary);
    border-color: rgba(0, 75, 135, 0.2);
}

.instructor-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.verified-badge {
    color: #ff9d00; /* Gold */
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 157, 0, 0.4));
}

.instructor-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructor-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.instructor-creds {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.instructor-creds li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
}

.instructor-creds li .icon-box {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.15); /* Soft premium green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.instructor-creds li .icon-box i {
    color: var(--accent);
    font-size: 0.9rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #0a66c2;
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.linkedin-btn:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* ============================================
   SVG Dividers
============================================ */
.custom-shape-divider-bottom-1718804018 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718804018 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.instructor-section .custom-shape-divider-bottom-1718804018 {
    transform: rotate(0deg);
}

.custom-shape-divider-bottom-1718804018 .shape-fill {
    fill: var(--bg-secondary);
}

/* ============================================
   Floating Elements (WhatsApp & Mobile CTA)
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* Sticky Mobile CTA Header */
.sticky-mobile-cta {
    display: none; /* Hidden on desktop */
}

/* Intermediate Breakpoint - Tablets & Large Mobiles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 160px 0 80px;
    }

    .hero-visual-inner {
        padding: 24px 30px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-visual-inner .countdown {
        justify-content: center;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculum-wrapper {
        grid-template-columns: 1fr;
    }

    .instructor-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .instructor-content-col {
        align-items: center;
    }

    .instructor-creds {
        align-items: flex-start;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .bonus-content {
        flex-direction: column;
        text-align: center;
    }

    .bonus-features {
        justify-content: center;
    }

    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .register-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* Instructor Mobile Adjustments */
    .instructor-wrapper {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .instructor-image-wrap {
        width: 260px;
        height: 260px;
    }
    
    .experience-badge {
        right: -5px;
        bottom: 10px;
        padding: 10px 15px;
    }
    
    .exp-years { font-size: 1.5rem; }
    
    .whatsapp-float {
        bottom: 90px; /* Above the sticky CTA */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    /* Target the Sticky CTA only below 900px */
    .sticky-mobile-cta {
        display: block;
        position: fixed;
        bottom: -100px; /* Hidden initially */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid var(--glass-border);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
        padding: 12px 20px;
        z-index: 999;
        transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--text-primary);
    }

    .sticky-mobile-cta.visible {
        bottom: 15px; /* Updated for floating design */
    }

    .sticky-cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }

    .sticky-price {
        display: flex;
        flex-direction: column;
    }

    .s-price {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--primary-dark);
        line-height: 1;
    }

    .s-seats {
        font-size: 0.75rem;
        color: #d97706;
        font-weight: 600;
        margin-top: 2px;
    }

    .btn-sticky {
        padding: 10px 24px;
        font-size: 1rem;
        white-space: nowrap;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Navigation */
    .navbar {
        padding: 12px 16px;
        width: 100%;
        top: 0;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    /* Compact Mobile Registration Modal */
    #registrationModal .modal {
        padding: 24px 20px;
        width: 95%;
        margin: 10px auto;
    }

    #registrationModal .modal-header h2 {
        font-size: 1.3rem;
    }

    #registrationModal .modal-header p {
        font-size: 0.8rem;
    }

    #registrationModal .register-form .form-group {
        margin-bottom: 12px;
    }

    #registrationModal .register-form label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    #registrationModal .register-form input,
    #registrationModal .register-form select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    #registrationModal .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .btn-nav {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 50px;
        min-height: auto;
    }

    .hero-layout {
        gap: 32px;
    }

    .hero-main .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-main .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-main .hero-cta {
        align-items: center;
        width: 100%;
    }

    .hero-main .trust-bar {
        margin-top: 35px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: left;
    }

    .hero-main .trust-item {
        justify-content: flex-start;
        font-size: 0.85rem;
    }

    .hero-main .trust-item:last-child {
        grid-column: span 2;
        justify-content: center;
        background: rgba(255, 157, 0, 0.05);
        padding: 8px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 157, 0, 0.1);
    }

    .countdown-wrapper h3 {
        font-size: 0.8rem;
    }

    /* Bonus preview in hero */
    .bonus-preview {
        padding: 14px;
        gap: 12px;
    }

    .bonus-icon {
        width: 40px;
        height: 40px;
    }

    .bonus-icon i {
        font-size: 1rem;
    }

    .bonus-info h4 {
        font-size: 0.7rem;
    }

    .bonus-info p {
        font-size: 0.85rem;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Audience Grid */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-card {
        padding: 24px 20px;
    }

    .audience-icon {
        width: 56px;
        height: 56px;
    }

    .audience-icon i {
        font-size: 1.4rem;
    }

    .audience-card h3 {
        font-size: 1.05rem;
    }

    .audience-card p {
        font-size: 0.85rem;
    }

    /* Why Cards */
    .why-card {
        padding: 20px;
        gap: 16px;
    }

    .why-number {
        font-size: 2rem;
    }

    .instructor-name {
        font-size: 2.2rem;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 10px;
    }

    .instructor-title {
        font-size: 1rem;
        text-align: center;
    }

    .why-content h3 {
        font-size: 1rem;
    }

    .why-content p {
        font-size: 0.85rem;
    }

    .why-icon {
        width: 40px;
        height: 40px;
    }

    /* Curriculum */
    .curriculum-module {
        padding: 24px;
    }

    .module-header h3 {
        font-size: 0.95rem;
    }

    .module-icon {
        width: 40px;
        height: 40px;
    }

    .module-icon i {
        font-size: 1rem;
    }

    .module-list li {
        padding: 12px 0;
        gap: 10px;
    }

    .module-list li div strong {
        font-size: 0.85rem;
    }

    .module-list li div p {
        font-size: 0.8rem;
    }

    /* Bonus Section */
    .bonus-card-large {
        padding: 30px 20px;
    }

    .bonus-badge {
        right: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .bonus-content {
        gap: 30px;
    }

    .bonus-right h2 {
        font-size: 1.3rem;
    }

    .bonus-right h3 {
        font-size: 1rem;
    }

    .book-cover {
        width: 140px;
        height: 190px;
    }

    .bonus-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bonus-features li {
        font-size: 0.85rem;
    }

    /* Registration Section */
    .event-details,
    .register-form {
        padding: 24px 20px;
    }

    .event-details h2,
    .register-form h2 {
        font-size: 1.2rem;
    }

    .detail-item {
        padding: 14px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
    }

    .detail-info label {
        font-size: 0.7rem;
    }

    .detail-info span {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-brand img {
        width: 50px;
        height: 50px;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-contact h4,
    .footer-social h4 {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    /* Modal */
    .modal {
        padding: 20px;
        margin: 16px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header img {
        width: 50px;
        height: 50px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .order-summary {
        padding: 16px;
    }

    .summary-item {
        font-size: 0.85rem;
    }

    .attendee-info {
        padding: 14px;
    }

    .attendee-info p {
        font-size: 0.8rem;
    }

    /* Hide logo text on mobile */
    .logo span {
        display: none;
    }

    /* Badge */
    .badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    /* Seats left */
    .seats-left {
        font-size: 0.8rem;
    }
}

/* Extra small screens (below 380px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .countdown-item span {
        font-size: 1.3rem;
    }

    .countdown-item label {
        font-size: 0.6rem;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .audience-card,
    .why-card,
    .curriculum-module {
        padding: 20px 16px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   MOBILE FLOW ANIMATIONS
============================================ */

/* Slide-in from left animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide-in from right animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating animation for icons */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Glow pulse animation */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Bounce animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

/* Mobile-specific animation classes */
.mobile-fade-up {
    animation: fadeUp 0.6s ease forwards;
}

.mobile-slide-left {
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-slide-right {
    animation: slideInRight 0.5s ease forwards;
}

.mobile-scale-in {
    animation: scaleIn 0.4s ease forwards;
}

/* Staggered animation delays for cards */
.audience-card:nth-child(1),
.why-card:nth-child(1),
.curriculum-module:nth-child(1) {
    animation-delay: 0.1s;
}

.audience-card:nth-child(2),
.why-card:nth-child(2),
.curriculum-module:nth-child(2) {
    animation-delay: 0.2s;
}

.audience-card:nth-child(3),
.why-card:nth-child(3),
.curriculum-module:nth-child(3) {
    animation-delay: 0.3s;
}

.audience-card:nth-child(4),
.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 900px) {
    /* Floating Header */
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius-md);
        border: 1px solid var(--glass-border);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    body.dark-mode .navbar {
        background: rgba(15, 23, 42, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    }

    /* Floating Sticky CTA */
    .sticky-mobile-cta {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1001; /* Above navbar if overlapping */
    }

    body.dark-mode .sticky-mobile-cta {
        background: rgba(30, 41, 59, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    }

    .sticky-mobile-cta.visible {
        bottom: 15px;
    }
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {

    /* Smooth content appearance */
    .hero-content>* {
        animation: fadeUp 0.6s ease forwards;
    }

    .hero-content .badge {
        animation-delay: 0.1s;
    }

    .hero-content .hero-title {
        animation-delay: 0.2s;
    }

    .hero-content .hero-subtitle {
        animation-delay: 0.3s;
    }

    .hero-content .hero-meta {
        animation-delay: 0.4s;
    }

    .hero-content .hero-cta {
        animation-delay: 0.5s;
    }

    /* Floating icons on mobile */
    .audience-icon,
    .module-icon,
    .why-icon,
    .bonus-icon,
    .detail-icon {
        animation: floatIcon 3s ease-in-out infinite;
    }

    /* Stagger floating animations */
    .audience-card:nth-child(1) .audience-icon {
        animation-delay: 0s;
    }

    .audience-card:nth-child(2) .audience-icon {
        animation-delay: 0.3s;
    }

    .audience-card:nth-child(3) .audience-icon {
        animation-delay: 0.6s;
    }

    .audience-card:nth-child(4) .audience-icon {
        animation-delay: 0.9s;
    }

    /* Card hover simulation on touch */
    .audience-card,
    .why-card,
    .curriculum-module {
        animation: fadeUp 0.5s ease forwards;
        opacity: 0;
    }

    /* Glowing CTA button */
    .btn-glow {
        animation: glowPulse 2s ease-in-out infinite;
    }

    /* Countdown number animation */
    .countdown-item span {
        animation: bounce 2s ease infinite;
    }

    .countdown-item:nth-child(1) span {
        animation-delay: 0s;
    }

    .countdown-item:nth-child(2) span {
        animation-delay: 0.1s;
    }

    .countdown-item:nth-child(3) span {
        animation-delay: 0.2s;
    }

    .countdown-item:nth-child(4) span {
        animation-delay: 0.3s;
    }

    /* Hero card float effect */
    .hero-card {
        animation: fadeUp 0.8s ease forwards, floatIcon 4s ease-in-out infinite 1s;
    }

    /* Smooth section transitions */
    .section-header {
        animation: fadeUp 0.5s ease forwards;
    }

    .section-label {
        animation: scaleIn 0.4s ease forwards;
    }

    /* Form input focus glow */
    .form-group input:focus,
    .form-group select:focus {
        animation: glowPulse 1.5s ease-in-out infinite;
    }

    /* Bonus badge shimmer */
    .bonus-badge {
        background: linear-gradient(90deg,
                var(--accent) 0%,
                var(--accent-light) 50%,
                var(--accent) 100%);
        background-size: 200% 100%;
        animation: shimmer 3s linear infinite;
    }

    /* Free tag animation */
    .free-tag {
        animation: glowPulse 2s ease-in-out infinite;
    }

    /* Book cover subtle float */
    .book-cover {
        animation: floatIcon 4s ease-in-out infinite;
        transform: perspective(500px) rotateY(0deg);
    }

    /* Meta items slide in */
    .meta-item {
        animation: slideInLeft 0.4s ease forwards;
    }

    .meta-item:nth-child(1) {
        animation-delay: 0.3s;
    }

    .meta-item:nth-child(2) {
        animation-delay: 0.4s;
    }

    .meta-item:nth-child(3) {
        animation-delay: 0.5s;
    }

    /* Detail items animation */
    .detail-item {
        animation: slideInLeft 0.4s ease forwards;
        opacity: 0;
    }

    .detail-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .detail-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .detail-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .detail-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    /* Active touch state */
    .btn:active {
        transform: scale(0.96);
        transition: transform 0.1s;
    }

    .audience-card:active,
    .why-card:active,
    .curriculum-module:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    /* Smooth scroll momentum */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Touch ripple effect */
    .btn {
        position: relative;
        overflow: hidden;
    }

    .btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
    }

    .btn:active::after {
        width: 200px;
        height: 200px;
    }
} /* Closing animation media query */

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
}

/* ============================================
   FAQ Section
============================================ */
.faq-section {
    background: var(--bg-secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 75, 135, 0.2), transparent);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(0, 75, 135, 0.25);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: rgba(0, 75, 135, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-light);
    background: rgba(0, 75, 135, 0.15);
}

.faq-item.active .faq-question {
    color: var(--primary-light);
    background: rgba(0, 75, 135, 0.2);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--primary-light);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.75;
    border-left: 3px solid var(--primary-light);
    padding-left: 16px;
}

.faq-answer ul {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 12px;
}

.faq-answer ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer ul li i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* FAQ Bottom CTA */
.faq-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Features Section Styling */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Small Mobile Screen Optimizations (iPhone SE, narrow Androids) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-main .hero-title {
        font-size: 2.1rem;
        word-break: break-word; /* Ensure extremely long words don't overflow */
    }

    .hero-main .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .trust-bar {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .trust-item {
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 10px;
        border-radius: var(--radius-sm);
        width: 100%;
        max-width: 260px;
    }

    .hero-visual-inner {
        padding: 20px 10px;
        gap: 15px;
    }

    .hero-visual-inner .countdown {
        gap: 8px;
        justify-content: center;
    }

    .countdown-item {
        padding: 8px 4px;
        min-width: 62px;
    }

    .countdown-item span {
        font-size: 1.3rem;
    }

    .countdown-item label {
        font-size: 0.6rem;
        margin-top: 2px;
    }

    /* Floating UI Adjustments for tiny screens */
    .navbar {
        left: 8px;
        right: 8px;
        width: calc(100% - 16px);
    }

    .sticky-mobile-cta {
        left: 8px;
        right: 8px;
        width: calc(100% - 16px);
        padding: 8px 12px;
    }

    .sticky-cta-content {
        gap: 10px;
    }

    .btn-sticky {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}