/* ========================================
   1. GLOBAL & THEME VARIABLES
   ======================================== */
:root {
    --bg-dark: #03060c;
    --cyan-glow: #00e5ff;
    --blue-glow: #0055ff;
    --sun-glow: #f59e0b;
    --brand-green: #10b981;
    --royal-blue: #2563eb; 
    --luxury-gold: #d4af37;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    margin: 0; 
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ambient Grid Pattern (Background) */
body::before { 
    content: ''; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background-image: radial-gradient(var(--royal-blue) 1px, transparent 1px); 
    background-size: 40px 40px; 
    opacity: 0.04; 
    z-index: -2; 
    animation: gridMove 20s linear infinite; 
}
@keyframes gridMove { 
    0% { background-position: 0 0; } 
    100% { background-position: 40px 40px; } 
}

/* ========================================
   🌟 PREMIUM HEADER STYLING (GLOBAL)
   ======================================== */
.tm-site-header-overlay {
    /* Premium Deep Gradient Glass */
    background: linear-gradient(135deg, rgba(3, 7, 18, 0.85), rgba(15, 23, 42, 0.95)); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0; /* Thodi height badhai hai */
    transition: all 0.4s ease;
    /* Heavy premium shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 -1px 0 rgba(255,255,255,0.05);
}

.logo-block { cursor: pointer; transition: transform 0.3s ease; }
.logo-block:hover { transform: scale(1.02); }
.brand-wrapper { margin-left: 0; display: flex; flex-direction: column; justify-content: center; }
.brand-text { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; color: #ffffff; margin: 0; letter-spacing: 1px; line-height: 1; text-transform: uppercase;}
.brand-tagline { color: #00e5ff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; text-shadow: 0 0 8px rgba(0, 229, 255, 0.4); }
@keyframes blueRayFlow { 
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

.brand-text { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 28px; 
    font-weight: 900; 
    margin: 0; 
    letter-spacing: 2px; 
    line-height: 1.1; 
    text-transform: uppercase;
    /* The Magic Blue Ray Effect */
    background: linear-gradient(-45deg, #ffffff 20%, #00e5ff 40%, #0055ff 50%, #00e5ff 60%, #ffffff 80%); 
    background-size: 300% 300%; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    animation: blueRayFlow 4s ease-in-out infinite; 
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4)); 
}

/* GAP BADHAYA GAYA HAI (12px se 25px) */
.navbar-nav .nav-item { margin: 0 25px; } 

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    color: #7dd3fc !important; /* Default Light Blue Color */
    font-size: 18px; /* Size bada kiya gaya hai */
    font-weight: 800; /* Extra Bold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

/* ========================================
       ✨ THE MAGIC: WHITE LED BOX NAV LINKS
       ======================================== */
    .navbar-nav .nav-item { margin: 0 15px; } 

    .navbar-nav .nav-link {
        font-family: 'Montserrat', sans-serif;
        color: #7dd3fc !important; /* Default Light Blue Color */
        font-size: 16px; 
        font-weight: 800; 
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 10px 22px !important; /* Button jaisa shape dene ke liye padding */
        border: 2px solid transparent !important; /* Chhupa hua border */
        border-radius: 12px !important; /* Premium curves */
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

 
    .navbar-nav .nav-link::after {
        display: none !important; 
    }

  
    .navbar-nav .nav-link:hover, 
    .navbar-nav .nav-link.active {
        color: #ffffff !important; 
        background: rgba(255, 255, 255, 0.08) !important; /* Button ke andar halki roshni */
        border: 2px solid #ffffff !important; /* Safed LED Border */
        /* Bahar ka aur Andar ka Heavy White LED Glow */
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.8), 
                    inset 0 0 12px rgba(255, 255, 255, 0.4) !important; 
        text-shadow: 0 0 10px #ffffff; 
        transform: translateY(-2px);
    }

/* ========================================
       📞 SUPER FIXED FLOATING CONTACT BUTTONS
       ======================================== */
    .floating-contact-container {
        position: fixed !important;
        bottom: 40px !important;
        right: 40px !important;    /* Ye isko Right me dhakelega */
        left: auto !important;     /* Ye isko Left se chipakne se rokega */
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        z-index: 999999 !important; /* Sabse upar dikhega */
        pointer-events: auto !important;
    }

    .float-btn {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 28px !important;
        color: #fff !important;
        text-decoration: none !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
        transition: all 0.3s ease !important;
        animation: bounceFloat 3s infinite alternate ease-in-out !important;
    }

    .float-btn:hover {
        transform: scale(1.15) translateY(-5px) !important;
        text-decoration: none !important;
        color: #fff !important;
    }

    /* Call Button (Theme Blue) */
    .call-btn {
        background: linear-gradient(135deg, #0055ff, #00e5ff) !important;
        border: 2px solid rgba(0, 229, 255, 0.5) !important;
    }
    .call-btn:hover { box-shadow: 0 0 25px rgba(0, 229, 255, 0.6) !important; }

    /* WhatsApp Button (WhatsApp Green) */
    .wa-btn {
        background: linear-gradient(135deg, #128C7E, #25D366) !important;
        border: 2px solid rgba(37, 211, 102, 0.5) !important;
    }
    .wa-btn:hover { box-shadow: 0 0 25px rgba(37, 211, 102, 0.6) !important; }

    /* Floating Animation */
    @keyframes bounceFloat {
        0% { transform: translateY(0); }
        100% { transform: translateY(-10px); }
    }

    /* Mobile Adjustment */
    @media(max-width: 768px) {
        .floating-contact-container { 
            bottom: 25px !important; 
            right: 20px !important; 
            gap: 12px !important; 
        }
        .float-btn { 
            width: 55px !important; 
            height: 55px !important; 
            font-size: 26px !important; 
        }
    }
/* ========================================
   4. SOLID FOOTER CSS
   ======================================== */
.solid-footer { background: #010205; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 80px 0 20px 0; color: var(--text-muted); position: relative; z-index: 10; margin-top: auto; }
.footer-brand { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900; 
    font-size: 26px; 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
    text-transform: uppercase;
    /* The Magic Blue Ray Effect */
    background: linear-gradient(-45deg, #ffffff 20%, #00e5ff 40%, #0055ff 50%, #00e5ff 60%, #ffffff 80%); 
    background-size: 300% 300%; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    animation: blueRayFlow 4s ease-in-out infinite; /* Added Animation Here */
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3)); 
}
.footer-heading { font-family: 'Montserrat', sans-serif; color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; display: inline-block; }
.footer-links a:hover { color: var(--cyan-glow); transform: translateX(5px); text-decoration: none; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; color: #fff; margin-right: 10px; margin-bottom: 10px; transition: all 0.3s ease; text-decoration: none; }
.social-links a:hover { background: var(--cyan-glow); border-color: transparent; color: #000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3); }

/* Footer Glowing Buttons */
.btn-led { display: inline-block; width: 100%; padding: 12px 20px; margin-bottom: 15px; background: #000; color: #00e5ff !important; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-align: center; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid #00e5ff; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; animation: ledPulse 1.5s infinite alternate !important; }
.btn-led:hover { background: #00e5ff; color: #000 !important; box-shadow: 0 0 30px #00e5ff, inset 0 0 10px #000; animation: none !important; transform: translateY(-2px); text-decoration: none; }
.btn-led-green { border-color: #10b981 !important; color: #10b981 !important; animation: ledPulseGreen 1.5s infinite alternate !important; }
.btn-led-green:hover { background: #10b981 !important; color: #000 !important; box-shadow: 0 0 30px #10b981, inset 0 0 10px #000; animation: none !important; }

@keyframes ledPulse { 
    0% { box-shadow: 0 0 5px rgba(0, 229, 255, 0.2); } 
    100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.8), inset 0 0 5px rgba(0,229,255,0.3); border-color: #00e5ff; } 
}
@keyframes ledPulseGreen { 
    0% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.2); } 
    100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), inset 0 0 5px rgba(16,185,129,0.3); border-color: #10b981; } 
}

/* Footer Bottom Links */
.copyright-border { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 25px; margin-top: 40px; font-size: 0.9rem; }
.legal-links { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; gap: 20px; }
.legal-links li a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; }
.legal-links li a:hover { color: var(--cyan-glow); }

@media (min-width: 768px) { .legal-links { justify-content: flex-end; } }
/* =======================================================
   📱 GLOBAL MOBILE RESPONSIVENESS (MASTER FIX)
   Ye code poori website ko har page par phone-friendly banayega
   ======================================================= */

@media (max-width: 991px) {
    /* Tablet & Chhoti Screens ke liye */
    .hero-premium, .about-hero { padding-top: 150px; }
    .hero-title, .about-hero h1 { font-size: 42px; }
    .eco-card.finance-card { flex-direction: column; text-align: center; gap: 20px;}
}

@media (max-width: 768px) {
    /* 📱 Proper Mobile Phones ke liye */
    
    /* 1. Universal Headings & Padding Fix */
    .section-title { margin-top: 50px; margin-bottom: 30px; }
    .section-title h2 { font-size: 28px; }
    p { font-size: 15px; } /* Text thoda chhota taaki screen se bahar na jaye */

    /* 2. Universal Grid & Cards Fix (Bahar nahi jayenge) */
    .usp-grid, .eco-grid, .visionary-grid, .services-container { 
        grid-template-columns: 1fr; /* Ek line me ek hi card aayega */
        gap: 15px; 
        padding: 0 15px; 
    }
    .usp-card, .eco-card, .service-card, .team-card { 
        width: 100% !important; 
        max-width: 400px; 
        margin: 0 auto; /* Center me rakhega */
    }

    /* 3. Hero Sections Fix (Lag / Hang Issue khatam) */
    .hero-premium, .about-hero, .hero-section { 
        padding: 120px 15px 50px; 
        background-attachment: scroll !important; /* iOS/Saste Android ka hang issue solved */
    }
    .hero-title, .about-hero h1 { font-size: 32px; line-height: 1.3; }
    .hero-desc { font-size: 15px; }

    /* 4. Buttons Mobile UX (Angoothay se click karna asaan) */
    .hero-cta-group, .gateway-buttons { 
        flex-direction: column; 
        width: 100%; 
        max-width: 350px; 
        margin: 0 auto; 
        gap: 15px; 
    }
    .btn-glow, .btn-outline-glass, .btn-mega { 
        width: 100%; 
        text-align: center; 
        justify-content: center; 
    }

    /* 5. Team / About Images Setup */
    .vm-img-box, .team-img-box { height: 220px; }
    
    /* 6. Footer Fix */
    .footer-links { text-align: center; }
    .footer-brand { text-align: center; }
    .social-links { justify-content: center; display: flex; }
    .solid-footer { padding: 50px 0 20px 0; }
}
/* ==================================================
   MASTER FIX: CLEAR HERO IMAGES ACROSS ALL PAGES
   ================================================== */
[class^="hero-"]::before {
    /* Image ko clear karne ke liye opacity 0.8 se ghata kar 0.3 kar di hai */
    background: linear-gradient(to bottom, rgba(5,7,10,0.3) 0%, rgba(5,7,10,0.1) 50%, rgba(5,7,10,0.9) 100%) !important;
}

/* Text ko padhne laayak rakhne ke liye us par halka sa shadow badha diya hai */
[class^="hero-"] .hero-content h1, 
[class^="hero-"] .hero-content p {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7) !important;
}