 /* --- CORE VARIABLES --- */
        :root {
            --void-dark: #0a0202; --void-red: #2b0b0b; --primary-red: #cf2e2e;
            --deep-maroon: #5c1a1a; --cosmic-gold: #D4AF37; --starlight: #f5f0f0;
            --glass-bg: rgba(30, 5, 5, 0.7); --glass-border: rgba(207, 46, 46, 0.3);
            --neon-glow: 0 0 25px rgba(207, 46, 46, 0.4);
            --font-display: 'Cormorant Garamond', serif; --font-body: 'Montserrat', sans-serif;
            --header-height: 130px; 
        }

        /* --- RESET & BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { background-color: var(--void-dark); color: var(--starlight); font-family: var(--font-body); overflow-x: hidden; line-height: 1.8; -webkit-font-smoothing: antialiased; padding-top: var(--header-height); font-size: 17px; }
        #cosmos-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle at 50% 120%, #4a1212 0%, #000000 70%); }
        h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--starlight); letter-spacing: 0.05em; }
        .gold-text { color: var(--cosmic-gold); }
        .red-text { color: var(--primary-red); text-shadow: 0 0 15px rgba(207, 46, 46, 0.4); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 25px; position: relative; z-index: 2; }
        .section-spacing { padding: 140px 0; }

        /* Animations */
        @keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(207, 46, 46, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(207, 46, 46, 0); } 100% { box-shadow: 0 0 0 0 rgba(207, 46, 46, 0); } }
        @keyframes text-reveal { from { opacity: 0; transform: translateY(30px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
        @keyframes planet-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
        .reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

        /* Header CSS remains here to prevent flicker */
        header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background: rgba(10, 2, 2, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); z-index: 1000; display: flex; flex-direction: column; box-shadow: 0 5px 30px rgba(0,0,0,0.6); transition: height 0.3s ease; }
        .top-bar { width: 100%; background: linear-gradient(90deg, #1a0505 0%, #2b0b0b 50%, #1a0505 100%); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 10px 0; font-size: 0.85rem; color: #ccc; }
        .top-flex { display: flex; justify-content: flex-end; gap: 30px; align-items: center; }
        .top-item { display: flex; align-items: center; gap: 8px; }
        .top-item i { color: var(--primary-red); }
        .top-item a { color: #ccc; text-decoration: none; transition: color 0.3s; font-weight: 500; }
        .top-item a:hover { color: var(--cosmic-gold); }
        .main-nav-container { flex: 1; display: flex; align-items: center; width: 100%; }
        .nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-container { display: block; height: 75px; padding: 5px 0; transition: transform 0.3s; }
        .logo-container:hover { transform: scale(1.05); }
        .logo-img { height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgba(207, 46, 46, 0.4)); }
        .nav-menu { display: flex; gap: 45px; list-style: none; }
        .nav-menu a { color: var(--starlight); text-decoration: none; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.15em; transition: color 0.3s; font-weight: 600; position: relative; }
        .nav-menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--primary-red); transition: width 0.3s; }
        .nav-menu a:hover { color: var(--primary-red); }
        .nav-menu a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 2rem; color: var(--starlight); cursor: pointer; transition: color 0.3s; padding: 10px; }
        .close-menu-btn { display: none; position: absolute; top: 20px; right: 25px; font-size: 2rem; color: var(--primary-red); cursor: pointer; z-index: 1001; transition: transform 0.3s ease; }

        /* Hero */
        .hero { height: calc(100vh - var(--header-height)); min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; width: 900px; height: 900px; background: radial-gradient(circle, rgba(140, 30, 30, 0.15) 0%, transparent 65%); border-radius: 50%; top: -250px; right: -250px; animation: pulse-ring 12s infinite alternate; z-index: 0; }
        .hero-content { z-index: 10; }
        .hero-pre { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--primary-red); margin-bottom: 25px; display: block; animation: text-reveal 1.5s ease forwards; font-weight: 700; text-shadow: 0 0 10px rgba(0,0,0,0.8); }
        .hero h1 { font-size: 5.5rem; line-height: 1.1; margin-bottom: 25px; text-shadow: 0 0 40px rgba(207, 46, 46, 0.4); animation: text-reveal 1.5s ease forwards 0.3s; opacity: 0; background: linear-gradient(to right, #fff, #e0e0e0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 1.5rem; max-width: 650px; margin: 0 auto 50px; font-weight: 300; color: rgba(240, 230, 230, 0.95); animation: text-reveal 1.5s ease forwards 0.6s; opacity: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .hero-btn { display: inline-block; padding: 20px 50px; border: 2px solid var(--primary-red); color: #fff; background: linear-gradient(45deg, rgba(207,46,46,0.2), rgba(207,46,46,0.5)); text-decoration: none; text-transform: uppercase; letter-spacing: 0.2em; font-size: 1rem; transition: all 0.4s ease; position: relative; overflow: hidden; animation: text-reveal 1.5s ease forwards 0.9s; opacity: 0; font-weight: 700; border-radius: 4px; }
        .hero-btn:hover { background: var(--primary-red); box-shadow: 0 0 40px rgba(207, 46, 46, 0.7); transform: translateY(-3px); }

        /* Authority */
        .authority-section { background: linear-gradient(to bottom, transparent, rgba(40, 10, 10, 0.8)); position: relative; overflow: hidden; }
        .authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
        .auth-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 550px; }
        .chakra-bg-img { position: absolute; width: 140%; opacity: 0.15; animation: planet-rotate 120s linear infinite; z-index: 0; filter: sepia(100%) hue-rotate(-50deg) saturate(300%); }
        .main-auth-img { position: relative; z-index: 2; width: 85%; border-radius: 8px; box-shadow: 0 30px 60px rgba(0,0,0,0.9); border: 1px solid var(--primary-red); object-fit: cover; transition: transform 0.5s; }
        .auth-text h2 { font-size: 3.5rem; margin-bottom: 35px; color: var(--starlight); line-height: 1.1; }
        .stat-row { display: flex; gap: 60px; margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--glass-border); }
        .stat h3 { font-size: 3rem; color: var(--primary-red); font-weight: 700; }

        /* Energy Nodes */
        .energy-section { text-align: center; }
        .section-header h2 { font-size: 3.5rem; margin-bottom: 15px; text-shadow: var(--neon-glow); }
        .energy-nodes { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
        .node { background: rgba(30, 5, 5, 0.6); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(15px); padding: 50px 35px; width: 300px; text-align: left; border-radius: 12px; transition: all 0.5s ease; position: relative; overflow: hidden; }
        .node:hover { transform: translateY(-15px); background: rgba(50, 10, 10, 0.8); border-color: var(--primary-red); }
        .node-icon { font-size: 2.2rem; color: var(--primary-red); margin-bottom: 25px; display: block; }

        /* Services */
        .services-section { background: radial-gradient(circle at 50% 50%, #2b0b0b 0%, #0a0202 100%); padding-bottom: 150px; }
        .service-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .service-item { padding: 25px; background: rgba(40, 10, 10, 0.5); border: 1px solid rgba(207, 46, 46, 0.3); backdrop-filter: blur(10px); transition: all 0.4s; position: relative; display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; }
        .service-item:hover { background-color: rgba(60, 15, 15, 0.9); border-color: var(--primary-red); transform: translateY(-10px); }
        .service-img-wrap { width: 100%; height: 240px; overflow: hidden; margin-bottom: 25px; border-radius: 6px; }
        .service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .call-now-btn-small { background: var(--primary-red); color: #fff; padding: 10px 22px; border-radius: 30px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.3s; }

        /* Process */
        .process-path { display: flex; justify-content: space-between; position: relative; margin-top: 80px; }
        .process-line { position: absolute; top: 25px; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--primary-red), transparent); z-index: 0; opacity: 0.6; }
        .step { position: relative; z-index: 1; text-align: center; flex: 1; }
        .step-dot { width: 50px; height: 50px; background: var(--primary-red); border-radius: 50%; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 0 25px rgba(207, 46, 46, 0.5); transition: 0.3s; }

        /* CTA & Footer */
        .cta-section { position: relative; text-align: center; padding: 160px 0 100px; background: radial-gradient(circle at center, #2b0b0b 0%, #000 100%); }
        .large-contact-link { font-size: 3.5rem; font-family: var(--font-display); color: #fff; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 25px; }
        .large-contact-link i { color: var(--primary-red); }
        .action-btn { padding: 22px 45px; text-decoration: none; border-radius: 50px; display: flex; align-items: center; gap: 15px; font-weight: 700; transition: 0.3s; }
        .btn-red { background: var(--primary-red); color: #fff; }
        .btn-outline { border: 2px solid rgba(255,255,255,0.4); color: #fff; }
        .map-section { padding: 80px 0 120px; background: #000; }
        .map-details { background: rgba(40, 10, 10, 0.5); padding: 40px; border-radius: 12px; border: 1px solid var(--glass-border); }
        .map-frame { height: 450px; border-radius: 12px; overflow: hidden; border: 2px solid var(--primary-red); }
        footer { padding: 100px 0 50px; border-top: 1px solid var(--glass-border); background: #050101; color: #bbb; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 60px; }
        .footer-logo-img { height: 70px; margin-bottom: 25px; }
        .footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .footer-links a { color: #999; text-decoration: none; transition: 0.3s; }
        .float-btn { position: fixed; bottom: 30px; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; text-decoration: none; z-index: 999; transition: 0.3s; }
        .float-whatsapp { right: 30px; background: #25D366; }
        .float-call { left: 30px; background: var(--primary-red); animation: pulse-ring 2s infinite; }

        @media (max-width: 768px) {
            :root { --header-height: 100px; }
            .hero h1 { font-size: 3rem; }
            .hamburger { display: block; }
            .close-menu-btn { display: block; }
            .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(5, 1, 1, 0.99); flex-direction: column; justify-content: center; align-items: center; opacity: 0; transform: translateX(100%); pointer-events: none; transition: 0.4s; z-index: 2000; }
            .nav-menu.active { opacity: 1; transform: translateX(0); pointer-events: all; }
            .nav-menu a { font-size: 1.8rem; }
            .authority-grid { grid-template-columns: 1fr; }
            .service-layout { grid-template-columns: 1fr; }
            .process-path { flex-direction: column; }
        }
        
        
        
        /* --- UNIQUE DROPDOWN STYLES --- */

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Icon Rotation */
.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Design */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: rgba(10, 2, 2, 0.98); /* Matching your dark theme */
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    list-style: none;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

/* Hover State */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual Link Styles */
.dropdown-menu li {
    padding: 0 20px;
    opacity: 0; /* For staggered effect */
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Reveal Links when Parent is Hovered */
.dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay (The unique effect) */
.dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
/* ... and so on for all items */

.dropdown-menu a {
    display: block;
    padding: 10px 0;
    color: var(--starlight) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
    text-transform: none !important; /* Keep it readable */
    letter-spacing: 0.5px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

/* Remove border from last item */
.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Hover Effect on Links */
.dropdown-menu a:hover {
    color: var(--cosmic-gold) !important;
    padding-left: 10px; /* Slight push to the right */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Pointer Triangle */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--glass-border);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Toggle with JS or keep open in mobile view */
        padding: 10px 0 10px 20px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        opacity: 1;
        transform: none;
    }
}


/* Ensure the top bar is readable on small screens */
    @media (max-width: 768px) {
        .top-bar {
            padding: 8px 0;
            font-size: 0.75rem; /* Slightly smaller text to fit */
        }
        .top-flex {
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap; /* Stack items if they are too wide */
        }
        .top-item span {
            display: inline-block;
            max-width: 180px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; /* Prevents address from breaking layout */
        }
        
        /* The Main Navigation Container */
        .main-nav-container {
            padding: 10px 0;
        }
        
        .logo-container {
            height: 50px; /* Scale logo for mobile */
        }

        /* --- FULL SCREEN MOBILE MENU (100% View) --- */
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%; /* Full width */
            height: 100vh; /* Full height */
            background: rgba(10, 2, 2, 0.98); /* Solid dark background */
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            
            /* Hidden by default */
            opacity: 0;
            transform: translateX(100%);
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .nav-menu.active {
            opacity: 1;
            transform: translateX(0);
            visibility: visible;
        }

        .nav-menu li {
            margin: 15px 0;
            width: 100%;
            text-align: center;
        }

        .nav-menu a {
            font-size: 1.5rem !important; /* Large readable links */
            display: block;
            width: 100%;
        }

        /* Mobile Dropdown Adjustments */
        .dropdown-menu {
            position: static !important;
            width: 100% !important;
            background: rgba(255, 255, 255, 0.05) !important;
            box-shadow: none !important;
            transform: none !important;
            display: none; /* Controlled by click on mobile */
            padding: 10px 0 !important;
            border: none !important;
        }
        
        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown-icon {
            transition: transform 0.3s;
        }
        .dropdown.active .dropdown-icon {
            transform: rotate(180deg);
        }
    }
    
    
    
    html, body {
            max-width: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        /* 2. Responsive Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px; /* Standardized mobile padding */
        }

        /* 3. Section Spacing for Mobile */
        @media (max-width: 768px) {
            .section-spacing {
                padding: 60px 0; /* Reduced from 140px for mobile ergonomics */
            }
            
            h1 { font-size: 2.5rem !important; }
            h2 { font-size: 2rem !important; }
            p { font-size: 1rem !important; }

            /* 4. Grid Adjustments */
            .authority-grid, 
            .service-layout, 
            .map-wrapper {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .auth-text {
                padding-left: 0 !important; /* Remove the 40px desktop padding */
                text-align: center;
            }

            .auth-visual {
                min-height: auto;
                margin-bottom: 20px;
            }

            .main-auth-img {
                width: 100%; /* Image takes full width of container */
                max-width: 350px;
                margin: 0 auto;
            }

            /* 5. Stats Scaling */
            .stat-row {
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .stat h3 { font-size: 2rem; }

            /* 6. Nodes & Cards */
            .node {
                width: 100% !important;
                margin: 0 auto;
            }

            /* 7. CTA Links */
            .large-contact-link {
                font-size: 1.5rem !important;
                flex-direction: column;
                gap: 10px;
            }

            /* 8. Map Frame */
            .map-frame {
                height: 300px;
            }
        }
        
        
        
        /* Grid adjustments */
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        padding-bottom: 40px;
    }

    /* Mobile-specific Tweaks */
    @media (max-width: 768px) {
        .footer-grid {
            display: flex;
            flex-direction: column;
            text-align: center; /* Center text for mobile balance */
            gap: 40px;
        }

        .footer-col {
            width: 100%;
        }

        .footer-logo-img {
            margin: 0 auto 25px; /* Center logo */
            height: 60px; /* Slightly smaller logo for mobile */
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Keep links in two columns on mobile */
            gap: 10px;
            justify-items: center;
        }

        .footer-contact-info p {
            justify-content: center; /* Center the icons and text */
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-contact-info i {
            margin-top: 3px;
        }

        /* Adjusting Floating Buttons for Mobile */
        .float-btn {
            width: 55px; /* Smaller buttons on mobile to save space */
            height: 55px;
            font-size: 1.4rem;
            bottom: 20px;
        }

        .float-call {
            left: 20px;
        }

        .float-whatsapp {
            right: 20px;
        }

        /* Add padding at the very bottom so content isn't hidden behind floating buttons */
        footer {
            padding-bottom: 100px !important;
        }
    }
    
    
    
    /* Additional staggered delays for the 10 location items */
#locations-dropdown .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
#locations-dropdown .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
#locations-dropdown .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
#locations-dropdown .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
#locations-dropdown .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
#locations-dropdown .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
#locations-dropdown .dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
#locations-dropdown .dropdown-menu li:nth-child(8) { transition-delay: 0.4s; }
#locations-dropdown .dropdown-menu li:nth-child(9) { transition-delay: 0.45s; }
#locations-dropdown .dropdown-menu li:nth-child(10) { transition-delay: 0.5s; }

/* Styling to ensure the dropdown fits the longer list */
#locations-dropdown .dropdown-menu {
    max-height: 450px; /* Prevents it from going off-screen on smaller laptops */
    overflow-y: auto;
}

/* Custom Scrollbar for the dropdown to keep it elegant */
#locations-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 3px;
}
#locations-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-red);
}


/* Container for the buttons to ensure proper spacing */
.service-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Style for the "Read More" link */
.read-more-btn {
    color: #4a90e2; /* Bright blue color from image */
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.read-more-btn:hover {
    color: #ffffff; /* Turns white on hover */
}

/* Style for the "Call Now" button */
.call-now-btn-small {
    display: block;
    width: 100%; /* Spans the width of the card */
    background-color: #d32f2f; /* Deep red color */
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

/* Hover effect for the red button */
.call-now-btn-small:hover {
    background-color: #b71c1c; /* Darker red */
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Active state for a "clicked" feel */
.call-now-btn-small:active {
    transform: translateY(0);
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr; /* Adjusts widths for content balance */
    gap: 20px;
    align-items: start;
    width: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Splits the long list into two columns */
    gap: 10px;
}

/* Ensure images and text don't overflow */
.footer-col {
    min-width: 0; 
}

/* Responsive fix: Stack on mobile */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}