/* ==============================
   WOW Parent Workshop – Custom CSS
   Crimson / Gold / Pink Theme
   Modern & Premium Design
   ============================== */

:root {
    --green: #8a1e3e;
    /* Deep Crimson (Base) */
    --teal: #eb2581;
    /* Vibrant Pink */
    --light-green: #FACC15;
    /* Golden Yellow */
    --light-teal: #fa9fb6;
    /* Soft Pink */
    --pale-teal: #FFFFFF;
    /* Clean White */
    --pale-green: #F3F4F6;
    /* Soft Neutral */
    --white: #FFFFFF;
    --dark-text: #0F172A;
    /* Rich Navy Text */
    --light-bg: #F8FAFC;

    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    --purple: #2563EB;
    --purple-dark: #0B1E5B;
    --gold: #FACC15;
    --lavender: #F3F4F6;

    /* Extra design tokens */
    --crimson: #8a1e3e;
    --crimson-dark: #5e1229;
    --crimson-light: #b0284f;
    --pink-glow: rgba(235, 37, 129, 0.25);
    --gold-glow: rgba(250, 204, 21, 0.3);
}

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--body-font);
    background: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

img {
    max-width: 100%;
}

/* ---- Selection Color ---- */
::selection {
    background: var(--teal);
    color: #fff;
}

/* ---- Floating Particles ---- */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: .4;
    }

    90% {
        opacity: .4;
    }

    100% {
        transform: translateY(-110vh) scale(.3);
        opacity: 0;
    }
}

/* ---- Navbar ---- */
.wow-navbar {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--teal) 100%);
    padding: .6rem 0;
    transition: all .35s ease;
    box-shadow: 0 2px 30px rgba(138, 30, 62, 0.35);
}

.wow-navbar.scrolled {
    padding: .35rem 0;
    background: rgba(138, 30, 62, 0.97);
    backdrop-filter: blur(12px);
}

.brand-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    color: rgba(255, 255, 255, .9) !important;
    transition: color .2s, transform .2s;
    font-size: .92rem;
    padding: .5rem .8rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    transform: translateY(-1px);
}

/* Old/new seat count */
.old-count {
    text-decoration: line-through;
    margin: 0 4px;
        font-size: 1.15rem;

}

.new-count {
    font-weight: 800;
    color: var(--gold);
   
}



/* Register button in navbar */
.navbar .btn-register-nav {
    background: linear-gradient(135deg, var(--gold), #f59e0b) !important;
    color: var(--crimson-dark) !important;
    padding: 8px 22px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.navbar .btn-register-nav:hover,
.navbar .btn-register-nav:focus {
    background: linear-gradient(135deg, #fff, var(--gold)) !important;
    color: var(--crimson) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--gold-glow);
}

@media (max-width: 1200px) {
    .btn-register-nav {
        padding: 6px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        align-items: flex-start !important;
    }

    .btn-register-nav {
        display: inline-block !important;
        width: auto !important;
        padding: 6px 18px !important;
        font-size: 0.9rem !important;
        border-radius: 30px !important;
        margin-top: 8px;
    }
}

.brand-logo {
    object-fit: contain;
    transition: 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.08) rotate(5deg);
}

.brand-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 1rem;
    }
}

/* ---- Layout ---- */
.layout-row {
    min-height: 100vh;
    padding-top: 76px;
}

/* ---- Form Sidebar ---- */
.form-sidebar {
    padding: 1.2rem;
    position: relative;
    z-index: 2;
}

@media(min-width:992px) {
    .form-sidebar {
        position: sticky;
        top: 90px;
        height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 1.5rem;
    }

    .form-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .form-sidebar::-webkit-scrollbar-thumb {
        background: rgba(138, 30, 62, .25);
        border-radius: 10px;
    }
}

.glass-form-card {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 30, 62, .12);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow:
        0 8px 32px rgba(138, 30, 62, .12),
        0 1.5px 4px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.glass-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent,
            rgba(138, 30, 62, 0.03),
            transparent,
            rgba(250, 204, 21, 0.03),
            transparent);
    animation: formGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes formGlow {
    100% {
        transform: rotate(360deg);
    }
}

.form-header-section {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.badge-limited {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: .75rem;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--gold-glow);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(250, 204, 21, 0);
    }
}

.form-main-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--crimson);
    position: relative;
    z-index: 1;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--crimson);
    font-weight: 600;
    font-size: .85rem;
    margin: 1.2rem 0 .8rem;
    position: relative;
    z-index: 1;
}

.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--crimson), transparent);
}

.custom-input {
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    padding: .6rem .9rem !important;
    font-size: .88rem !important;
    transition: all .25s;
    background: #fff !important;
    color: var(--dark-text) !important;
    position: relative;
    z-index: 1;
}

.custom-input:focus {
    border-color: var(--crimson) !important;
    box-shadow: 0 0 0 3px rgba(138, 30, 62, .15) !important;
    background: #fff !important;
}

.form-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    z-index: 1;
}

/* ---- Buttons ---- */
.btn-gold-cta {
    background: linear-gradient(135deg, var(--crimson), var(--teal));
    color: #fff;
    border: 2px solid var(--crimson);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    padding: .75rem 1.5rem;
    transition: all .3s;
    animation: pulseCrimson 2s infinite;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gold-cta:hover::before {
    left: 100%;
}

.btn-gold-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(138, 30, 62, .4);
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--crimson));
}

@keyframes pulseCrimson {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(138, 30, 62, .45);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(138, 30, 62, 0);
    }
}

.btn-purple-cta {
    background: linear-gradient(135deg, var(--crimson), var(--teal));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    padding: .7rem 2rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.btn-purple-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-purple-cta:hover::before {
    left: 100%;
}

.btn-purple-cta:hover {
    background: linear-gradient(135deg, var(--gold), var(--light-teal));
    color: var(--crimson-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--pink-glow);
}

/* Mobile + Email break fix */
@media (min-width: 991px) and (max-width: 1542px) {
    .contact-row .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .contact-row .col-sm-6+.col-sm-6 {
        margin-top: 0.75rem;
    }
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 35%, var(--teal) 70%, #c026d3 100%);
    color: #fff;
    padding: 5rem 2rem 7rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('images/wow-main2.jpeg') center/cover no-repeat;
    opacity: .06;
    mix-blend-mode: overlay;
}

/* Animated geometric shapes in hero */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    right: -100px;
    animation: shapeFloat 12s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--teal);
    bottom: -50px;
    left: -50px;
    animation: shapeFloat 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #fff;
    top: 40%;
    left: 30%;
    animation: shapeFloat 10s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: var(--crimson-light);
    bottom: 20%;
    right: 20%;
    animation: shapeFloat 18s ease-in-out infinite reverse;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(-3deg);
    }

    75% {
        transform: translate(15px, 10px) rotate(2deg);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(250, 204, 21, .15);
    border: 1px solid rgba(250, 204, 21, .35);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: .5rem;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold), #fde68a, var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    margin-bottom: .8rem;
}

.hero-tagline {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: .6rem;
    text-shadow: 0 1px 10px rgba(250, 204, 21, 0.3);
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin-bottom: 1rem;
}

.hero-audience-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .88rem;
    font-weight: 500;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    margin-bottom: .5rem;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 1.2rem .8rem;
    text-align: center;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: .4rem;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: .3rem;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

@media(max-width:991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 1rem 6rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats-grid {
        gap: .7rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ---- Section Styling ---- */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(138, 30, 62, .08), rgba(235, 37, 129, .08));
    color: var(--crimson);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: .72rem;
    padding: .3rem .9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .6rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, .15);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, .2);
}

.section-title {
    font-weight: 800;
    font-size: 2rem;
    color: var(--crimson);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson), var(--teal));
    border-radius: 4px;
    margin-top: .5rem;
}

.title-underline-gold {
    background: linear-gradient(90deg, var(--gold), var(--light-teal));
}

.section-wave {
    line-height: 0;
}

.section-wave svg {
    width: 100%;
    height: 50px;
}

/* ---- Benefit Cards (Glassmorphism) ---- */
.glass-benefit-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(138, 30, 62, .08);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(138, 30, 62, .06);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--teal));
    transform: scaleX(0);
    transition: transform .35s ease;
}

.glass-benefit-card:hover::after {
    transform: scaleX(1);
}

.glass-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(138, 30, 62, .14);
    border-color: rgba(138, 30, 62, .15);
}

.glass-benefit-card h6 {
    font-weight: 700;
    color: var(--crimson);
    margin-top: .5rem;
    font-size: .95rem;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--crimson), var(--teal));
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 6px 18px rgba(138, 30, 62, .25);
    transition: transform .3s;
}

.glass-benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ---- Module Cards (Workshop Modules) ---- */
.module-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 30, 62, .08);
    border-left: 4px solid var(--crimson);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    font-weight: 500;
    color: var(--dark-text);
    font-size: .92rem;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 30, 62, .04), rgba(235, 37, 129, .04));
    transition: width .3s ease;
}

.module-card:hover::before {
    width: 100%;
}

.module-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(138, 30, 62, .12);
    border-left-color: var(--teal);
}

.module-number {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--teal);
    opacity: .3;
    min-width: 32px;
    position: relative;
    z-index: 1;
}

.module-content {
    display: flex;
    align-items: center;
    gap: .6rem;
    position: relative;
    z-index: 1;
}

.module-icon {
    font-size: 1.3rem;
    color: var(--teal);
    min-width: 28px;
    text-align: center;
}

.highlight-module {
    border-left-color: var(--gold);
    background: linear-gradient(135deg, rgba(250, 204, 21, .06), rgba(138, 30, 62, .04));
}

.highlight-module .module-number {
    color: var(--gold);
}

/* ---- Who Should Attend Section ---- */
.who-section {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(250, 204, 21, .08);
    animation: shapeFloat 15s ease-in-out infinite;
}

.who-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    color: #fff;
}

.who-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.who-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--crimson-dark);
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px var(--gold-glow);
    transition: transform .3s;
}

.who-card:hover .who-icon {
    transform: scale(1.15) rotate(10deg);
}

.who-card h5 {
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--gold);
}

.who-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

/* ---- Testimonials ---- */
.testimonial-slide {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.5rem;
}

.testimonial-avatar {
    margin-bottom: 1rem;
}

.testimonial-avatar i {
    font-size: 3.5rem;
    color: var(--crimson);
    opacity: .6;
}

.stars-row {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-slide blockquote {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(138, 30, 62, .04), rgba(250, 204, 21, .04));
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--crimson);
    position: relative;
}

.testimonial-slide blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--crimson);
    opacity: .15;
    line-height: 1;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    color: var(--crimson);
    font-size: .88rem;
}

.testimonial-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--crimson), var(--teal));
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: .25rem .7rem;
    border-radius: 50px;
    margin-top: .6rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--crimson);
    border-radius: 50%;
    padding: 1rem;
}

.custom-indicators {
    bottom: 0;
}

.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: var(--crimson) !important;
    opacity: .3;
}

.custom-indicators .active {
    opacity: 1 !important;
    background-color: var(--teal) !important;
}

/* ---- Video Thumbnail ---- */
.video-thumb-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16/9;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 8px 24px rgba(138, 30, 62, .15);
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.video-thumb-wrapper:hover .video-thumb-img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(138, 30, 62, 0.4);
    transition: transform 0.3s ease;
}

.video-play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

.video-thumb-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--teal);
}

@media (max-width: 768px) {
    .video-thumb-wrapper {
        max-width: 100%;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn::before {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        margin-left: 4px;
    }
}

/* ---- Footer ---- */
.wow-footer {
    position: relative;
}

.footer-wave-top {
    line-height: 0;
    margin-top: 3rem;
}

.footer-wave-top svg {
    width: 100%;
    height: 80px;
}

.footer-body {
    background: linear-gradient(180deg, var(--crimson), var(--crimson-dark));
    padding: 3rem 0 1.5rem;
}

.text-gold-accent {
    color: var(--gold) !important;
}

.social-icons {
    display: flex;
    gap: .6rem;
    justify-content: center;
}

@media(min-width:768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1rem;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, .15);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--crimson-dark);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.footer-contact-item {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
    margin-bottom: .4rem;
}

.footer-contact-item i {
    margin-right: .4rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: .35rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .88rem;
    transition: all .2s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* ---- Modal ---- */
.glass-modal {
    background: rgba(255, 255, 255, .85) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 20px !important;
    overflow: hidden;
}

.success-checkmark i {
    font-size: 4rem;
    color: var(--crimson);
    animation: popIn .5s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---- Utility ---- */
.mt-4 {
    margin-top: 1.5rem !important;
}

.z-2 {
    z-index: 2;
}

/* ---- Scroll To Top ---- */
.scroll-top-btn-left {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--crimson), var(--teal));
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(138, 30, 62, .3);
}

.scroll-top-btn-left.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn-left:hover {
    background: linear-gradient(135deg, var(--gold), var(--light-teal));
    color: var(--crimson-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

/* ---- Checkbox accent ---- */
.form-check-input:checked {
    background-color: var(--crimson);
    border-color: var(--crimson);
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(138, 30, 62, .2);
    border-color: var(--crimson);
}

/* ---- Form select dropdown arrow ---- */
.form-select.custom-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238a1e3e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

/* ---- Loading animation for page ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-tagline,
.hero-desc {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-tagline {
    animation-delay: 0.4s;
}

.hero-desc {
    animation-delay: 0.6s;
}


.package-option{
    position:relative;
    margin-bottom:15px;
}

.package-option input{
    display:none;
}

.package-card{
    display:block;
    border-radius:18px;
    padding:18px;
    cursor:pointer;
    color:#fff;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ₹99 Card */
.package-option:nth-child(2) .package-card{
    background:linear-gradient(135deg,#22c55e,#16a34a);
}

/* ₹499 Card */
.package-option:nth-child(3) .package-card{
    background:linear-gradient(135deg,#f59e0b,#f97316);
}

/* ₹999 Card */
.package-option:nth-child(4) .package-card{
    background:linear-gradient(135deg,#eb2581,#8a1e3e);
}

.package-card h6{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.package-card p{
    margin:0;
    font-size:13px;
    opacity:.95;
}

.package-card .price{
    font-size:32px;
    font-weight:800;
    margin-top:10px;
    color:#fff;
}

.package-badge{
    display:inline-block;
    padding:5px 12px;
    border-radius:30px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    font-size:11px;
    font-weight:700;
    margin-bottom:8px;
}

/* Selected Card */

.package-option input:checked + .package-card{
    transform:scale(1.03);
    border:3px solid #FACC15;
    box-shadow:
        0 0 0 4px rgba(250,204,21,.25),
        0 15px 35px rgba(0,0,0,.25);
}

/* Hover */

.package-card:hover{
    transform:translateY(-4px);
}

/* Mobile */

@media(max-width:576px){

    .package-card{
        padding:15px;
    }

    .package-card h6{
        font-size:16px;
    }

    .package-card .price{
        font-size:28px;
    }

}