 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { overflow-x: hidden; background-color: #f4f6f9; }
        
        /* Navbar (Consistent with Homepage) */
        .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; }

        /* Hero Section - FIXED: Using the intended banner image and ensuring coverage */
        .hero { 
            height: 50vh; 
            width: 100%; 
            position: relative; 
            background-image: url('/images/Double/budget-double-bed-stay-hotel-vrajbhoomi-somnath.webp'); /* Corrected path from user's original CSS comment */
            background-size: cover;          
            background-position: center;     
            background-repeat: no-repeat;    
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: #fff; 
            text-align: center; 
            padding-top: 100px; 
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
            z-index: 1;
        }
        .hero-content { 
            position: relative; 
            z-index: 2; 
            padding: 20px; 
        }
        .hero-content h1 { 
            font-size: 2.5rem; 
            margin-bottom: 15px; 
            animation: fadeInUp 1s ease; 
        }
        .hero-content p { 
            font-size: 1rem; 
            max-width: 600px; 
            margin: 0 auto; 
            animation: fadeInUp 1.2s ease; 
        }
        /* About Section with Cards */
    
        .about-section { 
            padding: 80px 20px; 
            background: linear-gradient(135deg, #f8faff 0%, #f4f6f9 100%);
            max-width: 1300px; 
            margin: 0 auto; 
        }

        .about-section h2 { 
            font-size: 2.8rem; 
            color: #1a2a44; 
            text-align: center; 
            margin-bottom: 50px; 
            position: relative; 
            font-weight: 700;
            letter-spacing: 1px;
        }

        .about-section h2::after { 
            content: ''; 
            width: 60px; 
            height: 4px; 
            background: linear-gradient(90deg, #ffd700, #e6c200); 
            position: absolute; 
            bottom: -12px; 
            left: 50%; 
            transform: translateX(-50%); 
            border-radius: 2px;
        }

        .about-cards { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 30px; 
        }

        .about-card { 
            background: #fff; 
            border-radius: 18px; 
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08); 
            padding: 30px 25px; 
            text-align: left; 
            transition: all 0.35s ease; 
            border: 1px solid #f0f0f0;
        }

        .about-card:hover { 
            transform: translateY(-10px) scale(1.02); 
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); 
            border-color: #ffd700;
        }

        .about-card h3 { 
            font-size: 1.6rem; 
            color: #1a2a44; 
            margin-bottom: 18px; 
            font-weight: 600;
            border-left: 4px solid #ffd700; 
            padding-left: 10px;
        }

        .about-card p { 
            color: #444; 
            line-height: 1.9; 
            font-size: 1rem; 
            margin-bottom: 12px; 
            text-align: justify; 
        }

        /* Call to Action Style */
        .about-card.call-to-action { 
            background: linear-gradient(135deg, #1a2a44, #2f3b63); 
            color: #fff; 
        }

        .about-card.call-to-action h3 { 
            color: #ffd700; 
            border-left: 4px solid #ffd700;
        }

        .about-card.call-to-action p {
            color: #eaeaea;
            text-align: justify;
        }

        .about-card.call-to-action a { 
            display: inline-block; 
            background: #ffd700; 
            color: #1a2a44; 
            padding: 12px 25px; 
            border-radius: 8px; 
            text-decoration: none; 
            font-weight: 600; 
            margin-top: 20px; 
            transition: all 0.3s ease; 
        }

        .about-card.call-to-action a:hover { 
            background: #e6c200; 
            transform: translateY(-2px);
        }


        /* Footer (Consistent with Homepage) */
        .footer {
            background-color: #1a2a44;
            color: #fff;
            padding: 40px 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer .footer-part {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }
        .footer .footer-part.logo-address img {
            height: 50px;
            margin-bottom: 15px;
        }
        .footer .footer-part.logo-address p {
            margin: 5px 0;
            font-size: 0.9rem;
        }
        .footer .footer-part.contact-info h3, .footer .footer-part.map h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 5px;
            display: inline-block;
        }
        .footer .footer-part.contact-info p {
            margin: 10px 0;
            font-size: 0.9rem;
        }
        .footer .footer-part.contact-info i {
            margin-right: 8px;
            color: #ffd700;
            min-width: 20px;
            text-align: center;
        }
        .footer .footer-part.contact-info a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer .footer-part.contact-info a:hover {
            color: #ffd700;
        }
        .footer .footer-part.map iframe {
            width: 100%;
            height: 200px;
            border: 0;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .footer .footer-part.links a {
            color: #fff;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 10px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .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: 85px; 
                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; }
            .hero { height: 40vh; }
            .hero-content h1 { font-size: 1.8rem; }
            .hero-content p { font-size: 0.9rem; }
            .navbar .logo img { height: 50px; }
            .about-section h2 { font-size: 2rem; }
            .about-card h3 { font-size: 1.3rem; }
            .about-card p { font-size: 0.85rem; }
            .footer { flex-direction: column; text-align: center; }
            .footer .footer-part { min-width: 100%; text-align: center; }
            .footer .footer-part.map iframe { height: 150px; }
            .footer .footer-part.links a { margin: 0 10px 10px 0; }
            .footer .footer-part.contact-info h3, .footer .footer-part.map h3 { margin-left: auto; margin-right: auto; }
            .footer .footer-part.contact-info p { text-align: left; max-width: 300px; margin: 10px auto; }
        }