 .room-slider-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            position: relative;
        }

        .room-slider-title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .room-slider-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #007bff;
        }

        .room-slider {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .room-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        }

        .room-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .room-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .room-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .room-info h3 {
            font-size: 1.5rem;
            margin: 0;
        }

        .contact-btn {
            background-color: white;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .contact-btn:hover {
            background-color: #ff0909;
            color: white;
            transform: translateY(-2px);
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .slider-btn:hover {
            background: #007bff;
            color: white;
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }
        .prev-btn1 {
            left: 10px;
        }

        .next-btn1 {
            right: 10px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: #007bff;
        }

        @media (max-width: 768px) {
            .room-slider {
                height: 300px;
            }

            .room-slider-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .room-info h3 {
                font-size: 1.2rem;
            }
        }
 
.rooms{
    margin-top:50px;
}