﻿@import url('https://fonts.googleapis.com/css2?family=Playball&family=Inter:wght@400;600;700&display=swap');

/* Left stack layout */
.left-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-left: 5%;
}

/*---------------------------------------login-----------------------------------*/

/* ASP.NET Chrome autofill killer */
.input-group-custom input,
.input-group-custom input:-webkit-autofill,
.input-group-custom input:-webkit-autofill:hover,
.input-group-custom input:-webkit-autofill:focus,
.input-group-custom input:-webkit-autofill:active {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 99999s ease-in-out 0s;
}




.circle-wrapper {
    position: relative;
    width: fit-content;
    margin-left: 10%;
    /* margin-top: 5%;*/
}

    .circle-wrapper::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        left: -20px; /* GAP between border & form */
        top: 50%;
        transform: translateY(-50%) rotate(-10deg);
        border-radius: 50%;
        border-left: 5px solid #1a2a5e;
        pointer-events: none;
    }

@media (max-width: 576px) {
    .circle-form {
        width: 240px;
        height: 240px;
        padding: 20px;
    }

    .circle-wrapper::before {
        width: 310px;
        height: 310px;
        left: -18px;
        border-left: 3px solid #000;
    }
}



/* Circle Form with golden background and shine effect */
.circle-form {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: burlywood;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

    /* Shine overlay */
    .circle-form::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
        transform: rotate(45deg);
        transition: transform 0.5s;
    }

    /* Hover effect: scale + shine movement */
    .circle-form:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }

        .circle-form:hover::before {
            transform: rotate(45deg) translateX(50%) translateY(50%);
        }

    /* Heading */
    .circle-form h2 {
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

.input-group-custom {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .input-group-custom input {
        width: 90%; /* increase width */
        max-width: 260px; /* keeps it neat on desktop */
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        padding: 10px 0;
        color: #fff;
        outline: none;
        text-align: center;
        transition: border-color 0.3s;
    }

        .input-group-custom input:focus {
            border-bottom: 2px solid #fff;
        }

.forgot-link {
    font-size: 13px;
    color: #516889;
    text-align: center;
    margin-top: 2%;
    pointer-events: auto;
    cursor: pointer;
    z-index: 11;
    position: relative;
}



@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");

/*31-01-26-Karan*/
.eventTitle {
    font-size: 1.3rem !important
}

.btn-fly {
    margin-top: 12px;
    position: relative;
    border: none;
    border-radius: 50px;
    padding: 7px 19px;
    font-size: 15px;
    font-weight: 700;
    color: #d4a762;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    /* Hover Animation: glow + lift */
    .btn-fly:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0,0,0,0.3), 0 0 15px rgba(79,103,237,0.7);
    }



.register-prompt {
    text-align: center;
    margin-top: 12px;
    color: black;
    font-size: 13px;
    pointer-events: auto;
    position: relative;
    z-index: 11;
}

.form-footer {
    text-align: center;
    color: black;
    font-size: 12px;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.remember-me {
    cursor: pointer;
    user-select: none;
}

/*  .remember-checkbox {
            cursor: pointer;
            pointer-events: auto;
        }*/

.remember-checkbox {
    cursor: pointer;
    pointer-events: auto;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-top: -2px;
}


.custom-search-form {
    margin: 20px auto;
    max-width: 1000px;
}

/* Wrapper */
.password-wrapper {
    position: relative;
    width: 100%;
}

    .password-wrapper .input-field {
        width: 100%;
        padding-right: 40px; /* space for icon */
    }

    /* Toggle icon */
    .password-wrapper .toggle-password {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        cursor: pointer;
        color: #fff;
        font-size: 16px;
    }

        .password-wrapper .toggle-password:hover {
            color: #000;
        }

.img-fluid {
    max-width: 75% !important;
}

.hero-bottom {
    margin-top: 2%;
}


/*---------------------------------------Event-----------------------------------*/

.search-card {
    /*  background: #ffffff;*/
    padding: 20px 25px;
    border-radius: 14px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
    margin-left: 10%;
}

.search-input {
    height: 48px;
    padding-left: 42px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

    .search-input:focus {
        border-color: #c79847;
        box-shadow: 0 0 0 0.15rem rgba(199, 152, 71, 0.25);
    }

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 15px;
    }

.btn-md-square {
    width: 48px;
    height: 48px;
}

.btn-search {
    background: linear-gradient(145deg, #d4a762, #c79847);
    border: none;
    box-shadow: 0 6px 16px rgba(199, 152, 71, 0.45);
    transition: all 0.3s ease;
    color: #fff;
}

    .btn-search i {
        font-size: 16px;
    }
/* All tablet sizes (small to big) */
@media (min-width: 768px) and (max-width: 1366px) {
    .modal-right-panel {
        width: 100%; /* Full width for tablets */
        padding: 25px; /* Slightly more padding if needed */
        max-height: 90vh !important; /* Taller modal for tablet view */
    }
}
/* Tablet & Mobile view */
@media (max-width: 991px) {
    .search-card {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }

    .modal-right-panel {
        width: 90%;
        padding: 20px;
        background: var(--white) !important;
        overflow-y: auto;
        max-height: 90vh;
    }
}


/*  .btn-search:hover {
                transform: scale(1.08);
                box-shadow: 0 10px 24px rgba(199, 152, 71, 0.6);
            }

            .btn-search:active {
                transform: scale(0.95);
            }*/

/*---------------------------------------event-------------------------card*/
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.coupon-scroll-wrapper {
    display: flex; /* Horizontal layout */
    justify-content: center; /* Center cards horizontally */
    gap: 24px; /* Space between cards */
    overflow-x: auto; /* Horizontal scroll */
    padding: 20px 10px; /* Some padding around cards */
    scrollbar-width: thin;
    scrollbar-color: #fdf2e9 transparent;
}

    .coupon-scroll-wrapper::-webkit-scrollbar {
        height: 6px; /* Horizontal scrollbar height */
    }

    .coupon-scroll-wrapper::-webkit-scrollbar-thumb {
        background: rgba(139,29,44,0.6);
        border-radius: 8px;
    }

.coupon-grid {
    display: flex; /* Each card inline */
    flex: 0 0 auto; /* Prevent wrapping */
    gap: 24px;
}

.svg-coupon {
    flex: 0 0 calc(55% - 12px); /* 2 cards per row */
    max-width: 55%;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    cursor: pointer; /* Pointer on hover */
}

    /* Zoom effect on hover */
    .svg-coupon:hover {
        transform: scale(1.05); /* Slightly enlarge the card */
        box-shadow: 0 15px 25px rgba(0,0,0,0.3); /* Add shadow for depth */
    }

    /* Optional: click effect */
    .svg-coupon:active {
        transform: scale(0.98); /* Slightly shrink on click */
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    }


@media (max-width: 768px) {
    .svg-coupon {
        flex: 0 0 80%; /* One card at a time on mobile */
        max-width: 80%;
    }

    .nav-btn.left {
        left: -20px !important;
    }

    .nav-btn.right {
        right: -20px !important;
    }
}


/* SVG Coupon Card */
.svg-coupon {
    position: relative;
    margin-bottom: 35px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

    .svg-coupon svg {
        width: 100%;
        height: 180px;
        display: block;
    }

.svg-coupon-content {
    position: absolute;
    inset: 0;
    display: flex;
}

/* LEFT STRIP */
.svg-strip {
    background: #d4a762;
    color: #fff;
    width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

    .svg-strip span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .svg-strip strong {
        font-size: 18px;
    }

/* CENTER */
.svg-center {
    flex: 1;
    padding: 25px 30px;
    color: #000;
    overflow-x: auto;
}

    .svg-center .card-content h4 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .svg-center .card-content p {
        font-size: 14px;
        margin-bottom: 8px;
        text-align: justify;
    }

    .svg-center .card-content .fee {
        font-size: 16px;
        font-weight: 700;
        color: tan;
    }

/* RIGHT PRICE */
.svg-price {
    background: #d4a762;
    color: #fff;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    position: relative;
}

    .svg-price::after {
        content: "";
        position: absolute;
        right: -25px;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 25px solid #d4a762;
    }

/* Responsive adjustments */
@media (max-width: 480px) {
    .svg-coupon-content {
        flex-direction: column;
    }

    .svg-strip {
        width: 100%;
        writing-mode: horizontal-tb;
        flex-direction: row;
        justify-content: center;
    }

    .svg-price {
        width: 100%;
        font-size: 24px;
        margin-top: 10px;
    }

    .svg-center {
        padding: 15px 10px;
        text-align: center;
    }
}



/* Tablet */
@media (max-width: 992px) {


    .left-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-left: 0%;
    }

    .circle-wrapper {
        position: relative;
        width: fit-content;
        margin-left: 0%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .circle-form {
        width: 300px;
        height: 300px;
        padding: 25px;
    }

        .circle-form h2 {
            font-size: 20px;
        }
}

/*------scroll-Radhika -24-02 --*/

.event_items {
    height: 68vh;
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: transparent transparent;
}

    /* Chrome, Edge, Safari */
    .event_items::-webkit-scrollbar {
        width: 6px;
    }

    .event_items::-webkit-scrollbar-track {
        background: transparent;
    }

    .event_items::-webkit-scrollbar-thumb {
        background: transparent;
    }
/*------------------------------------image envolope silder-------------------------------*/

.category-section {
    padding: 60px 40px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    /*margin-bottom: 40px;*/
    font-weight: 500;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/*.category-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}*/

.category-slider {
    display: flex;
    gap: 24px;
    overflow-x: hidden; /* hide overflow for marquee effect */
    padding: 10px;
    scroll-behavior: auto; /* we control smooth scroll via JS */
}


    .category-slider::-webkit-scrollbar {
        display: none;
    }

.category-card {
    min-width: 260px;
    background: #fdf2e9;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-6px);
    }

    .category-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: center;
    }

    .category-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
    }


.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/*Karan 30-01-26-----Start*/

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

    .nav-btn.left {
        left: -35px; /* outside slider slightly */
    }

    .nav-btn.right {
        right: -35px;
    }


/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .category-card {
        min-width: 220px;
    }
}

/*------------------------facilities-------------------------*/


/* Main Video Bigger */
.video-container {
    width: 100%;
    /* max-width: 1000px; */
    margin-bottom: 30px;
    height: 300px;
}

#mainVideo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease;
}

/* Thumbnails Slider Wrapper */
.thumb-slider-wrapper {
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 1000px;
    position: relative;
}

.nav-btn {
    background: #d4a762;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    /* CENTER ICON PERFECTLY */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* IMPORTANT */
    line-height: 1; /* IMPORTANT */
    cursor: pointer;
    font-size: 10px;
    transition: background 0.3s, transform 0.2s;
}

    .nav-btn:hover {
        background: #1a2a5e;
    }


/* Video Thumbnails */
.video-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
}

.video-thumb {
    flex: 0 0 auto;
    width: 140px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.3s, border 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .video-thumb video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Active Thumbnail Glow */
    .video-thumb.active {
        border: 3px solid #d4a762;
        box-shadow: 0 6px 20px rgba(255,126,95,0.5);
        transform: scale(1.1);
    }

    .video-thumb:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

/* Hide Scrollbar */
.video-thumbs::-webkit-scrollbar {
    display: none;
}


/*------------------------------promocode button------------------------*/
/* ===== FLOATING PROMO BUTTON ===== */
.promo-fab {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4a762, #c79847);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    animation: pulseGlow 2.5s infinite;
    transition: 0.35s ease;
}

    /* ===== ICON ===== */
    .promo-fab i {
        font-size: 26px;
        color: #1a2a5e;
        transition: 0.35s ease;
    }

    /* ===== HOVER EFFECT ===== */
    .promo-fab:hover {
        transform: translateY(-50%) scale(1.12);
        box-shadow: 0 25px 65px rgba(212,167,98,0.65);
    }

        .promo-fab:hover i {
            transform: rotate(15deg) scale(1.2);
        }

/* ===== PULSE ANIMATION ===== */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212,167,98,0.55);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(212,167,98,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212,167,98,0);
    }
}

/* ===== TOOLTIP ===== */
.promo-tooltip {
    position: absolute;
    right: 78px;
    background: #1a2a5e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(10px);
    transition: 0.35s ease;
}

.promo-fab:hover .promo-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .promo-fab {
        right: 16px;
        width: 56px;
        height: 56px;
    }

        .promo-fab i {
            font-size: 22px;
        }
}

/*------------promocode----------------radhika -- 18-02/26--*/

/* Container for the hidden section */
.promo-toggle-container {
    background: #fbfaf3 !important;
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.promo-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* center the text */
    padding: 0 20px 15px;
    border-bottom: 1px solid #e0e0e0;
}

    /* Center title */
    .promo-header h4 {
        margin: 0;
        text-align: center;
        width: 100%;
    }

/* Right aligned close icon */
.close-promo-btn {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}


.promo-header h3 {
    margin: 0;
    font-weight: 700;
    color: #333;
    font-family: Playball, cursive !important;
}

.close-promo-btn {
    font-size: 20px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

    .close-promo-btn:hover {
        color: #d4a762;
    }

/* The Main Ticket Design */
.promo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 10px;
}

.coupon-cardd {
    background: white;
    width: 270px; /* Adjusted for better fit */
    border-radius: 25px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

    /* Top Center Notch */
    .coupon-cardd::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: #f4f4f9; /* Match background of toggle container */
        border-radius: 50%;
        z-index: 1;
    }

.coupon-top {
    padding: 20px 10px 5px;
}

.gift-icon {
    font-size: 25px;
    margin-bottom: 0px;
}

.coupon-top h2 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin: 0;
    font-family: Playball, cursive !important;
}

.coupon-top p {
    color: #535353;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.promo-code-section {
    padding: 0px 30px;
}

.promo-code-label {
    font-size: 0.75rem;
    color: #535353;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.code-display {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 5px;
    margin: 0 20px;
    background: #fafafa;
}

    .code-display h3 {
        margin: 0;
        font-size: 1.3rem;
        color: #333;
        letter-spacing: 1px;
        font-family: Playball, cursive !important;
    }

.copy-link {
    color: #d4a762;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.valid-until {
    font-size: 0.75rem;
    color: #535353;
    margin-top: 5px;
    display: block;
}

/* Tear-off Bottom Section */
.coupon-footer {
    background: linear-gradient(145deg, #d4a762, #c79847);
    padding: 20px;
    position: relative;
    margin-top: 5px;
}

.side-notch {
    position: absolute;
    top: -15px;
    width: 30px;
    height: 30px;
    background: #f4f4f9; /* Match container bg */
    border-radius: 50%;
}

.notch-left {
    left: -15px;
}

.notch-right {
    right: -15px;
}

.redeem-btn {
    background: #fff;
    color: #d4a762;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");



.btn-fly {
    position: relative;
    border: none;
    border-radius: 50px;
    padding: 7px 19px;
    font-size: 15px;
    font-weight: 700;
    color: #d4a762;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    /* Hover Animation: glow + lift */
    .btn-fly:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0,0,0,0.3), 0 0 15px rgba(79,103,237,0.7);
    }

/*--------------------------------preview btn----------------------------*/

/* ===== PREVIEW VERTICAL BUTTON (LEFT SIDE) ===== */
.preview-fab {
    position: fixed;
    left: 28px; /* Changed from right to left */
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4a762, #c79847);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    animation: previewPulseGlow 2.5s infinite;
    transition: 0.35s ease;
    text-decoration: none; /* For <a> tag */
}

    /* ===== ICON ===== */
    .preview-fab i {
        font-size: 26px;
        color: #1a2a5e;
        transition: 0.35s ease;
    }

    /* ===== HOVER EFFECT ===== */
    .preview-fab:hover {
        transform: translateY(-50%) scale(1.12);
        box-shadow: 0 25px 65px rgba(212,167,98,0.65);
    }

        .preview-fab:hover i {
            transform: rotate(-15deg) scale(1.2); /* Rotated opposite for left side symmetry */
        }

/* ===== PULSE ANIMATION ===== */
@keyframes previewPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212,167,98,0.55);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(212,167,98,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212,167,98,0);
    }
}

/* ===== TOOLTIP (NOW ON THE RIGHT) ===== */
.preview-tooltip {
    position: absolute;
    left: 78px; /* Changed from right to left to show on the right of the button */
    background: #1a2a5e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-10px); /* Slides from left to right now */
    transition: 0.35s ease;
}

.preview-fab:hover .preview-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .preview-fab {
        left: 16px; /* Adjusted left margin for mobile */
        width: 56px;
        height: 56px;
    }

        .preview-fab i {
            font-size: 22px;
        }
}

/* ---Karan 30-01-26 ---start ---------------------------------------------------------------------------------------------------*/
.eventTitle {
    font-weight: 400 !important;
    font-family: Playball, cursive !important;
    font-size: 1.4rem;
    text-transform: capitalize;
    text-align:center;
}

:root {
    --primary-dark: #1a2a5e;
    --accent-gold: #d4a762;
    --text-main: #2d3748;
    --text-muted: #718096;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

/* Container Overlay */
.event-modal-container {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(8px);
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* Modal Content Box */
.event-modal-content {
    background: var(--white) !important;
    border-radius: 20px;
    max-width: 1250px;
    width: 100%;
    display: flex;
    flex-direction: row; /* Desktop Default */
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 95vh;
}

/* Left Panel (The Sidebar/Header) */
.modal-left-panel {
    width: 30%;
    padding: 15px;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

    .modal-left-panel img {
        width: 100%;
        height: fit-content !important;
        object-fit: contain !important;
        border-radius: 12px;
        margin-bottom: 20px;
        border: 3px solid rgba(255, 255, 255, 0.1);
    }

.left-panel-text {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

    .left-panel-text span {
        color: var(--accent-gold);
    }

/* Right Panel (The Form) */
.modal-right-panel {
    width: 90%;
    padding: 20px;
    background: var(--white) !important;
    overflow-y: auto;
    max-height: 90vh;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 100;
}

/* Form Styling */
.form-group-custom label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

.form-control, .form-control-1 {
    border: none !important;
    border-bottom: 1.8px solid #cbd5e1 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: black !important;
    padding: 5px 4px !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

    .form-control:focus {
        color: #9a9a9a;
        background-color: #fff;
        border-color: #ead3b1;
        outline: 0;
        box-shadow: none !important;
    }

    .form-control:focus, .form-control-1:focus {
        border-bottom-color: #d4a762 !important;
        box-shadow: none !important;
    }

#txtEventTitle {
    border: none !important;
    border-bottom: 2px solid var(--accent-gold) !important;
    background: transparent !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    color: var(--primary-dark) !important;
    text-align: center;
}

.btn-fly {
    margin-top: 12px;
    position: relative;
    border: none;
    border-radius: 50px;
    padding: 7px 19px;
    font-size: 15px;
    font-weight: 700;
    color: #d4a762;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-fly:hover {
        transform: translateY(-5px) scale(1.05);
    }


/* Remove Button - Modern Icon Style */
.red-text {
    width: 50px;
    height: 30px;
    border: none;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.3);
    padding: 0;
}

    /* Icon Size */
    .red-text i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    /* Hover */
    .red-text:hover {
        transform: scale(1.2) translateY(-3px);
        box-shadow: 0 12px 25px rgba(239, 68, 68, 0.45);
        background: linear-gradient(135deg, #dc2626, #ef4444);
    }


    /* Active */
    .red-text:active {
        transform: scale(0.7);
        box-shadow: 0 6px 15px rgba(239, 68, 68, 0.3);
    }

    /* Disabled */
    .red-text:disabled {
        background: #e5e7eb;
        color: #9ca3af;
        box-shadow: none;
        cursor: not-allowed;
    }


/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .event-modal-content {
        flex-direction: column; /* Stacks vertically */
        width: 92%;
        max-height: 90vh;
    }

    .modal-left-panel {
        width: 100%;
        padding: 20px;
        flex-direction: row; /* Aligns image and text side-by-side on mobile */
        align-items: center;
        gap: 15px;
        min-height: auto;
    }

        .modal-left-panel img {
            width: 80px !important; /* Reduced size for mobile */
            height: 80px !important; /* Square thumb */
            margin-bottom: 0;
            border-width: 2px;
        }

    .left-panel-text {
        font-size: 18px;
        text-align: left;
    }

    .modal-right-panel {
        width: 100%;
        padding: 20px;
        max-height: 70vh; /* Allows scrolling for the form part specifically */
    }

    .info-box .col-6 {
        width: 100%; /* Stacks the About/Instructions sections */
        border-left: none !important;
        margin-bottom: 15px;
    }


    .close-btn {
        color: white; /* Contrast against dark header on mobile */
    }

    #ContentPlaceHolder1_lblContent, #ContentPlaceHolder1_lblInstContent {
        font-size: 13px !important
    }
}
/* ---Karan 30-01-26 ---end ---------------------------------------------------------------------------------------------------*/

/*------------------feedback-----------------------*/

/* Ensure swiper slides stretch equally */
.swiper-slide {
    height: auto;
    display: flex;
}

/* Equal height cards */
.testimonial-item {
    height: 320px; /* adjust as needed */
    display: flex;
    flex-direction: column;
}

/* Scrollable text area */
.testimonial-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

    /* Optional: smooth scrollbar (Chrome/Edge) */
    .testimonial-content::-webkit-scrollbar {
        width: 4px;
    }

    .testimonial-content::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

/*-------------divider-------------*/

.line1 {
    height: 3px;
    width: 70px;
    background-color: #eac260;
    margin: 0 auto 30px auto;
}

.payment-card {
    width: 80px;
    height: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    background: #fff;
}

    .payment-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .payment-card:hover {
        border-color: #0d6efd;
        transform: translateY(-3px);
    }
