  * { 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; }

        /* Facilities Section */
        .facilities {
            padding: 100px 20px 20px 20px; /* Increased top padding to prevent overlap with navbar */
            background-color: #f4f6f9;
            text-align: center;
        }
        .facilities h1 {
            font-size: 2.5rem;
            color: #1a2a44;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 10px;
        }
        .facilities h1::after {
            content: '';
            width: 50px;
            height: 3px;
            background-color: #ffd700;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .facility-card {
            display: flex;
            align-items: center;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .facility-card .icon {
            flex: 0 0 60px;
            margin-right: 20px;
        }
        .facility-card .icon i {
            font-size: 40px;
            color: #1a2a44;
        }
        .facility-card .content {
            flex: 1;
            text-align: left;
        }
        .facility-card .content h3 {
            font-size: 1.5rem;
            color: #1a2a44;
            margin-bottom: 10px;
        }
        .facility-card .content p {
            color: #333;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Footer */
        .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; }
            .facilities h1 { font-size: 1.8rem; }
            .facility-card { flex-direction: column; align-items: center; text-align: center; }
            .facility-card .icon { margin-right: 0; margin-bottom: 15px; }
            .facility-card .content { text-align: center; }
            .facility-card .content h3 { font-size: 1.3rem; }
            .facility-card .content p { font-size: 0.9rem; }
            .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; }
        }

        /* Schema Markup for SEO */
        .schema-hidden { display: none; }