@import url("./global.css");
@import url("./media.css");

/* Hide scrollbar completely */

*:focus {
    outline: none;
    box-shadow: none;
}



html::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

::selection {
    background-color: #ffdd00;
    color: #000000;
    /* Text color when selected */
}

::-moz-selection {
    background-color: #ffdd00;
    color: #000000;
}

::-webkit-selection {
    background-color: #ffdd00;
    color: #000000;
}

/* Navigation Styling */
body {
    font-family: 'Figtree', sans-serif;
}

/* Active Navigation Link Styling */
.nav-link.active {
    color: #FF3366 !important;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF3366;
    border-radius: 2px;
}

/* Navigation Styling */
.navbar {
    font-family: 'Poppins-medium', sans-serif;
}

.navbar a:focus,
.navbar a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-brand img {
    height: 50px;
    /* Reduced from 60px */
}

.nav-link {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    /* Uses Figtree SemiBold */
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link.active {
    color: #000;
    font-weight: 700;
    /* Uses Figtree Bold */
}


/* Hero Banner Section */
.hero-banner {
    background: #fffde6 url('../images/banner-background-img.webp') no-repeat center;
    background-position: top;
    background-size: 100% auto;
    position: relative;
    width: 100%;
    height: 107vh;

}

/* Decorative Leaves */
.decorative-leaf {
    position: absolute;
    z-index: 10;
}

.left-leaf {
    top: 0;
    left: 0;
    width: 175px;
    height: auto;
}

.right-leaf {
    top: 0;
    right: 0;
    width: 175px;
    height: auto;
}



.banner-bottom-wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.bottom-wave-svg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 150px;
}


/* registration button with flowers */
.register-button-wrapper {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.register-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    /* Width Control */
    width: auto;
    min-width: 320px;
    max-width: 100%;
    
    /* Button Styling */
    background: linear-gradient(135deg, #FF4081 0%, #FF6B9D 100%);
    border: 4px solid #FFD700;
    border-radius: 50px;
    padding: 18px 40px;
    
    /* Text */
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    
    /* Effects */
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4),
                inset 0 -3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Button Text Container */
.button-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

/* Desktop Text - Show by default */
.desktop-text {
    display: inline;
    white-space: nowrap;
}

/* Mobile Text - Hidden by default */
.mobile-text {
    display: none;
    text-align: center;
    line-height: 1.3;
}

/* Button Hover Effects */
.register-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.5),
                inset 0 -3px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
}

.register-button:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
}

/* Button Flowers */
.button-flower {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    animation: rotateFlower 3s ease-in-out infinite;
}

.button-flower-left {
    animation-delay: 0s;
}

.button-flower-right {
    animation-delay: 1.5s;
}

/* Flower Rotation Animation */
@keyframes rotateFlower {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* Button Pulse Animation */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 64, 129, 0.6);
    }
}

.register-button {
    animation: buttonPulse 2s ease-in-out infinite;
}

/* festival section */

/* About Festival Section */
/* About Festival Section */
/* About Festival Section */
.about-festival {
    padding: 80px 0;
    background-color: #FFF5F9;
    position: relative;
}

/* Decorative Flower at Top */
.decorative-flower-top {
    margin-bottom: 40px;
}

.decorative-flower-top img {
    width: 130px;
    height: auto;
}

/* Left Side - Illustration Image */
.about-image {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 470px;
}

/* Right Side - Content */
.about-content {
    padding-left: 60px;
}

.decorative-icon {
    padding-top: 20px;
}

.decorative-icon img {
    width: 250px;
    height: auto;
}

/* Title Styling */
.about-title {
    font-family: 'Playfair-extrabold', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-pink {
    color: #E91E63;
}

.title-black {
    color: #000;
}

/* Description */
.about-description {
    font-family: 'figtree', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* about parul university section */

/* About Parul University Section */
.about-parul {
    background-color: #FFF5F9;
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Section Divider at Top */
.section-divider-top {
    text-align: center;
    margin-bottom: 40px;
}

.divider-line {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Decorative Flowers */
.decorative-flowers {
    position: relative;
    width: 100%;
    height: 0;
}

.flower-1 {
    position: absolute;
    top: -31px;
    right: 22%;
    width: 68px;
    height: auto;
    z-index: 2;
}

.flower-2 {
    position: absolute;
    top: 80px;
    right: 11%;
    width: 93px;
    height: auto;
    z-index: 2;
}

/* Pillars */
.pillar {
    position: absolute;
    height: auto;
    width: auto;
    z-index: 1;
}

.pillar-left {
    left: 0;
    top: 200px;
}

.pillar-right {
    right: 0;
    top: 200px;
}

/* Content */
.about-parul-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
    z-index: 3;
}

.parul-heading {
    font-family: 'Playfair-extrabold', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.heading-black {
    color: #000;
}

.heading-pink {
    color: #E91E63;
}

.parul-description {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Bottom Building Image */
.parul-building {
    margin-top: 60px;
    text-align: center;
    width: 100%;
}

.parul-building img {
    width: 94%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}



/* about iimun */

/* About IIMUN Section */
.about-iimun {
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFEF5 100%);
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Quote Vectors */
.quote-left {
    position: absolute;
    top: 100px;
    left: 13%;
    width: 120px;
    height: auto;
    z-index: 2;
}

.quote-right {
    position: absolute;
    top: 100px;
    right: 13%;
    width: 120px;
    height: auto;
    z-index: 2;
}

/* Decorative Flower */
.decorative-flower-right {
    position: absolute;
    top: 20%;
    right: 0%;
    width: 170px;
    height: auto;
    z-index: 1;
}

/* Content */
.iimun-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 150px 60px;
    position: relative;
    z-index: 3;
}

.iimun-heading {
    font-family: 'playfair-extrabold', serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.heading-black {
    color: #000;
}

.heading-pink {
    color: #E91E63;
}

.iimun-description {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Yellow Divider Line at Bottom */
.iimun-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #fadd22;
    z-index: 10;
}

/* Bottom Illustrations */
.iimun-illustrations {
    position: relative;
    margin-top: 60px;
    height: 300px;
}

.left-uncle {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 280px;
    height: auto;
    z-index: 4;
}

.right-book {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 320px;
    height: auto;
    z-index: 4;
}

/* festival session */

/* Festival Sessions Section */
.festival-sessions {
    background: #5878cf;
    padding: 200px 0 500px 0;
    position: relative;
    overflow: visible;
}

/* Top Illustrations */
.top-illustrations {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 20;
}

.top-left-uncle {
    position: absolute;
    top: 0;
    left: 5%;
    width: 300px;
    height: auto;
}

.top-right-book {
    position: absolute;
    top: -20px;
    right: 0%;
    width: 430px;
    height: auto;
    z-index: 15;
}

/* Decorative Flowers */
.decorative-flowers-sessions {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.flower-left-sessions {
    position: absolute;
    bottom: 150px;
    left: 0%;
    width: 200px;
    height: auto;
    opacity: 0.4;
}

.flower-right-sessions {
    position: absolute;
    bottom: 150px;
    right: 0%;
    width: 200px;
    height: auto;
    opacity: 0.4;
}

/* Title */
.sessions-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.sessions-title h2 {
    font-family: 'playfair-extrabold', serif;
    line-height: 1.3;
}

.title-white {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 600;
}

.title-highlighted {
    background-color: #FF3366;
    color: #FFFFFF;
    font-size: 56px;
    font-weight: 700;
    padding: 5px 30px;
    display: inline-block;
    border-radius: 8px;
}

.title-year {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 700;
    font-style: italic;
}

/* Sessions Slider Wrapper */
.sessions-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 3;
    justify-content: center;
}


/* Slider Container */
.sessions-slider {
    display: flex;
    gap: 30px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
}

.sessions-slider::-webkit-scrollbar {
    display: none;
}

/* Session Cards */
.session-card {
    min-width: 300px;
    max-width: 350px;
    border-radius: 30px;
    padding: 120px 50px 30px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    text-align: center;
}

.session-card:hover {
    transform: translateY(-5px);
}




.yellow-card {
    background-image: url('../images/yellow-slider.svg');
    background-size: cover;
    background-position: center;
}

.pink-card {
    background-image: url('../images/pink-slider.svg');
    background-size: cover;
    background-position: center;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.session-category {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pink-card .session-category {
    color: #FFFFFF;
}

.session-tagline {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pink-card .session-tagline {
    color: #FFFFFF;
}

.card-divider {
    border: none;
    border-top: 2px solid #333333;
    margin: 20px 0;
}

.pink-card .card-divider {
    border-top-color: #FFFFFF;
}

.speakers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.speakers-list li {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.speakers-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pink-card .speakers-list li {
    color: #FFFFFF;
}

/* Slider Buttons */
.slider-btn {
    background-color: #00D4FF;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    color: #000000;
}

.slider-btn:hover {
    background-color: #00BFEA;
    transform: scale(1.1);
}






/* speakers section */

/* Speakers Section */
.speakers-section {
    padding: 0 80px 0;
    position: relative;
    overflow: visible;
}

/* Keynote Speakers Header */
/* Keynote Speakers Header */
.keynote-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.keynote-banner {
    background: linear-gradient(135deg, #FF4B6E 0%, #FF758C 100%);
    padding: 20px 75px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 75, 110, 0.3);
    position: relative;
    display: inline-block;
}

.keynote-text {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 800;
    font-family: 'Playfair-extrabold', serif;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: center;
}


.rope-decoration {
    position: absolute;
    right: -28%;
    top: 50%;
    transform: translateY(-50%);
    width: 215px;
    height: auto;
    z-index: 1;
}




/* Decorative Border Top */
.decorative-border-top {
    position: absolute;
    width: 100%;
    top: -30%;
    left: 0;
    z-index: 1;
}

.border-top-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Center Illustration */
.center-illustration {
    text-align: center;
    position: absolute;
    top: -35%;
    left: 55%;
    transform: translateX(-50%);
    z-index: 3;
}

.writer-img {
    width: 280px;
    height: auto;
    margin-top: 0;
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 250px 20px 0 20px;
}

/* Speaker Card */
.speaker-card {
    text-align: center;
    transition: transform 0.3s ease;
}



/* Speaker Photo Container */
.speaker-photo {
    width: 300px;
    height: auto;
    margin: 0 auto 20px;
    position: relative;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cyan-bg::before {
    background: linear-gradient(135deg, #89F7FE 0%, #66A6FF 100%);
}

.purple-bg::before {
    background: linear-gradient(135deg, #C471F5 0%, #FA71CD 100%);
}

.light-cyan-bg::before {
    background: linear-gradient(135deg, #A7ECFC 0%, #4BC0C8 100%);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Speaker Name */
.speaker-name {
    font-family: 'Figtree-bold', sans-serif;
    font-size: 40px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Speaker Description */
.speaker-description {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}




/* festival film section */

/* Festival Film Section */

.festival-film-section {
    padding: 80px 0;
    position: relative;
}

/* Decorative Icon */
.film-icon {
    margin-bottom: 80px;
}

.flower-icon {
    width: 200px;
    height: auto;
}

/* Film Title */
.film-title {
    margin-bottom: 50px;
}

.film-title h2 {
    font-family: 'playfair-extrabold', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.title-black {
    color: #000000;
}

.title-pink {
    color: #E91E63;
    margin-left: 10px;
}

/* Video Container */
.video-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #4A90E2;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Custom Video Player Styling */
.video-wrapper video {
    object-fit: cover;
    cursor: pointer;
}

/* Custom Video Controls Panel */
.video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

/* Play Button Overlay - Controlled by JavaScript */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    pointer-events: auto;
}

/* Hidden state for play button (when video is playing) */
.play-button-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hover effect on play button */
.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Play button shadow */
.play-button-overlay svg {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.play-button-overlay:hover svg {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}




/* testimonials section */


/* Testimonials Section */
.testimonials-section {
    background-color: #FFF0F5;
    padding: 80px 0 650px 0;
    position: relative;
    overflow: hidden;
}

/* Left Side - Illustration */
.testimonial-illustration {
    position: relative;
    padding: 20px;
}

.testimonial-illustration img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
}

/* Right Side - Content */
.testimonial-content {
    position: relative;
    padding: 40px 20px 40px 60px;
}

/* Decorative Arrow */
.decorative-arrow {
    position: absolute;
    top: 45%;
    right: 50px;
    z-index: 2;
}

.arrow-img {
    width: 80px;
    height: auto;
}

/* Title */
.testimonial-title {
    font-family: 'Figtree', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 40px;
}

.highlight-text {
    color: #E91E63;
}

/* Quote Placeholder */
.quote-placeholder {
    min-height: 200px;
    /* Add your testimonial cards/slider here */
}






.testimonials-section-image {
    background: #fffde6;
    position: relative;
    width: 100%;
    background: none;
    padding: 0;
    margin-top: -40%;
    /* Adjust this value to move up/down */
    z-index: 2;
}

.testimonials-section-image .container-fluid {
    padding: 0;
}

.testimonials-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}





/* Food Stall Section */
.food-stall-section {
    background: #5878cf;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;

    margin-top: -95px;
    /* Now you can use negative margin */
    z-index: 1;
}

.food-stall-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.food-stall-image {
    width: 250px;
    height: auto;
    display: block;
    position: relative;
    animation: moveStall 15s linear infinite;
}




/* highligths section */

/* Highlights Video Section */
.highlights-video-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8F0 100%);
}

/* Decorative Icon */
.highlights-icon {
    margin-bottom: 60px;
    animation: floatIcon 3s ease-in-out infinite;
}

.highlight-flower-icon {
    width: 180px;
    height: auto;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

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

/* Festival Highlights Section */

.festival-highlights-section {
    background-color: #5878cf;
    padding: 80px 0;
    position: relative;
}

/* Highlights Title */
.highlights-title {
    margin-bottom: 50px;
}

.highlights-title h2 {
    font-family: 'playfair-extrabold', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5rem;
}

.highlight-title-black {
    color: #fff;
}

.highlight-title-pink {
    color: #fff;
    margin-left: 10px;
}

/* Video Slider Container */
.highlights-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Video Slides Wrapper */
.highlights-slides-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.highlights-slides-wrapper:active {
    cursor: grabbing;
}

/* Individual Video Slide */
.highlights-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
}

.highlights-slide.active {
    display: block;
    opacity: 1;
}

/* Video Wrapper */
.highlights-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #D0D0D0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #FF4081;
    touch-action: pan-y;
}

.highlights-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
}

/* REMOVED - These were blocking YouTube controls
.highlights-video-wrapper::before,
.highlights-video-wrapper::after {
    ...
}
*/


.highlights-video-wrapper::before,
.highlights-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20%;
    /* Left and right 20% */
    height: 75%;
    /* Only top 75% - leaves bottom for YouTube controls */
    z-index: 5;
    cursor: pointer;
    background: transparent;
    pointer-events: auto;
    /* Capture touch events */
}

/* Left swipe zone */
.highlights-video-wrapper::before {
    left: 0;
}

/* Right swipe zone */
.highlights-video-wrapper::after {
    right: 0;
}

/* DOT NAVIGATION */
.highlights-dots-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 10px 0;
}

.highlights-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlights-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.highlights-dot.active {
    background-color: #FFFFFF;
    width: 16px;
    height: 16px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.highlights-dot:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 3px;
}

.highlights-slides-wrapper:focus {
    outline: none;
}


/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
    .festival-highlights-section {
        padding: 60px 0;
    }

    .highlights-title h2 {
        font-size: 48px;
    }

    .highlights-dots-navigation {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .festival-highlights-section {
        padding: 50px 0;
    }

    .highlights-title h2 {
        font-size: 40px;
    }

    .highlights-video-wrapper {
        border: 3px solid #FF4081;
    }

    .highlights-dot {
        width: 12px;
        height: 12px;
    }

    .highlights-dot.active {
        width: 14px;
        height: 14px;
    }

    .highlights-dots-navigation {
        gap: 10px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .festival-highlights-section {
        padding: 40px 0;
    }

    .highlights-title {
        margin-bottom: 30px;
    }

    .highlights-title h2 {
        font-size: 32px;
    }

    .highlight-title-pink {
        margin-left: 5px;
    }

    .highlights-video-wrapper {
        border: 2px solid #FF4081;
        border-radius: 8px;
    }

    .highlights-dots-navigation {
        gap: 8px;
        margin-top: 25px;
    }

    .highlights-dot {
        width: 10px;
        height: 10px;
    }

    .highlights-dot.active {
        width: 12px;
        height: 12px;
    }
}



/* Bottom Decorative Line */
/* Decorative Divider Section */
.decorative-divider-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Color Line */
.color-line {
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg,
            #FFD54F 0%,
            #FFD54F 50%,
            #FFD54F 50%,
            #FFD54F 100%);
}


/* footer section */

/* Footer Section */
.footer-section {
    background-color: #fffde6;
    padding: 0;
    position: relative;
}



/* Container Padding */
.footer-section .container {
    padding: 100px 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

/* VLF Logo */
.footer-logo {
    margin-top: 20px;
}

.vlf-logo {
    width: 280px;
    height: auto;
}

/* Decorative Flower */
.footer-flower {
    margin-bottom: 40px;
}

.footer-flower .flower-icon {
    width: 200px;
    height: auto;
}

/* .flower-icon {
    width: 100px;
    height: auto;
} */

/* Contact Info */
.contact-info {
    text-align: center;
}

.contact-title {
    font-family: 'Figtree', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
    letter-spacing: 1px;
    display: inline-block;
    background: linear-gradient(180deg, transparent 30%, #FFD54F 30%, #FFD54F 70%, transparent 70%);
    padding: 5px 0px;
}



.contact-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 60%;
    background-color: #FFD54F;
    z-index: -1;
    border-radius: 4px;
}

.contact-address {
    font-family: 'Figtree-medium', sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 15px;
}

.contact-email {
    font-family: 'Figtree-regular', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.contact-email a {
    color: #000000;
    text-decoration: none;
}

.contact-email a:hover {
    color: #E91E63;
    text-decoration: underline;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}

.partner-logo {
    text-align: right;
}

.logo-img {
    width: 250px;
    height: auto;
}

/* Bottom Border */
.footer-bottom-border {
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg,
            #FF4081 0%,
            #FF4081 33.33%,
            #00BCD4 33.33%,
            #00BCD4 66.66%,
            #FFD54F 66.66%,
            #FFD54F 100%);
}



/* countdown code */


/* CTA and Countdown Section */
.cta-countdown-section {
    background-color: #FFF5F9;
    padding: 40px 0;
    position: relative;
}

.cta-countdown-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
    color: #FFFFFF;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.3);
    margin: 0 auto 40px;
    max-width: 900px;
}

.cta-strip p {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

.cta-strip strong {
    font-weight: 700;
    text-decoration: underline;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px 35px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-width: 110px;
    backdrop-filter: blur(10px);
    border: 2px solid #FF3366;
    transition: transform 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
}

.countdown-box h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FF3366;
    margin: 0;
    line-height: 1;
}

.countdown-box p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Extra Small Devices - Very Small Phones */
@media (max-width: 374px) {
    .hero-banner {
        height: 500px;
    }

    .left-leaf {
        width: 60px;
    }

    .right-leaf {
        width: 60px;
    }

    .cta-countdown-section {
        padding: 25px 0;
    }

    .cta-countdown-section .container {
        padding: 0 15px;
    }

    .cta-strip {
        padding: 18px 15px;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .cta-strip p {
        font-size: 13px;
        line-height: 1.6;
    }

    .cta-strip br {
        display: none;
    }

    .countdown {
        gap: 12px;
    }

    .countdown-box {
        flex: 0 0 calc(50% - 6px);
        min-width: auto;
        padding: 12px 8px;
    }

    .countdown-box h3 {
        font-size: 28px;
    }

    .countdown-box p {
        font-size: 10px;
        margin-top: 6px;
        letter-spacing: 1px;
    }
}

/* Small Phones - Standard Mobile */
@media (min-width: 375px) and (max-width: 575px) {
    .hero-banner {
        height: 550px;
    }

    .left-leaf {
        width: 70px;
    }

    .right-leaf {
        width: 70px;
    }

    .cta-countdown-section {
        padding: 30px 0;
    }

    .cta-countdown-section .container {
        padding: 0 15px;
    }

    .cta-strip {
        padding: 20px 20px;
        margin-bottom: 30px;
    }

    .cta-strip p {
        font-size: 14px;
        line-height: 1.7;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-box {
        flex: 0 0 calc(50% - 7.5px);
        min-width: auto;
        padding: 15px 12px;
    }

    .countdown-box h3 {
        font-size: 32px;
    }

    .countdown-box p {
        font-size: 11px;
        margin-top: 8px;
    }
}

/* Large Phones - Landscape/Small Tablets */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-banner {
        height: 600px;
    }

    .left-leaf {
        width: 90px;
    }

    .right-leaf {
        width: 90px;
    }

    .cta-countdown-section {
        padding: 35px 0;
    }

    .cta-strip {
        padding: 25px 30px;
        margin-bottom: 35px;
    }

    .cta-strip p {
        font-size: 15px;
    }

    .countdown {
        gap: 18px;
    }

    .countdown-box {
        flex: 0 0 calc(25% - 13.5px);
        min-width: auto;
        padding: 18px 15px;
    }

    .countdown-box h3 {
        font-size: 36px;
    }

    .countdown-box p {
        font-size: 12px;
    }
}

/* Tablets - Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-banner {
        height: 700px;
    }

    .left-leaf {
        width: 120px;
    }

    .right-leaf {
        width: 120px;
    }

    .cta-countdown-section {
        padding: 40px 0;
    }

    .cta-strip {
        padding: 28px 40px;
        margin-bottom: 40px;
    }

    .cta-strip p {
        font-size: 16px;
    }

    .countdown {
        gap: 22px;
    }

    .countdown-box {
        min-width: 100px;
        padding: 20px 28px;
    }

    .countdown-box h3 {
        font-size: 42px;
    }

    .countdown-box p {
        font-size: 13px;
    }
}

/* Small Laptops/Desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-banner {
        height: 95vh;
    }

    .left-leaf {
        width: 145px;
    }

    .right-leaf {
        width: 145px;
    }

    .cta-countdown-section {
        padding: 45px 0;
    }

    .cta-strip {
        padding: 30px 45px;
    }

    .countdown {
        gap: 25px;
    }

    .countdown-box {
        min-width: 105px;
        padding: 22px 30px;
    }

    .countdown-box h3 {
        font-size: 44px;
    }
}

/* Large Desktops */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-banner {
        height: 90vh;
    }

    .left-leaf {
        width: 160px;
    }

    .right-leaf {
        width: 160px;
    }

    .cta-countdown-section {
        padding: 45px 0;
    }

    .countdown {
        gap: 28px;
    }

    .countdown-box {
        min-width: 110px;
        padding: 24px 32px;
    }

    .countdown-box h3 {
        font-size: 46px;
    }
}

/* Extra Large Desktops */




/* to the top */

/* Back-to-top floating button */
.pu-backtop {
    position: fixed;
    right: 20px;
    bottom: calc(clamp(12px, 2vw, 20px) + env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    /* above content / bottom bars */
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: #E90712;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .25);
    cursor: pointer;

    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform .25s ease, opacity .25s ease, visibility 0s linear .25s;
}

/* Back to Top Button Styles */
.pu-backtop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: #e91e63;
    cursor: pointer;
    transition: opacity 0.3s;
}

.pu-backtop.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pu-backtop i {
    font-size: 35px;
    line-height: 1;
}

.pu-backtop:hover {
    filter: brightness(1.07);
    transform: translateY(0) scale(1.05);
}

/* visible state */
.pu-backtop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: transform .25s ease, opacity .25s ease, visibility 0s;
}

/* If you have a bottom nav on small screens, nudge it up a bit */
@media (max-width: 991.98px) {
    .pu-backtop {
        width: 44px;
        height: 44px;
        bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    }
}


/* to the top */

/* =========================
   BACK TO TOP (CLEAN)
   ========================= */

.pu-backtop {
    position: fixed;
    right: 30px;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    z-index: 1200;

    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;

    background: #E91E63;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    cursor: pointer;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);

    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.pu-backtop svg,
.pu-backtop i {
    width: 22px;
    height: 22px;
}

/* Visible state */
.pu-backtop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.pu-backtop:hover {
    filter: brightness(1.05);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .pu-backtop {
        width: 44px;
        height: 44px;
        right: 20px;
        bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .pu-backtop svg,
    .pu-backtop i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575.98px) {
    .pu-backtop {
        width: 40px;
        height: 40px;
        right: 16px;
        bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    }

    .pu-backtop svg,
    .pu-backtop i {
        width: 18px;
        height: 18px;
    }
}



.rotate-me {
    animation: rotate 5s linear infinite;
    transform-origin: center center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}