 .carousel-container {
            max-width:1460px;
            margin: 0 auto;
            position: relative;
            padding: 40px 60px;
        }

        .amenitiesCarousels {
            display: flex;
            overflow: hidden;
            gap: 20px;
            scroll-behavior: smooth;
        }

        .imgBox {
            min-width: calc(25% - 15px);
            flex-shrink: 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .imgBox:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .imgBox figure {
            margin: 0;
            overflow: hidden;
            height: 200px;
            background: #e0e0e0;
        }

        .imgBox figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .imgBox span {
            display: block;
            padding: 15px;
            text-align: center;
            font-weight: bold;
            color: #333;
            font-size: 14px;
                background-image: linear-gradient(45deg, rgb(200 148 44), rgb(245 217 118), rgb(216 172 66)) !important;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 700 !important;
  
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.6);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: rgba(0,0,0,0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-arrow.left {
            left: 10px;
        }

        .carousel-arrow.right {
            right: 10px;
        }

        .carousel-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-arrow:disabled:hover {
            background: rgba(0,0,0,0.6);
            transform: translateY(-50%) scale(1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .imgBox {
                min-width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .carousel-container {
                padding:15px;
            }

            .imgBox {
                min-width: calc(50% - 10px);
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                padding:15px;
            }

            .imgBox {
                min-width: calc(100% - 0px);
            }

            .amenitiesCarousels {
                gap: 15px;
            }

            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .carousel-arrow.left {
                left: 5px;
            }

            .carousel-arrow.right {
                right: 5px;
            }

            .imgBox figure {
                height: 180px;
            }
        }
    