   :root {
            --primary-blue: #0056b3;
            --dark-blue: #003d80;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --transition: all 0.3s ease-in-out;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
            transition: var(--transition);
        }

        .navbar-brand:hover {
            color: var(--dark-blue) !important;
            transform: scale(1.05);
        }

        .nav-link {
            font-weight: 600;
            color: #444 !important;
            margin: 0 10px;
            transition: var(--transition);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }

        /* --- Contact Card & Animations --- */
        .contact-container {
            padding: 80px 0;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact-card {
            background: var(--white);
            border: none;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: var(--transition);
            overflow: hidden;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.15);
        }

        .form-control {
            border: 2px solid #eee;
            padding: 12px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
            transform: translateY(-2px);
        }

        .btn-submit {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            border: none;
            width: 100%;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background-color: var(--dark-blue);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }

        .contact-info-icon {
            color: var(--primary-blue);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* --- Footer --- */
       /* footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-link {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--primary-blue);
            padding-left: 5px;
        }

        .social-icons a {
            font-size: 1.5rem;
            color: #ccc;
            margin-right: 15px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            font-size: 0.9rem;
        } */
         footer { 
            background: #111; 
            color: #ccc; 
            padding: 60px 0 20px; 
        }
        footer h5 { 
            color: white; 
            font-weight: 700; 
            margin-bottom: 20px; 
        }
        footer a { 
            color: #ccc; 
            text-decoration: none; 
            transition: 0.3s; 
        }
        footer a:hover { 
            color: var(--primary-blue); 
        }
        .social-icons i { 
            font-size: 1.5rem; 
            margin-right: 15px; 
            cursor: pointer;
             transition: 0.3s; 
            }
        .social-icons i:hover { 
            color: var(--primary-blue); 
        }

        .social-icons a {
            font-size: 1.5rem;
            color: white;
            margin-right: 15px;
            transition: transform 0.3s, color 0.3s;
            display: inline-block;
        }

        .social-icons a:hover {
            color: var(--primary-blue);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #ffffff;
        }
        /* Right-side Map & Address Styling */
    .map-address-col {
        display: flex;
        align-items: center; /* Aligns map and text vertically center */
        gap: 12px;
        padding-left: 20px; /* Separates it from the social icons */
    }

    .footer-map-box {
        width: 80px;
        height: 65px;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid #444;
        flex-shrink: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .footer-map-box:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
    }

    .footer-address-text {
        font-size: 11px;
        line-height: 1.4;
        color: #adb5bd;
        margin: 0;
        text-align: left;
    }

    /* Mobile handling: Stacks on mobile, stays side-by-side on Desktop */
    @media (max-width: 768px) {
        .map-address-col {
            padding-left: 0;
            justify-content: center;
            margin-top: 20px;
        }
    }
    /* Right-side Map & Address Styling */
    .map-address-col {
        display: flex;
        align-items: center; /* Aligns map and text vertically center */
        gap: 12px;
        padding-left: 20px; /* Separates it from the social icons */
    }

    .footer-map-box {
        width: 80px;
        height: 65px;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid #444;
        flex-shrink: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .footer-map-box:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
    }

    .footer-address-text {
        font-size: 11px;
        line-height: 1.4;
        color: #adb5bd;
        margin: 0;
        text-align: left;
    }
    .footer-map-box {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map-box {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;   /* IMPORTANT */
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;        /* fixed size same as map */
    height: 90px;        /* fixed size same as map */
    z-index: 2;
}
