:root {
    --font-main: 'Outfit', sans-serif;
    --color-text-dark: #1a1a1a;
    --color-text-light: #555;
    --color-primary: #4f46e5;
    /* Indigo */
    --color-accent: #f472b6;
    /* Pink */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.5);
    --max-width: 1200px;
}

/* --- URGENCEY BANNER --- */
.top-alert-banner {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

.top-alert-banner p {
    margin: 0;
}

.top-alert-banner strong {
    color: #eab811;
    text-transform: uppercase;
    animation: blinker 1s ease-in-out infinite alternate;
}

/* --- STICKY MOBILE CTA (REDESIGNED) --- */
.sticky-cta-mobile {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    /* Dark background as per image */
    padding: 12px 15px 20px 15px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    text-align: center;
}

.cta-upper-text {
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.blink-urgent {
    animation: simple-blink 0.8s ease-in-out infinite alternate;
}

@keyframes simple-blink {
    0% {
        opacity: 1;
        color: #000000;
    }

    50% {
        opacity: 0.5;
        color: #ffffff;
    }

    100% {
        opacity: 1;
        color: #000000;
    }
}

.text-orange {
    color: var(--color-primary);
    /* Vibrant Orange */
}

.btn-sticky-orange {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    /* Deep Orange */
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 10px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 800;
    transition: transform 0.2s, background 0.3s;
}

.btn-sticky-orange:hover {
    background: #4f46e5;
}

.sticky-btn-main {
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.2;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.8;
    margin-left: 6px;
    font-weight: 500;
}

.sticky-btn-sub {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: -0.2px;
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background: #f3f4f6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Gradients */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(120deg, #e0c3fc 0%, #fce7f3 50%, #fef3c7 100%);
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #a78bfa;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #f472b6;
    top: 20%;
    right: -100px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #fcd34d;
    bottom: -50px;
    left: 30%;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Added shadow for better visibility */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
}

.logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.blink-text {
    color: #ef4444;
    font-weight: 800;
    font-size: 0.7rem;
    margin-left: 6px;
    text-transform: uppercase;
    animation: blinker 1s ease-in-out infinite alternate;
    display: inline-block;
    vertical-align: middle;
    background: #fee2e2;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid #fecaca;
    line-height: normal;
}

@keyframes blinker {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 0.6rem 2rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    /* Increased to account for fixed navbar */
    padding-bottom: 5rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    z-index: 10;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    /* Increased for better spacing with highlight */
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    position: relative;
    display: inline-block;
    color: #ffffff !important;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #f472b6 100%);
    background-size: 200% auto;
    padding: 0.1rem 1.5rem;
    border-radius: 50px 10px 50px 10px;
    margin-left: 10px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    transform: rotate(-2deg);
    animation:
        highlight-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        highlight-gradient 4s linear infinite,
        highlight-bounce 3s ease-in-out infinite 0.8s;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    vertical-align: middle;
    cursor: default;
}

@keyframes highlight-entrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-2deg) translateY(0);
    }
}

@keyframes highlight-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes highlight-bounce {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

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

.highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: highlight-shine 4s infinite;
}

@keyframes highlight-shine {
    0% {
        left: -100%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.highlight:hover {
    transform: scale(1.1) rotate(0deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.5);
    filter: brightness(1.1);
}

.subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.hero-bullets i {
    color: #10b981;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    text-align: center;
}

.btn-subtext {
    font-size: 0.8rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5);
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.stars i {
    color: #fbbf24;
    /* Amber/Gold */
}

.trustpilot {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #333;
    font-weight: 600;
}

.trustpilot small {
    font-weight: 400;
    color: #666;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    /* Add a subtle glow behind the person */
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero-image img {
    max-width: 125%;
    height: auto;
    border-radius: 20px;
    /* Masking bottom to blend if needed, but the design shows a clean cut or behind the bar */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);

}

@media (max-width: 768px) {
    .hero-image img {
        max-width: 100%;
        height: auto;
        margin-bottom: -7rem;
    }
}

/* Featured In Bar */
.featured-in {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.5rem 0;
    position: relative;
    margin-top: -4rem;
    /* Overlap with hero image bottom */
    z-index: 20;
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    opacity: 0.7;
    animation: slide-right 30s linear infinite;
}

@keyframes slide-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-item {
    font-size: 1.5rem;
    color: #333;
    user-select: none;
}

/* Typography styles for logos */
.serif {
    font-family: 'Times New Roman', serif;
}

.serif-bold {
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.sans-bold {
    font-family: sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.sans-heavy {
    font-family: sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.serif-heavy {
    font-family: serif;
    font-weight: 900;
}

.small {
    font-size: 0.6em;
    display: block;
    text-align: right;
    line-height: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .modal-container {
        width: 95%;
        padding: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        /* Simple hiding for mobile for now */
    }

    .logo img {
        width: 140px;
    }

    .featured-in {
        margin-top: 0;
    }

    .logos-track {
        gap: 2rem;
    }
}

/* Book a Call Section - Premium Redesign */
.book-call-section {
    padding: 6rem 0;
    position: relative;
    z-index: 15;
    background: transparent;
}

.call-banner-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: 0;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.1),
        0 18px 36px -18px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.call-banner-premium:hover {
    transform: translateY(-5px);
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.15),
        0 25px 45px -18px rgba(0, 0, 0, 0.1);
}

.call-content-premium {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consult-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #eff6ff;
    color: #2563eb;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.call-content-premium h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #111;
}

.call-content-premium p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.vsl-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.v-benefit-item {
    display: flex;
    gap: 1.2rem;
}

.v-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--color-primary);
    border: 1px solid #f1f5f9;
}

.v-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.4rem;
}

.v-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

.call-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slots-left {
    font-size: 0.9rem;
    color: #ef4444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.call-visual-premium {
    position: relative;
    background: #f8fafc;
    display: flex;
    align-items: stretch;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-wrapper img,
.visual-wrapper video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.call-banner-premium:hover .visual-wrapper img,
.call-banner-premium:hover .visual-wrapper video {
    transform: scale(1.05);
}

.floating-stat {
    position: absolute;
    bottom: 3rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-stat i {
    color: #ef4444;
    font-size: 1.2rem;
}

/* Responsive Premium Section */
@media (max-width: 1024px) {
    .call-content-premium {
        padding: 3rem;
    }

    .call-content-premium h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .call-banner-premium {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .call-visual-premium {
        order: -1;
        height: auto;
        min-height: 300px;
        background: #000;
    }

    .visual-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .visual-wrapper video {
        object-fit: contain;
        height: auto !important;
        max-height: 400px;
    }

    .call-content-premium {
        padding: 2.5rem 2rem;
    }

    .vsl-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .call-content-premium h2 {
        font-size: 1.8rem;
    }

    .floating-stat {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .floating-stat i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .call-content-premium {
        padding: 2rem 1.5rem;
    }

    .call-content-premium h2 {
        font-size: 1.6rem;
    }

    .call-visual-premium {
        height: auto;
        min-height: 250px;
        background: #000;
    }

    .visual-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .visual-wrapper video {
        object-fit: contain;
        height: auto !important;
        max-height: 350px;
    }

    .floating-stat {
        bottom: 1.75rem;
        left: 27%;
        transform: translateX(-50%);
        padding: 0.5rem 0.9rem;
        font-size: 0.7rem;
        gap: 0.5rem;
        border-radius: 12px;
        white-space: nowrap;
    }

    .floating-stat i {
        font-size: 0.9rem;
    }

    .visual-wrapper img {
        object-position: top center;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.card-1 {
    bottom: 30px;
    right: -30px;
}

.card-1 i {
    color: #10b981;
    font-size: 1.2rem;
}

.section-badge {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111;
}

.highlight-text {
    background: linear-gradient(120deg, #4f46e5 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.body-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.2rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

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

    .about-image-container {
        margin: 0 1rem;
    }

    .card-1 {
        right: 0;
    }
}

/* Live Class Section */
.live-class-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    /* Deep Indigo */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Add a subtle glow to the background */
.live-class-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.live-class-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 114, 182, 0.2);
    color: #f472b6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 114, 182, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #f472b6;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(244, 114, 182, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0);
    }
}

.live-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, #f472b6, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.live-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.live-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-row i {
    color: #fbbf24;
    /* Gold */
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feature-row strong {
    display: block;
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.feature-row span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Offer Card */
.offer-card-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.offer-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(79, 70, 229, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}

.offer-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(79, 70, 229, 0.2);
}

.offer-badge-floating {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
    animation: float-badge 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float-badge {

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

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

.price-header {
    margin-bottom: 2.5rem;
}

.original-price {
    display: block;
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: #f43f5e;
    text-decoration-thickness: 2px;
}

.current-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.free-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(to bottom, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.price-suffix {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 600;
}

.offer-tag {
    display: inline-block;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.progress-container {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 10px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 10px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s linear infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }

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

.seats-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seats-count {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 600;
}

.filling-fast {
    font-size: 0.85rem;
    color: #f43f5e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secure-checkout-text {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-checkout-text i {
    color: #10b981;
}

.btn-glow {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
    border: none;
    position: relative;
    z-index: 1;
}

.btn-glow:hover {
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
}

.btn-glow {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4f46e5 0%, #f472b6 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5);
    background: linear-gradient(135deg, #4338ca 0%, #db2777 100%);
}

@media (max-width: 768px) {
    .live-class-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .live-features {
        grid-template-columns: 1fr;
    }

    .live-title {
        font-size: 2.2rem;
    }
}

/* Curriculum Section */
.curriculum-section {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.badge-pill {
    display: inline-block;
    background: #e0e7ff;
    color: var(--color-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.centered-subtext {
    margin: 0 auto 4rem auto;
    max-width: 600px;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.learn-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.learn-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.learn-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-1 {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-2 {
    background: #fce7f3;
    color: #ec4899;
}

.icon-3 {
    background: #fef3c7;
    color: #d97706;
}

.icon-4 {
    background: #dcfce7;
    color: #10b981;
}

.icon-5 {
    background: #fae8ff;
    color: #a855f7;
}

.icon-6 {
    background: #ffedd5;
    color: #f97316;
}

.learn-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.learn-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.check-icon {
    min-width: 50px;
    height: 50px;
    background: #e0e7ff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.benefit-list h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.benefit-list p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
    border-radius: 20px;
}

.feature-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        text-align: left;
        /* Keep left align for readability */
    }

    .why-image {
        order: -1;
        /* Show image first on mobile? Or last. Let's keep it last or first. Default is last. */
        margin-bottom: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #f3f4f6;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 calc(33.33% - 1.34rem);
    min-width: 0;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-slider-track {
        gap: 1.5rem;
    }
}

.testimonials-grid {
    /* Keep for inner card layout if needed, but cards are now inside slides */
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.slider-arrow {
    background: white;
    border: 2px solid #e2e8f0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #4b5563;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 10px;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: #111;
    margin-bottom: 0.2rem;
}

.reviewer-info .location {
    font-size: 0.8rem;
    color: #888;
}

.stars-small {
    margin-left: auto;
    color: #fbbf24;
    font-size: 0.8rem;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profit-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.community-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.community-img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.community-image-wrapper:hover .community-img {
    transform: scale(1.03);
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 3rem 2rem 2rem 2rem;
    color: white;
    text-align: center;
}

.overlay-text h3 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* Instagram Reels Section */
.instagram-reels-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.instagram-reels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
}

.reels-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.reels-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
    gap: 2rem;
}

.reel-slide {
    flex: 0 0 calc(33.33% - 1.34rem);
    min-width: 0;
}

.reel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.reel-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 aspect ratio */
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    overflow: hidden;
}

.reel-wrapper iframe {
    position: absolute;
    top: -45px;
    left: -50px;
    width: 138%;
    height: 112%;
    border: none;
}

.reel-touch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
    cursor: grab;
}

.reel-touch-layer:active {
    cursor: grabbing;
}

.reel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}

.reel-overlay i {
    font-size: 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Carousel Controls */
.reels-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.reels-arrow {
    background: white;
    border: 2px solid #e2e8f0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.reels-arrow:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 10px 15px rgba(79, 70, 229, 0.2);
}

.reels-dots {
    display: flex;
    gap: 0.8rem;
}

.reel-dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reel-dot.active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 10px;
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
}

/* Responsive Design for Instagram Carousel */
@media (max-width: 1024px) {
    .reel-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .instagram-reels-section {
        padding: 4rem 0;
    }

    .reels-track {
        gap: 1.5rem;
    }

    .reel-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .reel-wrapper {
        padding-bottom: 150%;
    }

    .reels-controls {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .instagram-reels-section {
        padding: 3rem 0;
    }

    .reels-track {
        gap: 1.5rem;
    }

    .reel-slide {
        flex: 0 0 100%;
    }

    .reel-wrapper {
        padding-bottom: 180%;
        /* Increased height to show full reel on mobile */
    }

    .reels-carousel-container {
        padding: 0 1.5rem;
    }

    .reel-overlay {
        width: 50px;
        height: 50px;
    }

    .reel-overlay i {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
}

.faq-question:hover h3 {
    color: var(--color-primary);
}

.faq-question i {
    color: #888;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 3rem 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #111;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
    appearance: none;
    /* Removes default browser arrow */
    background-color: white;
}

.input-wrapper select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%239ca3af%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65em auto;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Mobile Responsive Styles for Modals */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
        align-items: flex-start;
        overflow-y: auto;
    }

    .modal-container {
        width: 95%;
        max-width: 100%;
        padding: 1.5rem;
        margin: 2rem auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .modal-header p {
        font-size: 0.85rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .input-wrapper input,
    .input-wrapper select {
        padding: 0.7rem 1rem 0.7rem 2.5rem;
        font-size: 0.9rem;
    }

    .input-wrapper i {
        left: 12px;
        font-size: 0.9rem;
    }

    .btn-block {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .privacy-note {
        font-size: 0.75rem;
        margin-top: 1rem;
    }

    /* Success message adjustments */
    .success-message i {
        font-size: 3rem !important;
    }

    .success-message h3 {
        font-size: 1.3rem !important;
    }

    .success-message p {
        font-size: 0.9rem !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Detailed Footer Styles */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 230px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.contact-list i {
    color: var(--color-primary);
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-logo img {
        width: 180px;
        margin: 0 auto;
        /* Center align on mobile since text-align is center */
    }
}

/* --- Comprehensive Mobile Overrides --- */
@media (max-width: 768px) {

    /* Global Container Adjustment */
    .container {
        padding: 0 1.5rem;
        /* Slight padding reduction */
    }

    /* Hero Typography Fixes */
    h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .subtext {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Featured In / Logos Grid Fixes */
    .featured-in {
        padding: 2rem 0;
    }

    .logos-track {
        gap: 2rem;
        display: flex;
    }

    .logo-item {
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
    }

    /* About Section Positioning Fixes */
    .about-image-container {
        margin: 2rem 0 2rem 10px;
        /* Left margin ensures badge space */
    }

    .experience-badge {
        left: -10px;
        /* Closer to image */
        top: -10px;
        padding: 1rem;
        font-size: 0.8rem;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .floating-card {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        right: 0;
        bottom: 10px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* General Image Safety */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure no horizontal scroll globally */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 4rem 0;
}

.contact-content {
    padding-bottom: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card {
    background: #1e1b4b;
    /* Deep Indigo */
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.icon-circle {
    width: 45px;
    height: 45px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #f472b6;
    /* Pink */
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.info-item small {
    display: block;
    color: #94a3b8;
    margin-top: 0.2rem;
}

.social-connect h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--color-primary);
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-card label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Instructor Page Styles */
.instructor-hero {
    padding: 6rem 0 4rem 0;
}

.journey-section {
    padding: 1rem 0;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.journey-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.journey-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.journey-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.achievements-section {
    padding: 5rem 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.achievement-card .icon-box {
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}

.achievement-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.achievement-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
}

.mission-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #a5b4fc;
}

.mission-text {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.cta-section {
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.cta-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

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

    .mission-text {
        font-size: 1.2rem;
    }
}

/* Mobile Navigation & Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    z-index: 1001;
    margin-left: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger.active {
    transform: rotate(90deg);
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    /* Push the button to the right */
    .btn-login {
        margin-left: auto;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .nav-links {
        display: flex !important;
        /* Override display: none */
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        /* Full width for a more premium feel */
        max-width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        /* Smooth easing */
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Larger font for mobile menu */
        color: #1f2937;
        font-weight: 600;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Staggered animation for links */
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active a:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links.active a:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-container {
        padding: 0 1.5rem;
    }
}

/* Contact Page Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem 0;
    }

    .contact-content {
        padding-bottom: 4rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-card h3 {
        font-size: 1.5rem;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    font-size: 32px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-widget a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .top-alert-banner {
        display: none;
    }

    .sticky-cta-mobile {
        display: block;
    }

    body.has-sticky-cta {
        padding-bottom: 80px;
        /* Space for sticky bar */
    }

    .navbar {
        top: 0 !important;
        /* Force no offset on mobile */
    }

    .btn-login {
        display: none;
        /* Hide Enroll Now button in nav on mobile */
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        border-radius: 50px;
    }

    .btn-subtext {
        font-size: 0.70rem;
        margin-top: 0.4rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        /* Reset grid */
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
        /* Content first */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: 2;
        /* Image second */
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero .subtext {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-bullets {
        align-items: flex-start;
        /* Keep bullets left-aligned relative to themselves */
        display: inline-flex;
        /* Shrink to fit content */
        margin: 0 auto 2rem auto;
        /* Center the block */
        text-align: left;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .cta-group {
        gap: 1rem;
    }

    .rating-box {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        padding-top: 6rem !important;
    }

    .whatsapp-widget {
        bottom: 100px;
        right: 20px;
    }

    .whatsapp-widget a {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    /* Hide sticky CTA when modal is open */
    body:has(.modal-overlay.active) .sticky-cta-mobile,
    body.modal-open .sticky-cta-mobile {
        display: none !important;
    }
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    padding: 8rem 0;
    position: relative;
    /* background: #0a0a0b; */
    overflow: hidden;
}

.final-cta-container {
    position: relative;
    z-index: 2;
}

.cta-card {
    background: rgba(255, 255, 255, 0.482);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.5), transparent, rgba(244, 114, 182, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-badge {
    background: rgba(79, 70, 229, 0.1);
    color: #818cf8;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-card h2 {
    font-size: 3.5rem;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-card p {
    font-size: 1.25rem;
    color: #646464;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.cta-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-xl {
    padding: 1.2rem 3.5rem;
    font-size: 1.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #f472b6 100%);
    background-size: 200% auto;
    color: white;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-glow 3s infinite;
}

.btn-xl:hover {
    transform: translateY(-5px) scale(1.05);
    background-position: right center;
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.6);
}

.cta-trust-text {
    color: #71717a;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-trust-text i {
    color: #10b981;
}

/* Moving Background Elements */
.cta-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.4;
}

.glow-1 {
    background: #4f46e5;
    top: -20%;
    left: -10%;
    animation: float-glow 20s infinite alternate;
}

.glow-2 {
    background: #f472b6;
    bottom: -20%;
    right: -10%;
    animation: float-glow 25s infinite alternate-reverse;
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
    }

    50% {
        box-shadow: 0 20px 70px rgba(124, 58, 237, 0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-card {
        padding: 4rem 1.5rem;
        border-radius: 24px;
    }

    .cta-card h2 {
        font-size: 2.2rem;
    }

    .cta-card p {
        font-size: 1.1rem;
    }

    .btn-xl {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}