/* Section Padding */
        #zai-bs-offer-wrapper {
            padding: 60px 0;
        }

        /* Card Custom Styles */
        .zai-bs-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .zai-bs-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        /* Image Styling */
        .zai-bs-img-box {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1; /* Square Shape */
        }

        .zai-bs-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Card mein image cut hokar fit hogi */
            transition: transform 0.6s ease;
            cursor: zoom-in;
        }

        .zai-bs-card:hover .zai-bs-card-img {
            transform: scale(1.08);
        }

        /* Badges */
        .zai-bs-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
            pointer-events: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .badge-fest { background-color: var(--zai-bs-festival-color); }
        .badge-corp { background-color: var(--zai-bs-corporate-color); }
        .badge-senior { background-color: var(--zai-bs-senior-color); }

        /* Card Content */
        .zai-bs-title {
            font-family: sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: #2d3436;
            margin-bottom: 8px;
        }

        .zai-bs-price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .zai-bs-price {
            font-size: 1.2rem;
            font-weight: 800;
            color: #2d3436;
        }
        .zai-bs-validity {
            font-size: 0.85rem;
            color: #6c757d;
        }

        .zai-bs-amenities {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .zai-bs-amenities li {
            font-size: 0.8rem;
            background: #f1f2f6;
            padding: 4px 8px;
            border-radius: 4px;
            color: #57606f;
        }

        .zai-bs-desc {
            font-size: 0.9rem;
            color: #636e72;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .zai-bs-btn {
            padding: 10px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            width: 100%;
            display: block;
            text-align: center;
        }
        
        .btn-fest { background-color: #c5a059; color: white;}
        .btn-fest:hover { background-color: #2d3436; color: white; border-color: var(--zai-bs-festival-color); }

        /* 
         * MODAL CUSTOM STYLES (UPDATED FOR RESPONSIVE 1080x1080)
         */
        .zai-image-modal .modal-content {
            background-color: transparent;
            border: none;
        }
        
        .zai-image-modal .modal-body {
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%; /* Center vertically */
        }

        /* Yeh wala style fix karega 1080x1080 image ko */
        .zai-image-modal img {
            /* Mobile pe width full le legi par screen se bahar nahi jayegi */
            max-width: 100%; 
            
            /* Height 90% viewport se zyada nahi hogi taaki close button dikhaye */
            max-height: 90vh; 
            
            /* Original Aspect ratio (Square) maintain rahega */
            width: auto; 
            height: auto;
            
            /* Image puri dikhengi, cut nahi hogi */
            object-fit: contain; 
            
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(0,0,0,0.6);
            animation: zoomIn 0.3s ease-out;
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Close Button */
        .btn-close-custom {
            position: absolute;
            top: -45px; /* Image ke upar dikhane ke liye */
            right: 0;
            color: white;
            font-size: 2.5rem;
            opacity: 0.8;
            transition: opacity 0.2s;
            z-index: 1060;
        }
        .btn-close-custom:hover {
            opacity: 1;
            color: white;
        }

         /* Global styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding: 20px;
        }

        /* Container for the card section */
        .festive-offers-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            overflow: hidden;
        }

        /* Section heading */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }

        /* Carousel container */
        .carousel-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
            border-radius: var(--border-radius);
        }

        /* Carousel track */
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            padding: 0 10px;
        }

        /* Individual card styling */
        .offer-card {
            flex: 0 0 auto;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            width: 100%;
        }

        /* Card image container - fixed for square images */
        .card-image-container {
            position: relative;
            width: 100%;
            padding-top: 100%; /* Creates a 1:1 aspect ratio */
            overflow: hidden;
            background-color: #f5f5f5;
        }

        .card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .offer-card:hover .card-image {
            transform: scale(1.05);
        }

        /* Card content */
        .card-content {
            padding: 20px;
        }

        .card-heading {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .card-subtext {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        /* Card button */
        .card-button {
            display: inline-block;
            background-color: #c5a059;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
        }

        .card-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Festival badge on top of card image */
        .festival-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Carousel navigation buttons */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            color: var(--primary-color);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .carousel-nav:hover {
            background-color: rgba(255, 255, 255, 0.95);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 15px;
        }

        .carousel-next {
            right: 15px;
        }

        /* Carousel indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .indicator.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Special offer button */
        .special-offer-container {
            text-align: center;
            margin-top: -8px;
        }

        #specialOfferBtn {
            background: #c5a059;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        #specialOfferBtn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        #specialOfferBtn:hover::before {
            left: 100%;
        }

        #specialOfferBtn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .carousel-track {
                gap: 15px;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .offer-card {
                width: calc(50% - 10px);
            }
        }

        @media (min-width: 1024px) {
            .offer-card {
                width: calc(33.333% - 14px);
            }
        }