* { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Roboto', sans-serif; 
            background: linear-gradient(135deg, #fef5e7 0%, #e0e7ff 100%); 
            min-height: 100vh; 
            overflow-x: hidden; 
            position: relative; 
        }
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 99, 71, 0.15), transparent 70%);
            z-index: -1;
            opacity: 0.4;
        }

        * { 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 { 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            text-decoration: none; 
            color: #fff; 
            font-size: 1.4rem; 
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
            transition: transform 0.3s ease, box-shadow 0.3s ease; 
        }
        .floating-buttons .call-btn { 
            background: linear-gradient(45deg, #28a745, #34c759); 
        }
        .floating-buttons .whatsapp-btn { 
            background: linear-gradient(45deg, #25d366, #2ecc71); 
        }
        .floating-buttons a:hover { 
            transform: scale(1.15); 
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); 
        }

        /* Contact Section */
        .contact-section { 
            padding: 80px 20px; 
            max-width: 1200px; 
            margin: 80px auto 20px; 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 20px; 
            align-items: stretch; 
        }
        .contact-details, .contact-map { 
            display: flex; 
            flex-direction: column; 
        }
        .contact-details .card, .contact-map .card { 
            background: rgba(255, 255, 255, 0.9); 
            border-radius: 20px; 
            padding: 30px; 
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.5); 
            transition: transform 0.4s ease, box-shadow 0.4s ease; 
            flex: 1; 
            display: flex; 
            flex-direction: column; 
            min-height: 420px; 
        }
        .contact-details .card:hover, .contact-map .card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); 
        }
        .contact-details .card h2, .contact-map .card h2 { 
            font-family: 'Playfair Display', serif; 
            font-size: 2.2rem; 
            color: #1a2a44; 
            margin-bottom: 20px; 
            text-align: center; 
            background: linear-gradient(90deg, #ff6f61, #d4a017); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            animation: fadeInUp 0.8s ease; 
        }
        .contact-details .card p { 
            color: #34495e; 
            line-height: 1.7; 
            margin-bottom: 20px; 
            text-align: center; 
            font-size: 1rem; 
        }
        .contact-details .card .contact-list { 
            list-style: none; 
            padding: 0; 
            flex: 1; 
        }
        .contact-details .card .contact-list li { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            margin-bottom: 15px; 
            padding: 10px; 
            border-radius: 10px; 
            transition: background 0.3s ease, transform 0.3s ease; 
            background: rgba(255, 255, 255, 0.8); 
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
        }
        .contact-details .card .contact-list li:hover { 
            background: rgba(255, 99, 71, 0.15); 
            transform: translateX(8px); 
        }
        .contact-details .card .contact-list li img { 
            width: 24px; 
            height: 24px; 
            filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(1000%) hue-rotate(330deg); 
        }
        .contact-details .card .contact-list li a { 
            color: #1a2a44; 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 1rem; 
            transition: color 0.3s ease; 
        }
        .contact-details .card .contact-list li a:hover { 
            color: #ff6f61; 
        }
        .contact-map .card iframe { 
            width: 100%; 
            height: 100%; 
            min-height: 320px; 
            border-radius: 15px; 
            border: none; 
            flex: 1; 
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
        }

        /* Divider Line */
        .divider-line { 
            max-width: 1200px; 
            margin: 10px auto; 
            height: 4px; 
            background: linear-gradient(90deg, transparent, #ff6f61, transparent); 
            opacity: 0.6; 
            border-radius: 2px; 
        }

        /* Contact Form Section */
        .contact-form-section { 
            padding: 60px 20px; 
            background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%); 
            position: relative; 
        }
        .contact-form-section::before { 
            content: ''; 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: radial-gradient(circle at bottom, rgba(255, 99, 71, 0.1), transparent 70%); 
            z-index: -1; 
        }
        .form-card { 
            max-width: 600px; 
            margin: 0 auto; 
            background: rgba(255, 255, 255, 0.95); 
            border-radius: 20px; 
            padding: 35px; 
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.5); 
            animation: fadeInUp 1s ease; 
        }
        .form-card h2 { 
            font-family: 'Playfair Display', serif; 
            font-size: 2.2rem; 
            color: #1a2a44; 
            text-align: center; 
            margin-bottom: 20px; 
            background: linear-gradient(90deg, #ff6f61, #d4a017); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }
        .form-card form { 
            display: grid; 
            gap: 15px; 
        }
        .form-card input, .form-card select { 
            padding: 12px 15px; 
            border: none; 
            border-radius: 10px; 
            font-size: 1rem; 
            background: rgba(255, 255, 255, 0.8); 
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); 
            transition: box-shadow 0.3s ease, transform 0.3s ease; 
        }
        .form-card input:focus, .form-card select:focus { 
            outline: none; 
            box-shadow: 0 0 8px rgba(255, 99, 71, 0.3); 
            transform: scale(1.01); 
        }
        .form-card input::placeholder { 
            color: #7f8c8d; 
            font-style: italic; 
        }
        .form-card button { 
            background: linear-gradient(45deg, #ff6f61, #d4a017); 
            color: #fff; 
            padding: 14px; 
            border: none; 
            border-radius: 10px; 
            font-size: 1.1rem; 
            font-weight: 600; 
            cursor: pointer; 
            position: relative; 
            overflow: hidden; 
            transition: transform 0.3s ease, box-shadow 0.3s ease; 
        }
        .form-card button::before { 
            content: ''; 
            position: absolute; 
            top: 50%; 
            left: 50%; 
            width: 0; 
            height: 0; 
            background: rgba(255, 255, 255, 0.2); 
            border-radius: 50%; 
            transform: translate(-50%, -50%); 
            transition: width 0.4s ease, height 0.4s ease; 
        }
        .form-card button:hover::before { 
            width: 300px; 
            height: 300px; 
        }
        .form-card button:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 6px 15px rgba(255, 99, 71, 0.4); 
        }

        /* 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); }
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar .nav-links { 
                display: none; 
                flex-direction: column; 
                position: absolute; 
                top: 60px; 
                left: 0; 
                width: 100%; 
                background: linear-gradient(90deg, #1a2a44, #2b3a55); 
                padding: 15px; 
                text-align: center; 
            }
            .navbar .nav-links.active { 
                display: flex; 
            }
            .navbar .contact-btns { 
                display: flex; 
                gap: 8px; 
            }
            .navbar .contact-btns.active { 
                position: static; 
                padding: 10px 0; 
            }
            .menu-toggle { 
                display: block; 
            }
            .floating-buttons { 
                display: flex; 
            }
            .navbar .logo img { 
                height: 45px; 
            }
            .contact-section { 
                grid-template-columns: 1fr; 
                padding: 60px 15px; 
                margin-top: 60px; 
                gap: 15px; 
            }
            .contact-details .card, .contact-map .card { 
                min-height: 360px; 
                padding: 25px; 
            }
            .contact-details .card h2, .contact-map .card h2 { 
                font-size: 1.9rem; 
            }
            .contact-map .card iframe { 
                min-height: 260px; 
            }
            .form-card { 
                padding: 25px; 
            }
            .form-card h2 { 
                font-size: 1.9rem; 
            }
            .form-card input, .form-card select, .form-card button { 
                font-size: 0.95rem; 
                padding: 10px; 
            }
            .divider-line { 
                margin: 8px auto; 
            }
            .footer { 
                flex-direction: column; 
                text-align: center; 
            }
            .footer .footer-part { 
                min-width: 100%; 
            }
            .footer .footer-part.map iframe { 
                height: 150px; 
            }
        }
        @media (max-width: 480px) {
            .contact-details .card, .contact-map .card, .form-card { 
                padding: 20px; 
                min-height: 320px; 
            }
            .contact-details .card h2, .contact-map .card h2, .form-card h2 { 
                font-size: 1.7rem; 
            }
            .contact-map .card iframe { 
                min-height: 220px; 
            }
            .form-card button { 
                padding: 12px; 
            }
        }
        .main-hero-h1 {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        color: #1a2a44;
        text-align: center;
        margin: 100px auto 20px;
        max-width: 90%;
        background: linear-gradient(90deg, #ff6f61, #0ae811);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        }