/* ==============================
   WOW Student Workshop – Custom CSS
   Colors: #EEE1FC #7739C7 #EFAD2F #6B31D2
   ============================== */

:root {
    --purple: #7739C7;
    --purple-dark: #6B31D2;
    --gold: #EFAD2F;
    --lavender: #EEE1FC;
    --white: #FFFFFF;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--body-font);
    background: var(--lavender);
    color: #2d2d2d;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

img {
    max-width: 100%;
}

/* ---- 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: .5;
    }

    90% {
        opacity: .5;
    }

    100% {
        transform: translateY(-110vh) scale(.3);
        opacity: 0;
    }
}

/* ---- Navbar ---- */
.wow-navbar {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: .6rem 0;
    transition: all .35s ease;
    box-shadow: 0 2px 20px rgba(107, 49, 210, .25);
}

.wow-navbar.scrolled {
    padding: .35rem 0;
    background: rgba(107, 49, 210, .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, .85) !important;
    transition: color .2s;
    font-size: .92rem;
    padding: .5rem .8rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}
/* Old seat count */
.old-count {
    text-decoration: line-through;
    margin: 0 4px;
        font-size: 1.15rem;

}

/* New seat count highlight */
.new-count {
    font-weight: 800;
    color: #c1121f;  /* red highlight */
}
/* ======================================
   DEFAULT (Desktop)
====================================== */
/* ==============================
   Register Button Hover Effect
============================== */

/* Force style for Register button */
.navbar .btn-register-nav {
    background: linear-gradient(135deg, #EFAD2F, #f7c948) !important;
    color: #4b0082 !important;
    padding: 8px 22px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

/* Hover */
.navbar .btn-register-nav:hover,
.navbar .btn-register-nav:focus {
    background: #FFD700 !important;
    color: #4b0082 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}
/* ======================================
   Medium Screens (≤ 1200px)
====================================== */
@media (max-width: 1200px) {
    .btn-register-nav {
        padding: 6px 18px;
        font-size: 0.9rem;
    }
}

/* =====================================
   Fix Register Button in Mobile Menu
===================================== */

@media (max-width: 991px) {

    .navbar-nav {
        align-items: flex-start !important;
    }

    .btn-register-nav {
        display: inline-block !important;
        width: auto !important;          /* Prevent full width */
        padding: 6px 18px !important;    /* Smaller padding */
        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);
}

.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(119, 57, 199, .25);
        border-radius: 10px;
    }
}

.glass-form-card {
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(119, 57, 199, .12), 0 1.5px 4px rgba(0, 0, 0, .06);
}

.form-header-section {
    margin-bottom: 1.5rem;
}

.badge-limited {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #f7c948);
    color: var(--purple-dark);
    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;
}

.form-main-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--purple-dark);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--purple);
    font-weight: 600;
    font-size: .85rem;
    margin: 1.2rem 0 .8rem;
}

.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), transparent);
}

.custom-input {
    border-radius: 10px !important;
    border: 1.5px solid #ddd !important;
    padding: .6rem .9rem !important;
    font-size: .88rem !important;
    transition: all .25s;
    background: rgba(255, 255, 255, .8) !important;
}

.custom-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(239, 173, 47, .18) !important;
}

.form-label {
    font-size: .82rem;
    font-weight: 500;
    color: #555;
}

/* ---- Buttons ---- */
.btn-gold-cta {
    background: linear-gradient(135deg, var(--gold), #f7c948);
    color: var(--purple-dark);
    border: 2px solid var(--purple);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    padding: .75rem 1.5rem;
    transition: all .3s;
    animation: pulseGold 2s infinite;
}

.btn-gold-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 173, 47, .4);
    color: var(--purple-dark);
}

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 173, 47, .5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(239, 173, 47, 0);
    }
}

.btn-purple-cta {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    padding: .7rem 2rem;
    transition: all .3s;
}

.btn-purple-cta:hover {
    background: linear-gradient(135deg, var(--gold), #f7c948);
    color: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(119, 57, 199, .3);
}

/* =========================================
   FIX MOBILE + EMAIL BREAK ISSUE
   (991px – 1210px ONLY)
========================================= */

@media (min-width: 991px) and (max-width: 1542px) {

    /* Stack mobile + email properly */
    .contact-row .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Add proper spacing */
    .contact-row .col-sm-6 + .col-sm-6 {
        margin-top: 0.75rem;
    }

}
/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 50%, #4a1b9e 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: .08;
}

.hero-badge {
    display: inline-block;
    background: rgba(239, 173, 47, .2);
    border: 1px solid rgba(239, 173, 47, .4);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: .5rem;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold), #ffe066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    margin-bottom: .8rem;
}

.hero-tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: .6rem;
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.hero-img-wrapper {
    position: relative;
    display: inline-block;
}

.hero-img {
    border: 4px solid rgba(255, 255, 255, .15);
    transition: transform .5s;
}

.hero-img:hover {
    transform: scale(1.03);
}

.floating-chip {
    position: absolute;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: .78rem;
    padding: .4rem .9rem;
    border-radius: 50px;
    white-space: nowrap;
    animation: chipBounce 3s ease-in-out infinite;
}

.chip-1 {
    bottom: 15%;
    left: -10%;
    animation-delay: 0s;
}

.chip-2 {
    top: 10%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes chipBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.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;
    }
}

/* ---- Section Headings ---- */
.section-title {
    font-weight: 800;
    font-size: 2rem;
    color: var(--purple-dark);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    border-radius: 4px;
    margin-top: .5rem;
}

.section-wave {
    line-height: 0;
}

.section-wave svg {
    width: 100%;
    height: 50px;
}

/* ---- Benefit Cards (Glassmorphism) ---- */
.glass-benefit-card {
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(119, 57, 199, .08);
    transition: all .3s;
    height: 100%;
}

.glass-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(119, 57, 199, .18);
    border-color: var(--gold);
}

.glass-benefit-card h6 {
    font-weight: 700;
    color: var(--purple-dark);
    margin-top: .5rem;
    font-size: .95rem;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(119, 57, 199, .3);
}

/* ---- Course Cards ---- */
.course-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-left: 4px solid var(--purple);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: all .25s;
    font-weight: 500;
    color: var(--purple-dark);
    font-size: .92rem;
}

.course-card:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 18px rgba(119, 57, 199, .12);
    border-left-color: var(--gold);
}

.course-icon {
    font-size: 1.3rem;
    color: var(--purple);
    min-width: 28px;
    text-align: center;
}

.highlight-card {
    border-left-color: var(--gold);
    background: rgba(239, 173, 47, .08);
}

/* ---- Testimonials ---- */
.testimonial-slide {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.5rem;
}

.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;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    color: var(--purple);
    font-size: .88rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--purple);
    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(--purple) !important;
    opacity: .3;
}

.custom-indicators .active {
    opacity: 1 !important;
    background-color: var(--gold) !important;
}

/* Make indicators visible */
.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: var(--purple) !important;
    opacity: .3;
}

.carousel-indicators .active {
opacity: 1 !important;
    background-color: var(--gold) !important;
    
}
/* =====================================
   Video Thumbnail Carousel
===================================== */

/* =====================================
   Video Thumbnail Fixed Size
===================================== */

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;   /* Smaller width */
    aspect-ratio: 16/9; /* Perfect video ratio */
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Cover like real thumbnail */
    display: block;
}


.video-thumb-wrapper:hover .video-thumb-img {
    transform: scale(1.05);
}

/* =====================================
   MX Player Style Play Button
===================================== */
/* =====================================
   Clean White Circle Play Button
===================================== */

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 75px;
    height: 75px;
    border-radius: 50%;
    
    background: #6C32D2;   /* pure white circle */
    
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

/* Remove fontawesome icon styling */
.video-play-btn i {
    font-size: 28px;
    color: #7b2cbf;  /* purple play icon */
    margin-left: 4px; /* center align triangle visually */
}

/* Smooth zoom effect */
.video-thumb-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
}
.video-play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 22px solid #f9f7fa;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .video-thumb-wrapper {
        max-width: 100%;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* ---- 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(--purple-dark), var(--purple));
    padding: 3rem 0 1.5rem;
}

.social-icons {
    display: flex;
    gap: .6rem;
    justify-content: center;
}

@media(min-width:768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

.social-icons a {
    width: 38px;
    height: 38px;
    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;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--purple-dark);
    transform: translateY(-3px);
}

.text-gold {
    color: var(--gold) !important;
}

.footer-contact-item {
    color: rgba(255, 255, 255, .7);
    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, .7);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ---- 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: #22c55e;
    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 - Left Side
===================================== */

.scroll-top-btn-left {
    position: fixed;
    bottom: 25px;
    left: 25px;   /* LEFT SIDE */

    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;

    background: linear-gradient(135deg, #6D28D9, #5a15fa);
    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;
}

/* Show button */
.scroll-top-btn-left.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.scroll-top-btn-left:hover {
    background: linear-gradient(135deg, #FFD700, #f7c948);
    color: #4b0082;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}


/* Center card width */
.single-video-card {
    max-width: 500px;
    width: 100%;
}

/* Video height */
.video-thumb-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Mobile fix */
@media (max-width: 768px) {
    .single-video-card {
        max-width: 180%;
    }

    .video-thumb-img {
        height: 420px;
    }
}
