 :root {
            --primary-blue: #0056b3;
            --hover-blue: #003d7a;
            --light-bg: #f8f9fa;
            --text-dark: #333;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Navbar Styles --- */
        .navbar {
            padding: 1rem 2rem;
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
            letter-spacing: -0.5px;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin-left: 1.5rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover:after {
            width: 100%;
        }

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

        /* --- FAQ Section --- */
        .faq-header {
            padding: 80px 0 40px;
            text-align: center;
            animation: fadeInDown 0.8s ease-out;
        }

        .faq-section {
            padding-bottom: 80px;
            animation: fadeInUp 0.8s ease-out;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-radius: 8px !important;
            overflow: hidden;
        }

        .accordion-button {
            font-weight: 600;
            padding: 1.25rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-blue);
            color: white;
            box-shadow: none;
        }

        .accordion-button:after {
            transition: transform 0.3s ease;
        }

        .accordion-button:hover {
            background-color: #f1f7ff;
            color: var(--primary-blue);
        }

        .accordion-button:not(.collapsed):hover {
            color: white;
            background-color: var(--hover-blue);
        }

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

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        } */
            /* Footer */
        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;
        }
        /* Add this to ensure links inside the bottom bar are also white */
.footer-bottom a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/* Update these sections in your <style> block */

/* This fixes the text under "Buildingभारत" */
footer p.text-muted {
    color: #ffffff !important;
    opacity: 0.8; /* Keeps it professional but readable */
}

/* This fixes the bottom links and copyright text */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff !important; /* Forces all text to white */
}

.footer-bottom a {
    color: #ffffff !important;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.7;
    color: #ffffff !important;
}
        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* 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;
        }
    }
    .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;
}

