﻿
/* 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");



.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);
    }

    /* Decorative plane icon using pseudo-element */
    .btn-fly::after {
        content: "✈";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        transition: transform 0.4s ease;
    }

    /* Animate plane on hover */
    .btn-fly:hover::after {
        transform: translate(10px, -50%) rotate(20deg);
    }


.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: 90% !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;
    }

/* Tablet & Mobile view */
@media (max-width: 991px) {
    .search-card {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }
}


/*  .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%;
    }
}


/* 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;
                }

           
        }
        /*------------------------------------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;
}

.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: -20px; /* outside slider slightly */
    }

    .nav-btn.right {
        right: -20px;
    }


/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .category-card {
        min-width: 220px;
    }
}

/*------------------------facilities-------------------------*/


/* Main Video Bigger */
.video-container {
    width: 95%;
    max-width: 1000px;
    margin-bottom: 30px;
}

#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: #e0654d;
        transform: scale(1.08);
    }


/* 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 model------------------------------------*/
/* Container for the hidden section */
.promo-toggle-container {
    background: #f4f4f9;
    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;
}

.close-promo-btn {
    font-size: 30px;
    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: 300px; /* 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: 40px 20px 10px;
}

.gift-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.coupon-top h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.coupon-top p {
    color: #888;
    font-size: 0.9rem;
}

.promo-code-section {
    padding: 15px 20px;
}

.promo-code-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.code-display {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 12px;
    margin: 0 10px;
    background: #fafafa;
}

    .code-display h3 {
        margin: 0;
        font-size: 1.3rem;
        color: #333;
        letter-spacing: 1px;
    }

.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: #bbb;
    margin-top: 10px;
    display: block;
}

/* Tear-off Bottom Section */
.coupon-footer {
    background: linear-gradient(145deg, #d4a762, #c79847);
    padding: 20px;
    position: relative;
    margin-top: 15px;
}

.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);
}

/*--------------------------------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;
        }
}

/*---------------------------------Event form--------------------------------*/
/* Container Overlay */
.event-modal-container {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(8px);
    display: none;
    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: #1a2a5e !important; /* Dark Side Panel Background */
    border-radius: 15px;
    max-width: 950px;
    width: 95%;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: none !important;
}

/* Left Panel (Visuals) */
.modal-left-panel {
    width: 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

    .modal-left-panel img {
        width: 100%;
        height: 320px !important;
        object-fit: cover !important;
        border: 8px solid #fff; /* White border like the screenshot */
        border-radius: 4px;
        margin-bottom: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }

.left-panel-text {
    font-size: 26px;
    font-weight: 800;
    text-align: left;
    width: 100%;
    line-height: 1.1;
    color: #fff;
}

    .left-panel-text span {
        color: #d4a762; /* Gold text */
    }

/* Right Panel (Form) */
.modal-right-panel {
    width: 60%;
    background: #fff !important; /* White background */
    padding: 19px;
    color: #000 !important; /* Black text */
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    line-height: 1;
}

.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: 10px 4px !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

    /* Focus Effect */
    .form-control:focus,
    .form-control-1:focus {
        border-bottom-color: #d4a762 !important;
        box-shadow: none !important;
    }

    .form-control:focus,
    .form-control-1:focus {
        background-image: linear-gradient( 90deg, transparent, rgba(212, 167, 98, 0.4), transparent );
        background-size: 200% 2px;
        background-repeat: no-repeat;
        background-position: bottom;
        animation: input-shine 1.5s ease;
    }

@keyframes input-shine {
    from {
        background-position: 200% bottom;
    }

    to {
        background-position: -200% bottom;
    }
}


.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    display: block;
}

/* Book Now Button with Shine Effect */
#ButtonT {
    background: #d4a762 !important;
    color: #fff !important;
    border: none !important;
    width: 180px;
    padding: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden; /* Needed for shine */
    transition: 0.3s;
}

    /* The Shine Animation */
    #ButtonT::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -60%;
        width: 20%;
        height: 200%;
        background: rgba(255, 255, 255, 0.4);
        transform: rotate(30deg);
        transition: none;
        animation: shine-animation 3s infinite;
    }

@keyframes shine-animation {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* Footer Section */
.info-header {
    color: #d4a762;
    font-weight: 800;
    font-size: 14px;
    /*text-transform: uppercase;*/
    margin-bottom: 10px;
}

/* Event Title Field */
#txtEventTitle {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1a2a5e !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #d4a762 !important;
    padding: 8px 4px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.label-style,
.form-label-custom {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #475569;
    /*text-transform: uppercase;*/
}

.form-group-custom:first-child {
    /*margin-bottom: 22px;*/
}

@media (max-width: 992px) {

    .event-modal-content {
        flex-direction: column;
        max-width: 90%;
        max-height: 95vh;
    }

    .modal-left-panel,
    .modal-right-panel {
        width: 100%;
    }

    .modal-left-panel {
        padding: 30px 25px;
        text-align: center;
    }

        .modal-left-panel img {
            height: 260px !important;
        }

    .left-panel-text {
        font-size: 22px;
        text-align: center;
    }

    .modal-right-panel {
        padding: 35px 30px;
    }

    .close-btn {
        right: 20px;
        top: 15px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .event-modal-container {
        align-items: flex-start;
        padding-top: 20px;
    }

    .event-modal-content {
        width: 95%;
        border-radius: 12px;
    }

    .modal-left-panel {
        padding: 25px 20px;
    }

        .modal-left-panel img {
            height: 220px !important;
            border-width: 6px;
        }

    .left-panel-text {
        font-size: 20px;
        line-height: 1.2;
    }

    .modal-right-panel {
        padding: 30px 20px;
    }

    .form-control,
    .form-control-1 {
        font-size: 13px !important;
    }

    .form-label-custom,
    .label-style {
        font-size: 11px;
    }

    #txtEventTitle {
        font-size: 15px;
    }

    #ButtonT {
        width: 100%;
        padding: 14px !important;
        font-size: 14px;
    }

    .close-btn {
        font-size: 26px;
        right: 15px;
        top: 12px;
    }
}


/*------------------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;
    }
