        .offer-modal .modal-content {
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .offer-modal img {
            width: 100%;
            border-radius: 10px;
        }

        .btn-close-custom {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #fff;
            border-radius: 50%;
            padding: 5px;
            opacity: 0.8;
        }

        .last-btns {
            width: 600;
            height: 312
        }

        @media screen and (max-width: 640px) {

            .last-btns {
                height: 40%;
                width: 100%;
                bottom: 0;
                right: 0;
            }
        }

        /* Section Styling */
        .unique-testimonial-section {
            font-family: 'Inter', sans-serif;
            background: #f9f9f9;
            padding: 80px 0;
            text-align: center;
        }

        .unique-testimonial-section h2 {
            font-size: 2.4rem;
            color: #222;
            margin-bottom: 10px;
        }

        .unique-testimonial-section p {
            font-size: 1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        /* Video Card */
        .unique-video-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            max-width: 550px;
            margin: 0 auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .unique-video-card img {
            width: 100%;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }

        .unique-video-card:hover img {
            transform: scale(1.05);
        }

        /* Play Button */
        .unique-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
        }

        .unique-play-btn::before {
            content: "";
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #ff3b30;
        }

        .unique-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        /* Carousel Dots */
        .unique-carousel .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #999;
            margin: 0 5px;
        }

        .unique-carousel .carousel-indicators .active {
            background-color: #ff3b30;
        }

        .unique-modal-content {
            background: transparent;
            border: none;
        }

        .btn-close-white {
            filter: invert(1);
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .unique-video-card {
                max-width: 90%;
            }

            .unique-play-btn {
                width: 50px;
                height: 50px;
            }

            .unique-play-btn::before {
                border-width: 10px 0 10px 18px;
            }
        }

        .chenee-highlights {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            /*padding: 15px 8%;*/
        }

        /* ---------- INDIVIDUAL CARD ---------- */
        .chenee-box {
            flex: 1 1 calc(33.333% - 25px);
            max-width: calc(33.333% - 25px);
            height: 220px;
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        .chenee-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.15);
            transition: background 0.3s ease;
        }

        .chenee-box:hover::before {
            /*background: rgba(0, 0, 0, 0.65);*/
        }

        .chenee-box h3 {
            position: relative;
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 18px;
            text-align: center;
            letter-spacing: 0.5px;
            text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        /* ---------- RESPONSIVE DESIGN ---------- */
        @media (max-width: 992px) {
            .chenee-box {
                flex: 1 1 calc(45% - 25px);
                max-width: calc(45% - 25px);
                height: 200px;
            }

            .chenee-box h3 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .chenee-highlights {
                padding: 30px 5%;
                gap: 20px;
            }

            .chenee-box {
                flex: 1 1 calc(50% - 20px);
                max-width: calc(50% - 20px);
                height: 180px;
            }

            .chenee-box h3 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .chenee-box {
                flex: 1 1 100%;
                max-width: 100%;
                height: 160px;
            }

            .chenee-box h3 {
                font-size: 0.95rem;
            }
        }

        @media (min-width: 1200px) {
            .chenee-box {
                height: 260px;
            }
        }
