 
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { overflow-x: hidden; background-color: #f4f6f9; }
        .navbar { background-color: #aaacaf; color: #fff; padding: 15px 20px; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
        .navbar .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .navbar .logo img { height: 70px; width: auto; object-fit: contain; border-radius: 50px;}
        .navbar .nav-links { display: flex; gap: 20px; }
        .navbar .nav-links a { color: #fff; text-decoration: none; font-size: 1rem; transition: color 0.3s ease; }
        .navbar .nav-links a:hover { color: #ffd700; }
        .navbar .contact-btns { display: flex; gap: 10px; align-items: center; }
        .navbar .contact-btns a { padding: 8px 15px; border-radius: 5px; text-decoration: none; font-size: 0.9rem; transition: background-color 0.3s ease; }
        .navbar .call-btn { background-color: #28a745; color: #fff; }
        .navbar .whatsapp-btn { background-color: #25d366; color: #fff; }
        .navbar .call-btn:hover, .navbar .whatsapp-btn:hover { opacity: 0.9; }
        .menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

        /* Floating Buttons for Mobile */
        .floating-buttons { 
            display: none; 
            position: fixed; 
            bottom: 20px; 
            right: 20px; 
            z-index: 1000; 
            flex-direction: column; 
            gap: 10px; 
        }
        .floating-buttons a { 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            text-decoration: none; 
            color: #fff; 
            font-size: 1.2rem; 
            transition: transform 0.3s ease, opacity 0.3s ease; 
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
        }
        .floating-buttons .call-btn { background-color: #28a745; }
        .floating-buttons .whatsapp-btn { background-color: #25d366; }
        .floating-buttons a:hover { transform: scale(1.1); opacity: 0.9; }

        /* Rooms Section */
        .rooms-section { padding: 100px 20px 60px; background-color: #f4f6f9; text-align: center; }
        .rooms-section h1 { font-size: 2.5rem; color: #1a2a44; margin-bottom: 40px; position: relative; padding-bottom: 10px; }
        .rooms-section h1::after { content: ''; width: 40px; height: 3px; background-color: #ffd700; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
        .room-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1200px; margin: 0 auto; }
        .room-box { background-color: #fff; border-radius: 15px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); width: 350px; overflow: hidden; position: relative; }
        .room-slider { width: 100%; height: 230px; display: flex; transition: transform 0.5s ease; }
        .room-slide { min-width: 100%; height: 100%; }
        .room-slide img { width: 100%; height: 100%; object-fit: cover; }
        .room-box h2 { font-size: 1.8rem; color: #1a2a44; margin: 15px 0; }
        .room-box p { color: #333; padding: 0 15px; line-height: 1.6; }
        .room-box .book-btn { display: inline-block; background-color: #ffd700; color: #1a2a44; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; margin: 15px; transition: background-color 0.3s ease; }
        .room-box .book-btn:hover { background-color: #e6c200; }

        /* Room Facilities Section */
        .facilities-section { padding: 60px 20px; background-color: #9e9a9a; text-align: center; }
        .facilities-section h1 { font-size: 2.5rem; color: #1a2a44; margin-bottom: 40px; position: relative; padding-bottom: 10px; }
        .facilities-section h1::after { content: ''; width: 40px; height: 3px; background-color: #ffd700; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
        .facility-card { 
            background-color: #c7eeee; 
            border-radius: 15px; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
            display: flex; 
            width: 100%; 
            margin-bottom: 30px; 
            padding: 20px; 
            max-width: 1200px; 
            margin-left: auto; 
            margin-right: auto; 
        }
        .facility-card .image-container { 
            width: 40%; 
            height: 340px; 
            overflow: hidden; 
            border-radius: 8px; 
        }
        .facility-card .image-container img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
        .facility-card .content-container { 
            width: 60%; 
            padding: 20px; 
            text-align: left; 
        }
        .facility-card h2 { font-size: 1.8rem; color: #1a2a44; margin-bottom: 15px; }
        .facility-card ul { list-style-type: disc; padding-left: 20px; color: #333; line-height: 1.6; }
        .facility-card ul li { margin-bottom: 10px; }

        /* Popup Form */
        .popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 2000; justify-content: center; align-items: center; }
        .popup-content { background-color: #fff; padding: 20px; border-radius: 10px; width: 90%; max-width: 500px; position: relative; }
        .popup-content h2 { font-size: 1.8rem; color: #1a2a44; margin-bottom: 20px; text-align: center; }
        .popup-content form { display: flex; flex-direction: column; gap: 15px; }
        .popup-content label { font-size: 1rem; color: #1a2a44; margin-bottom: 5px; text-align: left; }
        .popup-content input, .popup-content select { padding: 10px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
        .popup-content input[type="date"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            color: #333;
            background-color: #fff;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        .popup-content input[type="date"]::-webkit-date-and-time-value {
            text-align: left;
            color: #333;
        }
        .popup-content input[type="date"]:invalid {
            color: #999;
        }
        .popup-content button { background-color: #ffd700; color: #1a2a44; padding: 10px; border: none; border-radius: 5px; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; }
        .popup-content button:hover { background-color: #e6c200; }
        .close-btn { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; cursor: pointer; color: #1a2a44; }

        /* Responsive Design for Form */
        @media (max-width: 768px) {
            .popup-content {
                width: 95%;
                padding: 15px;
            }
            .popup-content h2 {
                font-size: 1.5rem;
            }
            .popup-content input,
            .popup-content select,
            .popup-content button {
                font-size: 0.9rem;
                padding: 8px;
            }
            .popup-content label {
                font-size: 0.9rem;
            }
        }

        /* Footer (Consistent with Homepage) */
        .footer {
            background-color: #1a2a44;
            color: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer .footer-part {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }
        .footer .footer-part.logo-address img {
            height: 50px;
            margin-bottom: 10px;
        }
        .footer .footer-part.logo-address p {
            margin: 5px 0;
            font-size: 0.9rem;
        }
        .footer .footer-part.contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .footer .footer-part.contact-info p {
            margin: 5px 0;
        }
        .footer .footer-part.contact-info a {
            color: #00aaff;
            text-decoration: none;
        }
        .footer .footer-part.contact-info a:hover {
            color: #ffd700;
        }
        .footer .footer-part.map iframe {
            width: 100%;
            height: 200px;
            border: 0;
            border-radius: 10px;
        }
        .footer .footer-part.links a {
            color: #fff;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
        }
        .footer .footer-part.links a:hover {
            color: #ffd700;
        }

        /* Animations */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar .nav-links { 
                display: none; 
                flex-direction: column; 
                position: absolute; 
                top: 60px; 
                left: 0; 
                width: 100%; 
                background-color: #1a2a44; 
                padding: 20px; 
                text-align: center; 
            }
            .navbar .nav-links.active { display: flex; }
            .navbar .contact-btns { 
                display: flex;
                flex-direction: row; 
                gap: 10px; 
            }
            .navbar .contact-btns.active { 
                position: static;
                padding: 10px 0; 
            }
            .menu-toggle { display: block; }
            .floating-buttons { 
                display: flex;
            }
            .rooms-section h1, .facilities-section h1 { font-size: 1.8rem; }
            .room-box { width: 100%; }
            .room-box h2 { font-size: 1.5rem; }
            .facility-card { flex-direction: column; }
            .facility-card .image-container { width: 100%; height: 200px; }
            .facility-card .content-container { width: 100%; padding: 15px 0; }
            .facility-card h2 { font-size: 1.5rem; }
            .footer { flex-direction: column; text-align: center; }
            .footer .footer-part { min-width: 100%; }
            .footer .footer-part.map iframe { height: 150px; }
            .footer .footer-part.links a { margin: 0 10px 10px 0; }
            .navbar .logo img { height: 50px; }
        }
   