    a{
        text-decoration: none;
      }
        /* CSS VARIABLES FOR DARK THEME */
        :root {
            --primary-red: #cc0000;
            --bg-deep: #0a0a0a;
            --card-dark: #151515;
            --text-white: #ffffff;
            --text-dim: #b0b0b0;
            --footer-black: #000000; 
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; scroll-behavior: smooth; }

        body { 
            background-color: var(--bg-deep); 
            color: var(--text-white); 
            overflow-x: hidden; 
            line-height: 1.8; 
        }

        /* Navigation Bar */
        nav {
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
            height: 80px;
        }

        .logo img { height: 50px; width: auto; display: block; }

        .nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
        .nav-links a:hover { color: var(--primary-red); }

        .menu-toggle {
            display: none; 
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }

        /* --- SCREEN 1: HERO SECTION --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=1600');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 10%;
        }
        .hero h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
        .hero h1 span { color: var(--primary-red); }
        .hero p { font-size: 1.1rem; max-width: 800px; color: var(--text-dim); margin-bottom: 35px; }
        .btn-group { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
        .btn { padding: 15px 30px; border-radius: 5px; font-weight: bold; text-decoration: none; transition: 0.3s; text-transform: uppercase; border: none; cursor: pointer; display: inline-block; }
        .btn-red { background: var(--primary-red); color: white; }
        .btn-white { border: 2px solid white; color: white; background: transparent; }
        .btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(204, 0, 0, 0.4); }

        /* --- SCREEN 2: SEO CONTENT BLOCK --- */
        .content-hub { padding: 80px 10%; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .content-hub h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 20px; }
        .content-hub h2 span { color: var(--primary-red); }
        .content-hub p { margin-bottom: 20px; color: var(--text-dim); font-size: 1rem; }

        /* --- SCREEN 3: SERVICES GRID --- */
        .services-grid { padding: 80px 10%; background: #050505; }
        .section-title { text-align: center; margin-bottom: 50px; font-size: clamp(1.5rem, 5vw, 2.5rem); text-transform: uppercase; }
        .section-title span { color: var(--primary-red); }
        .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .s-card { background: var(--card-dark); padding: 30px; border-radius: 10px; border: 1px solid #222; transition: 0.4s; }
        .s-card:hover { border-color: var(--primary-red); transform: translateY(-10px); }
        .s-card i { font-size: 2.5rem; color: var(--primary-red); margin-bottom: 20px; }
        .s-card h3 { margin-bottom: 15px; font-size: 1.3rem; color: #fff; }

        /* --- SCREEN 4: TRUST & STATS --- */
        .trust-section { padding: 80px 10%; text-align: center; }
        .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 50px; }
        .trust-box h4 { font-size: clamp(2rem, 5vw, 3rem); color: var(--primary-red); margin-bottom: 10px; }
        .trust-box p { font-weight: bold; color: var(--text-dim); font-size: 0.9rem; }

        /* --- SCREEN 5: LOCATION & CONTACT --- */
        .location-section { padding: 80px 10%; background: #080808; }
        .loc-container { display: flex; flex-wrap: wrap; gap: 40px; background: var(--card-dark); padding: 40px; border-radius: 20px; border: 1px solid #333; }
        .loc-info { flex: 1; min-width: 280px; }
        .loc-map { flex: 1.5; min-width: 280px; height: 400px; border-radius: 15px; overflow: hidden; border: 2px solid #222; }

        /* --- FOOTER (BLACK) --- */
        footer {
            background-color: var(--footer-black);
            padding: 60px 10% 20px;
            color: #fff;
            border-top: 4px solid var(--primary-red);
        }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 50px; }
        .footer-col h4 { color: var(--primary-red); margin-bottom: 20px; text-transform: uppercase; font-size: 1.1rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; color: var(--text-dim); font-size: 0.9rem; transition: 0.3s; cursor: pointer; }
        .footer-col li:hover { color: #fff; transform: translateX(5px); }
        
        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a { color: white; background: #222; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; text-decoration: none; }
        .social-links a:hover { background: var(--primary-red); transform: translateY(-3px); }

        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1a1a1a; color: #555; font-size: 0.8rem; }

        /* Floating WhatsApp */
        .whatsapp-float { 
            position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; 
            width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; 
            align-items: center; font-size: 30px; z-index: 1000; box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
            transition: 0.3s; text-decoration: none;
        }

        /* --- RESPONSIVENESS BREAKPOINTS --- */

        @media (max-width: 1024px) {
            .content-hub { grid-template-columns: 1fr; text-align: center; }
            .content-hub div[data-aos="fade-left"] { order: -1; }
        }

        @media (max-width: 768px) {
            nav { padding: 10px 5%; }
            .hero { height: auto; padding: 140px 5% 80px; }
            .loc-container { padding: 20px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 550px) {
            .menu-toggle { display: block; }
            .nav-links {
                display: none; 
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(0,0,0,0.98);
                padding: 30px 0;
                border-bottom: 2px solid var(--primary-red);
            }
            .nav-links.active { display: flex; }
            .btn-group .btn { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .social-links { justify-content: center; }
            .phone-nav { display: none; } /* Hide the duplicate call button on tiny screens */
        }

        @media (max-width: 320px) {
            .hero h1 { font-size: 1.8rem; }
            .trust-grid { grid-template-columns: 1fr; }
            .logo img { height: 35px; }
        }





      
