/* index.html ki css */
         /* --- General Setup --- */
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', 'Segoe UI', sans-serif; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; } 
        body { background-color: #f8fafc; color: #333; line-height: 1.7; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: #081226; color: #94a3b8; padding: 10px 5%;
            display: flex; justify-content: flex-end; align-items: center; gap: 25px; font-size: 13px; font-weight: 500;
        }
        .top-bar a:hover { color: #38bdf8; }
        .top-bar .phone { color: white; font-weight: bold; font-size: 15px; display: flex; align-items: center; gap: 8px; }

        /* --- MAIN NAVBAR --- */
        .main-nav {
            background-color: #0b1e3f; color: white; padding: 15px 5%;
            display: flex; justify-content: flex-start; align-items: center;
            position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            gap: 20px; 
        }
        
        .logo { display: flex; align-items: center; }
        .logo img { 
            height: 50px; 
            object-fit: contain; 
            filter: brightness(0) invert(75%) sepia(50%) saturate(4000%) hue-rotate(170deg) brightness(1.1) drop-shadow(0 0 10px rgba(56, 189, 248, 0.8));
        }
        
        .hamburger { display: none; font-size: 32px; cursor: pointer; color: white; user-select: none; margin-left: auto; }

        .nav-links { display: flex; align-items: center; gap: 18px; transition: 0.3s ease-in-out; margin: 0 auto; }
        
        .nav-links > a, .dropdown > button { 
            color: white; font-weight: 600; font-size: 15px; background: none; border: none; cursor: pointer; padding: 10px 0; white-space: nowrap;
        }
        .nav-links > a:hover, .dropdown:hover > button { color: #38bdf8; }

        /* --- DROPDOWNS --- */
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content {
            display: none; position: absolute; background-color: white; min-width: 250px;
            box-shadow: 0px 8px 25px rgba(0,0,0,0.2); z-index: 1; top: 100%; left: 0; border-radius: 6px; 
            max-height: 450px; overflow-y: auto;
        }
        
        .dropdown-content::-webkit-scrollbar { width: 6px; }
        .dropdown-content::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
        
        .dropdown-content a { color: #1e293b; padding: 12px 20px; display: block; font-size: 14px; font-weight: 600; border-bottom: 1px solid #f1f5f9; white-space: normal; line-height: 1.4; }
        .dropdown-content a:hover { background-color: #f8fafc; color: #38bdf8; padding-left: 25px; }
        .dropdown:hover .dropdown-content { display: block; }
        
        .calc-btn-nav { background-color: #bef264; color: #0b1e3f !important; padding: 10px 20px !important; border-radius: 30px; font-weight: bold; text-align: center; }
        .calc-btn-nav:hover { background-color: #a3e635; }
/* Purana code wese hi rahega, bas ye niche wali lines add/update karein */

.nav-links > a, .dropdown > button { 
    color: white; 
    font-weight: 600; 
    font-size: 15px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 10px 0; 
    white-space: nowrap;
    text-decoration: none; /* Underline khatam karne ke liye */
}

/* Hover par blue color */
.nav-links > a:hover, .dropdown:hover > button { 
    color: #38bdf8; 
}

/* --- ACTIVE PAGE COLOR --- */
/* Ye class PHP khud add karega jab page match hoga */
.nav-links > a.active { 
    color: #38bdf8 !important; 
}
        /* --- HERO SECTION --- */
        .hero { 
            display: flex; justify-content: space-between; align-items: center; 
            
            /* 👇 YAHAN MAIN HOME PAGE KI BACKGROUND IMAGE LAGEGI 👇 */
            background: linear-gradient(rgba(17, 47, 99, 0.251), rgba(33, 63, 114, 0.85)), url('../img/busy-crowded-traffic-jam-road.jpg'); 
            
            background-color: #0b1e3f62; 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 80px 5%; gap: 50px; flex-wrap: wrap;
        }
        
        .hero-content { flex: 1; color: white; min-width: 300px; }
        .hero-content h1 { font-size: 50px; margin-bottom: 20px; line-height: 1.1; }
        .hero-content p { font-size: 18px; margin-bottom: 30px; color: #cbd5e1; }
        .trust-badges { display: flex; flex-wrap: wrap; gap: 20px; color: #bef264; font-weight: bold; font-size: 15px; margin-top: 20px;}
        .trust-badges span { display: flex; align-items: center; gap: 6px; }

        /* --- WIZARD FORM (MULTI-STEP) --- */
        .calculator { background: white; padding: 35px; border-radius: 12px; width: 100%; max-width: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); flex-shrink: 0; min-height: 400px; }
        .calculator h2 { font-size: 24px; margin-bottom: 10px; color: #0b1e3f; text-align: center;}
        .form-subtitle { text-align: center; color: #64748b; font-size: 14px; margin-bottom: 25px; }
        
        .form-step { display: none; animation: slideIn 0.4s ease-out; }
        .form-step.active { display: block; }
        @keyframes slideIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

        .step-indicator { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
        .dot { height: 8px; width: 30px; background-color: #cbd5e1; border-radius: 4px; transition: 0.3s; }
        .dot.active { background-color: #38bdf8; width: 50px; }

        .input-group { margin-bottom: 15px; }
        .input-group input, .input-group select { width: 100%; padding: 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; outline: none;}
        .input-group input:focus, .input-group select:focus { border-color: #38bdf8; box-shadow: 0 0 5px rgba(56, 189, 248, 0.3); }
        .agreement-box { display: flex; align-items: flex-start; gap: 10px; margin-top: 15px; margin-bottom: 20px; }
        .agreement-box input { margin-top: 5px; cursor: pointer; }
        .agreement-box label { font-size: 12px; color: #64748b; }
        
        .btn-quote { width: 100%; background-color: #bef264; color: #0b1e3f; border: none; padding: 16px; font-size: 16px; font-weight: bold; border-radius: 6px; cursor: pointer; transition: 0.3s; }
        .btn-quote:hover { background-color: #a3e635; }
        .btn-back { background-color: #f1f5f9; color: #475569; width: 40%; }
        .btn-back:hover { background-color: #e2e8f0; }

        /* --- CONTENT SECTIONS --- */
        .section { padding: 80px 5%; }
        .bg-white { background-color: #ffffff; }
        .bg-light { background-color: #f8fafc; }
        .bg-blue { background-color: #0b1e3f; color: white; }
        
        .section-title { font-size: 38px; color: #0b1e3f; margin-bottom: 20px; text-align: center; font-weight: 800; letter-spacing: -1px; }
        .bg-blue .section-title { color: white; }
        .section-subtitle { font-size: 18px; color: #64748b; margin-bottom: 60px; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
        .bg-blue .section-subtitle { color: #cbd5e1; }

        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        
        .card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; transition: transform 0.3s; }
        .card:hover { transform: translateY(-5px); }
        .card h3 { color: #0b1e3f; font-size: 22px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .card p { color: #475569; font-size: 16px; line-height: 1.6; }

        /* SVG Icons Styling */
        .service-icon { background: #e0f2fe; padding: 12px; border-radius: 8px; display: inline-flex; margin-bottom: 20px; color: #0284c7; }
        .contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: #f8fafc; font-size: 16px; }
        .contact-row svg { color: #38bdf8; flex-shrink: 0; }

        .term-box { border-left: 4px solid #38bdf8; padding-left: 20px; margin-bottom: 20px; }
        .term-box h4 { color: #0b1e3f; font-size: 18px; margin-bottom: 5px; }
        .term-box p { color: #64748b; font-size: 15px; }

        .review-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid #e2e8f0; }
        .stars { color: #fbbf24; font-size: 20px; margin-bottom: 10px; }

        /* New Route Cards */
        .route-card { background: white; padding: 25px; border-radius: 8px; border-left: 5px solid #0284c7; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .route-card h4 { color: #0b1e3f; font-size: 18px; margin-bottom: 8px; }
        .route-card p { color: #64748b; font-size: 14px; }

        /* --- License Document Updates --- */
        .license-container { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .document-scroll { height: 250px; overflow-y: scroll; background: #f1f5f9; padding: 25px; border-radius: 6px; margin-bottom: 25px; color: #333; border: 1px solid #cbd5e1; }
        .document-scroll h4 { color: #0b1e3f; margin-top: 15px; margin-bottom: 5px; font-size: 18px;}
        .signature-area { display: flex; gap: 20px; background: #e0f2fe; padding: 20px; border-radius: 8px; border-left: 4px solid #38bdf8; flex-wrap: wrap; align-items: flex-end;}
        .sig-input-box { flex: 2; min-width: 200px; }
        .date-input-box { flex: 1; min-width: 150px; }
        .btn-sign { background-color: #0b1e3f; color: white; border: none; padding: 14px 30px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; transition: 0.3s; }
        .btn-sign:hover { background-color: #1e3a8a; }

        /* Footer */
        .footer { background-color: #020617; color: #94a3b8; padding: 60px 5% 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer h3 { color: white; margin-bottom: 20px; font-size: 18px; }
        .footer a { display: block; margin-bottom: 10px; font-size: 14px; }
        .footer a:hover { color: #38bdf8; }

        /* =========================================
           MOBILE RESPONSIVENESS
           ========================================= */
        @media (max-width: 900px) {
            .hero { flex-direction: column; text-align: center; gap: 40px; padding: 50px 5%; }
            .hero-content h1 { font-size: 40px; }
            .trust-badges { justify-content: center; }
            .grid-2 { grid-template-columns: 1fr; }
            .about-stats { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 1150px) {
            .top-bar { justify-content: center; flex-wrap: wrap; gap: 15px; }
            .hamburger { display: block; }
            
            .nav-links {
                display: none; flex-direction: column; align-items: flex-start; position: absolute;
                top: 100%; left: 0; width: 100%; background-color: #081226; padding: 20px 5%; box-shadow: 0 10px 15px rgba(0,0,0,0.3); gap: 10px;
                max-height: 80vh; overflow-y: auto; margin: 0; 
            }
            .nav-links.active { display: flex; }
            .nav-links > a, .dropdown > button { width: 100%; text-align: left; padding: 15px 0; border-bottom: 1px solid #1e293b; font-size: 16px; white-space: normal; }
            
            .dropdown { width: 100%; }
            .dropdown-content { position: static; box-shadow: none; background-color: #0f264d; border-radius: 4px; margin-top: 5px; max-height: none; overflow-y: visible;}
            .dropdown-content a { color: #cbd5e1; border-bottom: 1px solid #1e3a8a; white-space: normal; }
            .calc-btn-nav { margin-top: 10px; border-bottom: none !important; }

            .section { padding: 50px 5%; }
            .section-title { font-size: 30px; }
            .calculator { padding: 25px; margin: 0 auto; }
            .hero-content h1 { font-size: 32px; }

            .license-container { padding: 20px; }
            .signature-area { flex-direction: column; align-items: stretch; gap: 15px; }
            .sig-input-box, .date-input-box { width: 100%; min-width: 100%; }
        }

        /* blog.html ki css */
         * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', 'Segoe UI', sans-serif; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; } 
        body { background-color: #f8fafc; color: #333; line-height: 1.7; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }

        /* --- TOP BAR --- */
        .top-bar { background-color: #081226; color: #94a3b8; padding: 10px 5%; display: flex; justify-content: flex-end; align-items: center; gap: 25px; font-size: 13px; font-weight: 500; }
        .top-bar a:hover { color: #38bdf8; }
        .top-bar .phone { color: white; font-weight: bold; font-size: 15px; display: flex; align-items: center; gap: 8px; }

        /* --- MAIN NAVBAR --- */
        .main-nav { background-color: #0b1e3f; color: white; padding: 15px 5%; display: flex; justify-content: flex-start; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); gap: 20px; }
        .logo { display: flex; align-items: center; }
        .logo img { height: 50px; object-fit: contain; filter: brightness(0) invert(75%) sepia(50%) saturate(4000%) hue-rotate(170deg) brightness(1.1) drop-shadow(0 0 10px rgba(56, 189, 248, 0.8)); }
        .hamburger { display: none; font-size: 32px; cursor: pointer; color: white; user-select: none; margin-left: auto; }
        .nav-links { display: flex; align-items: center; gap: 18px; transition: 0.3s ease-in-out; margin: 0 auto; }
        .nav-links > a, .dropdown > button { color: white; font-weight: 600; font-size: 15px; background: none; border: none; cursor: pointer; padding: 10px 0; white-space: nowrap; }
        .nav-links > a:hover, .dropdown:hover > button { color: #38bdf8; }

        /* --- DROPDOWNS --- */
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content { display: none; position: absolute; background-color: white; min-width: 250px; box-shadow: 0px 8px 25px rgba(0,0,0,0.2); z-index: 1; top: 100%; left: 0; border-radius: 6px; max-height: 450px; overflow-y: auto; }
        .dropdown-content::-webkit-scrollbar { width: 6px; }
        .dropdown-content::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
        .dropdown-content a { color: #1e293b; padding: 12px 20px; display: block; font-size: 14px; font-weight: 600; border-bottom: 1px solid #f1f5f9; white-space: normal; line-height: 1.4; }
        .dropdown-content a:hover { background-color: #f8fafc; color: #38bdf8; padding-left: 25px; }
        .dropdown:hover .dropdown-content { display: block; }
        .calc-btn-nav { background-color: #bef264; color: #0b1e3f !important; padding: 10px 20px !important; border-radius: 30px; font-weight: bold; text-align: center; }
        .calc-btn-nav:hover { background-color: #a3e635; }

        /* --- BLOG SPECIFIC STYLES --- */
        .section { padding: 80px 5%; }
        .bg-white { background-color: #ffffff; }
        .bg-light { background-color: #f8fafc; }
        .bg-blue { background-color: #0b1e3f; color: white; }
        
        .page-header { background-color: #0b1e3f; color: white; padding: 80px 5%; text-align: center; border-bottom: 4px solid #38bdf8; }
        .page-header h1 { font-size: 45px; margin-bottom: 15px; font-weight: 900; }
        .page-header p { font-size: 18px; color: #cbd5e1; max-width: 700px; margin: auto; }

        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: auto; }
        
        .blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
        .blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        
        .blog-image { height: 220px; background-color: #e2e8f0; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 14px; position: relative; }
        
        /* Placeholder gradients for blog images until you add real photos */
        .img-1 { background: linear-gradient(135deg, #0f172a, #1e293b); }
        .img-2 { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
        .img-3 { background: linear-gradient(135deg, #334155, #475569); }
        .img-4 { background: linear-gradient(135deg, #0f172a, #0b1e3f); }
        .img-5 { background: linear-gradient(135deg, #0369a1, #0284c7); }
        .img-6 { background: linear-gradient(135deg, #1e293b, #334155); }

        .category-badge { position: absolute; top: 15px; left: 15px; background: #bef264; color: #0b1e3f; font-size: 12px; font-weight: bold; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }

        .blog-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
        .blog-meta { color: #64748b; font-size: 13px; margin-bottom: 10px; display: flex; gap: 15px; align-items: center; }
        .blog-meta span { display: flex; align-items: center; gap: 5px; }
        
        .blog-title { color: #0b1e3f; font-size: 22px; margin-bottom: 15px; line-height: 1.3; }
        .blog-title a { transition: color 0.2s; }
        .blog-title a:hover { color: #0284c7; }
        
        .blog-excerpt { color: #475569; font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
        
        .read-more { color: #38bdf8; font-weight: bold; font-size: 15px; display: inline-flex; align-items: center; gap: 5px; }
        .read-more:hover { color: #0284c7; gap: 8px; }

        /* Pagination */
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
        .page-btn { background: white; border: 1px solid #cbd5e1; color: #0b1e3f; padding: 10px 18px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.2s; }
        .page-btn:hover { background: #f1f5f9; border-color: #94a3b8; }
        .page-btn.active { background: #0b1e3f; color: white; border-color: #0b1e3f; }

        /* Footer */
        .footer { background-color: #020617; color: #94a3b8; padding: 60px 5% 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer h3 { color: white; margin-bottom: 20px; font-size: 18px; }
        .footer a { display: block; margin-bottom: 10px; font-size: 14px; }
        .footer a:hover { color: #38bdf8; }

        /* Mobile */
        @media (max-width: 1150px) {
            .top-bar { justify-content: center; flex-wrap: wrap; gap: 15px; }
            .hamburger { display: block; }
            .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; width: 100%; background-color: #081226; padding: 20px 5%; box-shadow: 0 10px 15px rgba(0,0,0,0.3); gap: 10px; max-height: 80vh; overflow-y: auto; margin: 0; }
            .nav-links.active { display: flex; }
            .nav-links > a, .dropdown > button { width: 100%; text-align: left; padding: 15px 0; border-bottom: 1px solid #1e293b; font-size: 16px; white-space: normal; }
            .dropdown { width: 100%; }
            .dropdown-content { position: static; box-shadow: none; background-color: #0f264d; border-radius: 4px; margin-top: 5px; max-height: none; overflow-y: visible;}
            .dropdown-content a { color: #cbd5e1; border-bottom: 1px solid #1e3a8a; white-space: normal; }
            .calc-btn-nav { margin-top: 10px; border-bottom: none !important; }
        }

        /* bloghtmlcss */

                /* --- General Setup --- */
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', 'Segoe UI', sans-serif; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; } 
        body { background-color: #f8fafc; color: #333; line-height: 1.7; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }

        /* --- TOP BAR --- */
        .top-bar { background-color: #081226; color: #94a3b8; padding: 10px 5%; display: flex; justify-content: flex-end; align-items: center; gap: 25px; font-size: 13px; font-weight: 500; }
        .top-bar a:hover { color: #38bdf8; }
        .top-bar .phone { color: white; font-weight: bold; font-size: 15px; display: flex; align-items: center; gap: 8px; }

        /* --- MAIN NAVBAR --- */
        .main-nav { background-color: #0b1e3f; color: white; padding: 15px 5%; display: flex; justify-content: flex-start; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); gap: 20px; }
        .logo { display: flex; align-items: center; }
        .logo img { height: 50px; object-fit: contain; filter: brightness(0) invert(75%) sepia(50%) saturate(4000%) hue-rotate(170deg) brightness(1.1) drop-shadow(0 0 10px rgba(56, 189, 248, 0.8)); }
        .hamburger { display: none; font-size: 32px; cursor: pointer; color: white; user-select: none; margin-left: auto; }
        .nav-links { display: flex; align-items: center; gap: 18px; transition: 0.3s ease-in-out; margin: 0 auto; }
        .nav-links > a, .dropdown > button { color: white; font-weight: 600; font-size: 15px; background: none; border: none; cursor: pointer; padding: 10px 0; white-space: nowrap; }
        .nav-links > a:hover, .dropdown:hover > button { color: #38bdf8; }

        /* --- DROPDOWNS --- */
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content { display: none; position: absolute; background-color: white; min-width: 250px; box-shadow: 0px 8px 25px rgba(0,0,0,0.2); z-index: 1; top: 100%; left: 0; border-radius: 6px; max-height: 450px; overflow-y: auto; }
        .dropdown-content::-webkit-scrollbar { width: 6px; }
        .dropdown-content::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
        .dropdown-content a { color: #1e293b; padding: 12px 20px; display: block; font-size: 14px; font-weight: 600; border-bottom: 1px solid #f1f5f9; white-space: normal; line-height: 1.4; }
        .dropdown-content a:hover { background-color: #f8fafc; color: #38bdf8; padding-left: 25px; }
        .dropdown:hover .dropdown-content { display: block; }
        .calc-btn-nav { background-color: #bef264; color: #0b1e3f !important; padding: 10px 20px !important; border-radius: 30px; font-weight: bold; text-align: center; }
        .calc-btn-nav:hover { background-color: #a3e635; }

        /* --- BLOG SPECIFIC STYLES --- */
        .section { padding: 80px 5%; }
        .bg-light { background-color: #f8fafc; }
        
        /* PAGE HEADER (Banner) */
        .page-header { 
            background-color: #0b1e3f; 
            background-image: url(''); /* Yahan Banner Image ka link ayega */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            color: white; padding: 80px 5%; text-align: center; border-bottom: 4px solid #38bdf8; 
        }
        .page-header::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(11, 30, 63, 0.5); z-index: 1;
        }
        .page-header-content { position: relative; z-index: 2; }
        .page-header h1 { font-size: 45px; margin-bottom: 15px; font-weight: 900; }
        .page-header p { font-size: 18px; color: #cbd5e1; max-width: 700px; margin: auto; }

        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: auto; }
        
        .blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; cursor: pointer; }
        .blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        
        .blog-image { 
            height: 220px; display: flex; align-items: center; justify-content: center; position: relative;
            background-size: cover; background-position: center; background-repeat: no-repeat;
            background-color: #e2e8f0; 
        }

        .category-badge { position: absolute; top: 15px; left: 15px; background: #bef264; color: #0b1e3f; font-size: 12px; font-weight: bold; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }

        .blog-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
        .blog-meta { color: #64748b; font-size: 13px; margin-bottom: 10px; display: flex; gap: 15px; align-items: center; }
        .blog-title { color: #0b1e3f; font-size: 22px; margin-bottom: 15px; line-height: 1.3; }
        .blog-excerpt { color: #475569; font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
        .read-more { color: #38bdf8; font-weight: bold; font-size: 15px; display: inline-flex; align-items: center; gap: 5px; }
        
        /* --- Modal / Popup Styling --- */
        .modal-overlay {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(2, 6, 23, 0.8); z-index: 2000; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s ease; padding: 20px;
        }
        .modal-overlay.active { display: flex; opacity: 1; }
        
        .modal-box {
            background: white; width: 100%; max-width: 800px; max-height: 90vh; border-radius: 12px;
            overflow-y: auto; position: relative; transform: translateY(20px); transition: transform 0.3s ease;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        }
        .modal-overlay.active .modal-box { transform: translateY(0); }
        
        .close-btn {
            position: absolute; top: 15px; right: 20px; background: rgba(0,0,0,0.5); color: white; border: none;
            width: 35px; height: 35px; border-radius: 50%; font-size: 20px; font-weight: bold; cursor: pointer;
            z-index: 10; display: flex; align-items: center; justify-content: center; transition: 0.2s;
        }
        .close-btn:hover { background: #ef4444; }

        /* Yeh wo class hai jiski wajah se blue dabba aa raha tha. Ab default display none hai! */
        .modal-header-img { 
            height: 300px; width: 100%; 
            background-size: cover; background-position: center; 
            display: none; /* Hide by default */
        }
        
        .modal-body { padding: 40px; padding-top: 50px; }
        .modal-title { font-size: 32px; color: #0b1e3f; margin-bottom: 15px; line-height: 1.2; font-weight: 800; }
        .modal-meta { color: #64748b; font-size: 14px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .modal-text { color: #334155; font-size: 16px; line-height: 1.8; }
        .modal-text h3 { color: #1e3a8a; margin: 30px 0 15px 0; font-size: 22px; }
        .modal-text p { margin-bottom: 20px; }

        /* Footer */
        .footer { background-color: #020617; color: #94a3b8; padding: 60px 5% 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer h3 { color: white; margin-bottom: 20px; font-size: 18px; }
        .footer a { display: block; margin-bottom: 10px; font-size: 14px; }
        .footer a:hover { color: #38bdf8; }

        /* Mobile */
        @media (max-width: 1150px) {
            .top-bar { justify-content: center; flex-wrap: wrap; gap: 15px; }
            .hamburger { display: block; }
            .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; width: 100%; background-color: #081226; padding: 20px 5%; box-shadow: 0 10px 15px rgba(0,0,0,0.3); gap: 10px; max-height: 80vh; overflow-y: auto; margin: 0; }
            .nav-links.active { display: flex; }
            .nav-links > a, .dropdown > button { width: 100%; text-align: left; padding: 15px 0; border-bottom: 1px solid #1e293b; font-size: 16px; white-space: normal; }
            .dropdown { width: 100%; }
            .dropdown-content { position: static; box-shadow: none; background-color: #0f264d; border-radius: 4px; margin-top: 5px; max-height: none; overflow-y: visible;}
            .dropdown-content a { color: #cbd5e1; border-bottom: 1px solid #1e3a8a; white-space: normal; }
            .calc-btn-nav { margin-top: 10px; border-bottom: none !important; }
        }
        @media (max-width: 768px) {
            .modal-body { padding: 25px; padding-top: 40px; }
            .modal-title { font-size: 24px; }
        }

        /* servicshtmlcss */

         /* --- General Setup --- */
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', 'Segoe UI', sans-serif; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; } 
        body { background-color: #f8fafc; color: #333; line-height: 1.7; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }

        /* --- TOP BAR --- */
        .top-bar { background-color: #081226; color: #94a3b8; padding: 10px 5%; display: flex; justify-content: flex-end; align-items: center; gap: 25px; font-size: 13px; font-weight: 500; }
        .top-bar a:hover { color: #38bdf8; }
        .top-bar .phone { color: white; font-weight: bold; font-size: 15px; display: flex; align-items: center; gap: 8px; }

        /* --- MAIN NAVBAR --- */
        .main-nav { background-color: #0b1e3f; color: white; padding: 15px 5%; display: flex; justify-content: flex-start; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); gap: 20px; }
        .logo { display: flex; align-items: center; }
        .logo img { height: 50px; object-fit: contain; filter: brightness(0) invert(75%) sepia(50%) saturate(4000%) hue-rotate(170deg) brightness(1.1) drop-shadow(0 0 10px rgba(56, 189, 248, 0.8)); }
        .hamburger { display: none; font-size: 32px; cursor: pointer; color: white; user-select: none; margin-left: auto; }
        .nav-links { display: flex; align-items: center; gap: 18px; transition: 0.3s ease-in-out; margin: 0 auto; }
        .nav-links > a, .dropdown > button { color: white; font-weight: 600; font-size: 15px; background: none; border: none; cursor: pointer; padding: 10px 0; white-space: nowrap; }
        .nav-links > a:hover, .dropdown:hover > button { color: #38bdf8; }

        /* --- DROPDOWNS --- */
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content { display: none; position: absolute; background-color: white; min-width: 250px; box-shadow: 0px 8px 25px rgba(0,0,0,0.2); z-index: 1; top: 100%; left: 0; border-radius: 6px; max-height: 450px; overflow-y: auto; }
        .dropdown-content::-webkit-scrollbar { width: 6px; }
        .dropdown-content::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
        .dropdown-content a { color: #1e293b; padding: 12px 20px; display: block; font-size: 14px; font-weight: 600; border-bottom: 1px solid #f1f5f9; white-space: normal; line-height: 1.4; }
        .dropdown-content a:hover { background-color: #f8fafc; color: #38bdf8; padding-left: 25px; }
        .dropdown:hover .dropdown-content { display: block; }
        .calc-btn-nav { background-color: #bef264; color: #0b1e3f !important; padding: 10px 20px !important; border-radius: 30px; font-weight: bold; text-align: center; }
        .calc-btn-nav:hover { background-color: #a3e635; }

        /* --- COMMON STYLES --- */
        .section { padding: 80px 5%; }
        .bg-white { background-color: #ffffff; }
        .bg-light { background-color: #f8fafc; }
        .bg-blue { background-color: #0b1e3f; color: white; }
        
        .section-title { font-size: 38px; color: #0b1e3f; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; }
        .section-title.center { text-align: center; }
        .section-subtitle { font-size: 18px; color: #64748b; margin-bottom: 60px; max-width: 800px; }
        .section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }

        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1200px; margin: auto; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: auto; }

        /* --- PAGE HEADER (Banner) --- */
        .page-header { 
            background-color: #0b1e3f; 
            background-image: url(''); /* YAHAN BANNER IMAGE LAGEGI */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            color: white; padding: 100px 5%; text-align: center; border-bottom: 4px solid #38bdf8; 
        }
        .page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 30, 63, 0.6); z-index: 1; }
        .page-header-content { position: relative; z-index: 2; }
        .page-header h1 { font-size: 45px; margin-bottom: 15px; font-weight: 900; }
        .page-header p { font-size: 20px; color: #cbd5e1; max-width: 700px; margin: auto; }

        /* --- SERVICE ROWS (Alternating) --- */
        .service-row { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto 80px auto; }
        .service-row:nth-child(even) { flex-direction: row-reverse; } 
        
        .service-img-container { flex: 1; min-width: 350px; }
        /* IMAGE PLACEHOLDERS FOR SERVICES */
        .service-img { width: 100%; height: 400px; border-radius: 12px; background-color: #cbd5e1; background-image: url(''); background-size: cover; background-position: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        
        .service-text { flex: 1.2; min-width: 350px; }
        .service-text h2 { color: #0b1e3f; font-size: 32px; margin-bottom: 20px; font-weight: 800; display: flex; align-items: center; gap: 15px; }
        .service-icon-badge { background: #e0f2fe; color: #0284c7; width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .service-text p { color: #475569; font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
        .service-features { list-style: none; margin-bottom: 30px; }
        .service-features li { color: #1e3a8a; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 16px; }
        .service-features li svg { color: #38bdf8; flex-shrink: 0; }

        /* --- EXTRA SERVICES GRID --- */
        .extra-service-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid #e2e8f0; transition: 0.3s; text-align: left; }
        .extra-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-color: #38bdf8; }
        .extra-service-card svg { color: #0284c7; margin-bottom: 15px; }
        .extra-service-card h4 { color: #0b1e3f; font-size: 20px; margin-bottom: 10px; }
        .extra-service-card p { color: #64748b; font-size: 15px; line-height: 1.6; }

        /* --- CTA SECTION (NEW PROFESSIONAL COLOR) --- */
        .cta-section { 
            background: linear-gradient(135deg, #1e3a8a, #0b1e3f); /* Premium Deep Blue Gradient */
            padding: 80px 5%; 
            text-align: center; 
            color: white; 
        }
        .cta-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 15px; color: white; }
        .cta-section p { font-size: 18px; max-width: 600px; margin: 0 auto 20px auto; color: #cbd5e1; }
        
        .btn-cta { 
            background-color: #38bdf8; 
            color: #0b1e3f; 
            padding: 16px 40px; 
            border-radius: 30px; 
            font-weight: 900; 
            font-size: 18px; 
            display: inline-block; 
            transition: 0.3s; 
            box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
        }
        .btn-cta:hover { 
            background-color: #0284c7; 
            color: white; 
            transform: translateY(-3px); 
            box-shadow: 0 15px 25px rgba(2, 132, 199, 0.4);
        }

        /* --- FOOTER --- */
        .footer { background-color: #020617; color: #94a3b8; padding: 60px 5% 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; max-width: 1200px; margin-left: auto; margin-right: auto; }
        .footer h3 { color: white; margin-bottom: 20px; font-size: 18px; }
        .footer a { display: block; margin-bottom: 10px; font-size: 14px; color: #94a3b8; transition: 0.2s; }
        .footer a:hover { color: #38bdf8; }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; font-size: 13px; max-width: 1200px; margin: auto; }

        /* --- MOBILE --- */
        @media (max-width: 900px) {
            .service-row, .service-row:nth-child(even) { flex-direction: column; gap: 30px; }
            .service-img { height: 250px; }
            .section-title { font-size: 32px; }
        }

        @media (max-width: 1150px) {
            .top-bar { justify-content: center; flex-wrap: wrap; gap: 15px; }
            .hamburger { display: block; }
            .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; width: 100%; background-color: #081226; padding: 20px 5%; box-shadow: 0 10px 15px rgba(0,0,0,0.3); gap: 10px; max-height: 80vh; overflow-y: auto; margin: 0; }
            .nav-links.active { display: flex; }
            .nav-links > a, .dropdown > button { width: 100%; text-align: left; padding: 15px 0; border-bottom: 1px solid #1e293b; font-size: 16px; white-space: normal; }
            .dropdown { width: 100%; }
            .dropdown-content { position: static; box-shadow: none; background-color: #0f264d; border-radius: 4px; margin-top: 5px; max-height: none; overflow-y: visible;}
            .dropdown-content a { color: #cbd5e1; border-bottom: 1px solid #1e3a8a; white-space: normal; }
            .calc-btn-nav { margin-top: 10px; border-bottom: none !important; }
        }

        /* ==============================================================
   SPECIFIC STYLES FOR DOOR-TO-DOOR & INFO PAGES
   (Paste at the bottom of your style.css)
============================================================== */

/* Reuseable Section Headers */
.page-header { 
    background-color: #0b1e3f; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white; 
    padding: 100px 5%; 
    text-align: center; 
    border-bottom: 4px solid #38bdf8; 
}
.page-header::before { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(11, 30, 63, 0.6); z-index: 1; 
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { font-size: 45px; margin-bottom: 15px; font-weight: 900; }
.page-header p { font-size: 20px; color: #cbd5e1; max-width: 700px; margin: auto; }

/* Image Placeholder for Info Pages */
.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background-color: #cbd5e1; /* Grey fallback */
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Process Steps (Vertical List Layout) */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.process-step:hover {
    transform: translateX(10px);
    border-color: #38bdf8;
}
.step-number {
    background: #0b1e3f;
    color: white;
    font-size: 24px;
    font-weight: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 4px solid #e0f2fe;
}

/* Icon Circles in Cards */
.icon-circle { 
    background: #e0f2fe; 
    color: #0284c7; 
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px auto; 
}

/* Call To Action Section */
.cta-section { 
    background: linear-gradient(135deg, #1e3a8a, #0b1e3f); 
    padding: 80px 5%; 
    text-align: center; 
    color: white; 
}
.cta-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 15px; color: white; }
.cta-section p { font-size: 18px; max-width: 600px; margin: 0 auto 20px auto; color: #cbd5e1; }

.btn-cta { 
    background-color: #38bdf8; 
    color: #0b1e3f; 
    padding: 16px 40px; 
    border-radius: 30px; 
    font-weight: 900; 
    font-size: 18px; 
    display: inline-block; 
    transition: 0.3s; 
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    text-decoration: none;
}
.btn-cta:hover { 
    background-color: #0284c7; 
    color: white; 
    transform: translateY(-3px); 
    box-shadow: 0 15px 25px rgba(2, 132, 199, 0.4);
}

/* Mobile Adjustments for Process Steps */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* ==============================================================
   1. GENERAL SETUP & TYPOGRAPHY
============================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', 'Segoe UI', sans-serif; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; } 
body { background-color: #f8fafc; color: #333; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }

/* ==============================================================
   2. TOP BAR & MAIN NAVBAR
============================================================== */
.top-bar { background-color: #081226; color: #94a3b8; padding: 10px 5%; display: flex; justify-content: flex-end; align-items: center; gap: 25px; font-size: 13px; font-weight: 500; }
.top-bar a:hover { color: #38bdf8; }
.top-bar .phone { color: white; font-weight: bold; font-size: 15px; display: flex; align-items: center; gap: 8px; }

.main-nav { background-color: #0b1e3f; color: white; padding: 15px 5%; display: flex; justify-content: flex-start; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); gap: 20px; }
.logo { display: flex; align-items: center; }
.logo img { height: 50px; object-fit: contain; filter: brightness(0) invert(75%) sepia(50%) saturate(4000%) hue-rotate(170deg) brightness(1.1) drop-shadow(0 0 10px rgba(56, 189, 248, 0.8)); }

.hamburger { display: none; font-size: 32px; cursor: pointer; color: white; user-select: none; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 18px; transition: 0.3s ease-in-out; margin: 0 auto; }
.nav-links > a, .dropdown > button { color: white; font-weight: 600; font-size: 15px; background: none; border: none; cursor: pointer; padding: 10px 0; white-space: nowrap; }
.nav-links > a:hover, .dropdown:hover > button { color: #38bdf8; }

/* Dropdowns */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: white; min-width: 250px; box-shadow: 0px 8px 25px rgba(0,0,0,0.2); z-index: 1; top: 100%; left: 0; border-radius: 6px; max-height: 450px; overflow-y: auto; }
.dropdown-content::-webkit-scrollbar { width: 6px; }
.dropdown-content::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
.dropdown-content a { color: #1e293b; padding: 12px 20px; display: block; font-size: 14px; font-weight: 600; border-bottom: 1px solid #f1f5f9; white-space: normal; line-height: 1.4; }
.dropdown-content a:hover { background-color: #f8fafc; color: #38bdf8; padding-left: 25px; }
.dropdown:hover .dropdown-content { display: block; }

.calc-btn-nav { background-color: #bef264; color: #0b1e3f !important; padding: 10px 20px !important; border-radius: 30px; font-weight: bold; text-align: center; }
.calc-btn-nav:hover { background-color: #a3e635; }

/* ==============================================================
   3. COMMON SECTIONS & COMPONENTS
============================================================== */
.section { padding: 80px 5%; }
.bg-white { background-color: #ffffff; }
.bg-light { background-color: #f8fafc; }
.bg-blue { background-color: #0b1e3f; color: white; }

.section-title { font-size: 38px; color: #0b1e3f; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; }
.section-title.center { text-align: center; }
.bg-blue .section-title { color: white; }
.section-subtitle { font-size: 18px; color: #64748b; margin-bottom: 60px; max-width: 800px; }
.section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1200px; margin: auto; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: auto; }

.card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; transition: transform 0.3s; text-align: left; }
.card:hover { transform: translateY(-5px); }
.card h3 { color: #0b1e3f; font-size: 22px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.card p { color: #475569; font-size: 16px; line-height: 1.6; }

.icon-circle { background: #e0f2fe; color: #0284c7; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; }
.service-icon { background: #e0f2fe; padding: 12px; border-radius: 8px; display: inline-flex; margin-bottom: 20px; color: #0284c7; }

/* Image Placeholder for Inner Pages */
.image-placeholder { width: 100%; height: 400px; border-radius: 12px; background-color: #cbd5e1; background-size: cover; background-position: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Inner Page Headers (Banner) */
.page-header { background-color: #0b1e3f; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; color: white; padding: 100px 5%; text-align: center; border-bottom: 4px solid #38bdf8; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 30, 63, 0.6); z-index: 1; }
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { font-size: 45px; margin-bottom: 15px; font-weight: 900; }
.page-header p { font-size: 20px; color: #cbd5e1; max-width: 700px; margin: auto; }

/* Call To Action Section */
.cta-section { background: linear-gradient(135deg, #1e3a8a, #0b1e3f); padding: 80px 5%; text-align: center; color: white; }
.cta-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 15px; color: white; }
.cta-section p { font-size: 18px; max-width: 600px; margin: 0 auto 20px auto; color: #cbd5e1; }
.btn-cta, .btn-dark { background-color: #38bdf8; color: #0b1e3f; padding: 16px 40px; border-radius: 30px; font-weight: 900; font-size: 18px; display: inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3); border: none; cursor: pointer; }
.btn-cta:hover, .btn-dark:hover { background-color: #0284c7; color: white; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(2, 132, 199, 0.4); }

/* ==============================================================
   4. HOME PAGE SPECIFIC (Index.html)
============================================================== */
.hero { display: flex; justify-content: space-between; align-items: center; background-color: #0b1e3f; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 80px 5%; gap: 50px; flex-wrap: wrap; }
.hero-content { flex: 1; color: white; min-width: 300px; }
.hero-content h1 { font-size: 50px; margin-bottom: 20px; line-height: 1.1; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 20px; color: #bef264; font-weight: bold; font-size: 15px; margin-top: 20px;}
.trust-badges span { display: flex; align-items: center; gap: 6px; }

/* Calculator Wizard */
.calculator { background: white; padding: 35px; border-radius: 12px; width: 100%; max-width: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); flex-shrink: 0; min-height: 400px; }
.calculator h2 { font-size: 24px; margin-bottom: 10px; color: #0b1e3f; text-align: center;}
.form-subtitle { text-align: center; color: #64748b; font-size: 14px; margin-bottom: 25px; }
.form-step { display: none; animation: slideIn 0.4s ease-out; }
.form-step.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.step-indicator { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
.dot { height: 8px; width: 30px; background-color: #cbd5e1; border-radius: 4px; transition: 0.3s; }
.dot.active { background-color: #38bdf8; width: 50px; }
.input-group { margin-bottom: 15px; }
.input-group input, .input-group select { width: 100%; padding: 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; outline: none;}
.agreement-box { display: flex; align-items: flex-start; gap: 10px; margin-top: 15px; margin-bottom: 20px; }
.btn-quote { width: 100%; background-color: #bef264; color: #0b1e3f; border: none; padding: 16px; font-size: 16px; font-weight: bold; border-radius: 6px; cursor: pointer; transition: 0.3s; }
.btn-quote:hover { background-color: #a3e635; }
.btn-back { background-color: #f1f5f9; color: #475569; width: 40%; }

/* Term Boxes, Route Cards & Reviews */
.term-box { border-left: 4px solid #38bdf8; padding-left: 20px; margin-bottom: 20px; }
.route-card { background: white; padding: 25px; border-radius: 8px; border-left: 5px solid #0284c7; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.review-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid #e2e8f0; }
.stars { color: #fbbf24; font-size: 20px; margin-bottom: 10px; }

/* License Agreement */
.license-container { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.document-scroll { height: 250px; overflow-y: scroll; background: #f1f5f9; padding: 25px; border-radius: 6px; margin-bottom: 25px; border: 1px solid #cbd5e1; }
.signature-area { display: flex; gap: 20px; background: #e0f2fe; padding: 20px; border-radius: 8px; border-left: 4px solid #38bdf8; flex-wrap: wrap; align-items: flex-end;}
.btn-sign { background-color: #0b1e3f; color: white; border: none; padding: 14px 30px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; }

/* ==============================================================
   5. SERVICES SPECIFIC (Alternating Rows)
============================================================== */
.service-row { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto 80px auto; }
.service-row:nth-child(even) { flex-direction: row-reverse; } 
.service-img-container { flex: 1; min-width: 350px; }
.service-img { width: 100%; height: 400px; border-radius: 12px; background-color: #cbd5e1; background-size: cover; background-position: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-text { flex: 1.2; min-width: 350px; }
.service-text h2 { color: #0b1e3f; font-size: 32px; margin-bottom: 20px; font-weight: 800; display: flex; align-items: center; gap: 15px; }
.service-icon-badge { background: #e0f2fe; color: #0284c7; width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-features { list-style: none; margin-bottom: 30px; }
.service-features li { color: #1e3a8a; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 16px; }
.extra-service-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid #e2e8f0; transition: 0.3s; text-align: left; }
.extra-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-color: #38bdf8; }

/* ==============================================================
   6. DOOR-TO-DOOR SPECIFIC (Process Steps)
============================================================== */
.process-step { display: flex; align-items: flex-start; gap: 20px; background: white; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s; }
.process-step:hover { transform: translateX(10px); border-color: #38bdf8; }
.step-number { background: #0b1e3f; color: white; font-size: 24px; font-weight: 900; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 4px solid #e0f2fe; }

/* ==============================================================
   7. ABOUT US SPECIFIC (Stats)
============================================================== */
.stats-container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 30px; max-width: 1000px; margin: auto; text-align: center; }
.stat-box h4 { font-size: 48px; color: #38bdf8; font-weight: 900; margin-bottom: 5px; }
.stat-box p { color: #cbd5e1; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ==============================================================
   8. BLOG SPECIFIC (Cards & Modal)
============================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: auto; }
.blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; cursor: pointer; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.blog-image { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #e2e8f0; }
.category-badge { position: absolute; top: 15px; left: 15px; background: #bef264; color: #0b1e3f; font-size: 12px; font-weight: bold; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.blog-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { color: #64748b; font-size: 13px; margin-bottom: 10px; display: flex; gap: 15px; align-items: center; }
.blog-title { color: #0b1e3f; font-size: 22px; margin-bottom: 15px; line-height: 1.3; }

/* Modal Styles */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 6, 23, 0.8); z-index: 2000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; padding: 20px; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box { background: white; width: 100%; max-width: 800px; max-height: 90vh; border-radius: 12px; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform 0.3s ease; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.modal-overlay.active .modal-box { transform: translateY(0); }
.close-btn { position: absolute; top: 15px; right: 20px; background: rgba(0,0,0,0.5); color: white; border: none; width: 35px; height: 35px; border-radius: 50%; font-size: 20px; font-weight: bold; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.close-btn:hover { background: #ef4444; }
.modal-header-img { height: 300px; width: 100%; background-size: cover; background-position: center; display: none; }
.modal-body { padding: 40px; padding-top: 50px; }
.modal-title { font-size: 32px; color: #0b1e3f; margin-bottom: 15px; line-height: 1.2; font-weight: 800; }
.modal-meta { color: #64748b; font-size: 14px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }

/* ==============================================================
   9. FOOTER
============================================================== */
.footer { background-color: #020617; color: #94a3b8; padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer h3 { color: white; margin-bottom: 20px; font-size: 18px; }
.footer a { display: block; margin-bottom: 10px; font-size: 14px; color: #94a3b8; transition: 0.2s; }
.footer a:hover { color: #38bdf8; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; font-size: 13px; max-width: 1200px; margin: auto; }

/* ==============================================================
   10. MOBILE RESPONSIVENESS
============================================================== */
@media (max-width: 1150px) {
    .top-bar { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .hamburger { display: block; }
    .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; width: 100%; background-color: #081226; padding: 20px 5%; box-shadow: 0 10px 15px rgba(0,0,0,0.3); gap: 10px; max-height: 80vh; overflow-y: auto; margin: 0; }
    .nav-links.active { display: flex; }
    .nav-links > a, .dropdown > button { width: 100%; text-align: left; padding: 15px 0; border-bottom: 1px solid #1e293b; font-size: 16px; white-space: normal; }
    .dropdown { width: 100%; }
    .dropdown-content { position: static; box-shadow: none; background-color: #0f264d; border-radius: 4px; margin-top: 5px; max-height: none; overflow-y: visible;}
    .dropdown-content a { color: #cbd5e1; border-bottom: 1px solid #1e3a8a; white-space: normal; }
    .calc-btn-nav { margin-top: 10px; border-bottom: none !important; }
}

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; gap: 40px; padding: 50px 5%; }
    .hero-content h1 { font-size: 40px; }
    .trust-badges { justify-content: center; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px;}
    .service-row, .service-row:nth-child(even) { flex-direction: column; gap: 30px; }
    .service-img, .image-placeholder { height: 250px; }
    .section-title { font-size: 32px; }
    .stats-container { flex-direction: column; }
}

@media (max-width: 768px) {
    .modal-body { padding: 25px; padding-top: 40px; }
    .modal-title { font-size: 24px; }
    .process-step { flex-direction: column; text-align: center; align-items: center; }
}

/* ==============================================================
   11. FAQ ACCORDION SPECIFIC
============================================================== */
.accordion-section { max-width: 900px; margin: 80px auto; padding: 0 5%; }
.category-title { color: #1e3a8a; font-size: 26px; font-weight: 800; margin-bottom: 15px; }
.accordion-item { border-bottom: 1px solid #e2e8f0; }
.accordion-item:first-of-type { border-top: 1px solid #e2e8f0; } 

.accordion-header { 
    display: flex; align-items: center; width: 100%; padding: 20px 0; background: none; 
    border: none; cursor: pointer; text-align: left; color: #1e3a8a; font-size: 16px; font-weight: 700; transition: color 0.2s;
}
.accordion-header:hover { color: #38bdf8; }

.icon { font-size: 22px; font-weight: bold; margin-right: 15px; color: #1e3a8a; width: 15px; display: inline-block; text-align: center; transition: 0.3s;}

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #475569; font-size: 15px; line-height: 1.6; }
.accordion-content-inner { padding-bottom: 20px; padding-left: 35px; padding-right: 20px; }

/* Active States for JS Toggle */
.accordion-item.active .accordion-content { max-height: 500px; } 
.accordion-item.active .icon { transform: rotate(45deg); color: #38bdf8; } /* Plus (+) becomes Cross (X) */


/* ==============================================================
   12. CONTACT PAGE SPECIFIC STYLES
============================================================== */
.contact-form-box { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }
.contact-input { width: 100%; padding: 15px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; margin-bottom: 20px; outline: none; font-family: inherit; transition: 0.3s; }
.contact-input:focus { border-color: #38bdf8; box-shadow: 0 0 8px rgba(56, 189, 248, 0.2); }
textarea.contact-input { resize: vertical; min-height: 150px; }

.contact-info-box { background: linear-gradient(135deg, #1e3a8a, #0b1e3f); color: white; padding: 50px 40px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); display: flex; flex-direction: column; justify-content: center; }
.info-row { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-icon { background: rgba(56, 189, 248, 0.1); color: #38bdf8; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-text h4 { font-size: 18px; margin-bottom: 5px; color: white; }
.info-text p { color: #cbd5e1; font-size: 16px; line-height: 1.5; }