/* --- RESET & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f0f2f5;
    color: #1D1D1F;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* --- VIBRANT BACKGROUND BLOBS (Jaan-daar Colors) --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Blur effect for depth */
    z-index: -1;
    opacity: 0.6; /* Thoda tez kiya taake glass ke peeche dikhe */
    animation: float 8s infinite alternate ease-in-out;
}

/* Colors ko thoda dark kiya taake white glass par nazar aayen */
.blob-1 { width: 600px; height: 600px; background: #007AFF; top: -10%; left: -10%; }
.blob-2 { width: 500px; height: 500px; background: #9F45D8; bottom: 5%; right: -5%; animation-delay: 2s; }
.blob-3 { width: 400px; height: 400px; background: #00C7BE; top: 40%; left: 30%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

/* --- REAL GLASSMORPHISM UTILITIES --- */
.glass-nav {
    /* Background ko bohat halka kiya (0.2) */
    background: rgba(255, 255, 255, 0.2);
    /* Asli iOS Blur */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Line 56 ke aas paas replace karo --- */
.glass-card-service-box, .service-box, .glass-card {
    /* Background 20% visible, 80% transparent */
    background: rgba(255, 255, 255, 0.25);
    
    /* Strong Blur */
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    
    /* Chamkila Border (White Overlay) */
    border: 1px solid rgba(255, 255, 255, 0.7);
    
    /* Soft Shadow */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    border-radius: 24px;
    padding: 30px;
    transition: transform 0.3s ease;
    
    /* Layout Fixes */
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.glass-card-service-box:hover, .service-box:hover, .glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35); /* Hover par solid */
    border-color: #fff;
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.2);
}
/* --- TYPOGRAPHY & COLORS --- */
.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.highlight { color: #007AFF; }
.gradient-text {
    background: linear-gradient(135deg, #007AFF, #9F45D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVIGATION LINKS --- */
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: #1D1D1F; font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: #007AFF; text-shadow: 0 0 10px rgba(0,122,255,0.3); }

/* --- BUTTONS (NEON GLOW) --- */
.btn-primary {
    background: rgba(29, 29, 31, 0.9);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
    background: #007AFF;
    box-shadow: 0 0 25px rgba(0, 122, 255, 0.6);
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.4);
}
.btn-secondary {
    padding: 12px 30px;
    color: #1D1D1F;
    text-decoration: none;
    font-weight: 600;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10% 0; /* Top padding added for fixed nav */
    position: relative;
}
.hero-content { max-width: 600px; z-index: 2; }
.badge {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    color: #007AFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
h1 { font-size: 4.5rem; line-height: 1.05; margin-bottom: 25px; letter-spacing: -2px; font-weight: 800; }
.hero p { color: #4b4b4b; font-size: 1.25rem; margin-bottom: 40px; line-height: 1.6; font-weight: 400; }
.hero-btns { display: flex; align-items: center; gap: 20px; }

/* Hero Floating Card */
.hero-card {
    width: 320px;
    text-align: center;
    position: absolute;
    right: 12%;
    top: 35%;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.card-icon { font-size: 3.5rem; margin-bottom: 15px; display: block; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1)); }

/* --- SERVICES GRID --- */
.services { padding: 100px 10%; text-align: center; position: relative; z-index: 2; }
.services h2 { font-size: 2.8rem; margin-bottom: 60px; font-weight: 700; }
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.service-box { text-align: left; height: 100%; }
.service-box .icon { 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    background: rgba(255,255,255,0.4); 
    width: 70px; height: 70px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}
.service-box h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 700; }
.service-box p { color: #555; line-height: 1.6; font-size: 1rem; }
/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed; /* Screen par chipka rahega */
    width: 60px;
    height: 60px;
    bottom: 30px; /* Neeche se faasla */
    right: 30px; /* Right side se faasla */
    background-color: #25d366; /* WhatsApp Official Green */
    color: #FFF;
    border-radius: 50%; /* Gol button */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Saaya (Shadow) */
    z-index: 1000; /* Sab se upar dikhega */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Smooth hover effect */
    border: 2px solid white; /* Thoda sa glass border */
}

/* Hover karne par thoda bada aur dark hoga */
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile par thoda chota ho jaye ga */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
/* --- PROCESS SECTION --- */
.process-section {
    padding: 100px 10%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Mobile par neeche aa jayenge */
}

.process-step {
    flex: 1; /* Sab steps barabar size ke honge */
    min-width: 250px;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 122, 255, 0.1); /* Halka neela transparent number */
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1D1D1F;
    position: relative; /* Number ke upar aaye */
    z-index: 1;
}

.process-step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Connecting Arrows */
.arrow-icon {
    font-size: 2rem;
    color: #007AFF;
    font-weight: bold;
    opacity: 0.5;
}

/* Mobile Responsive: Arrow gayab ho jaye aur steps neeche aa jayein */
@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
    }
    .arrow-icon {
        display: none; /* Mobile par arrow ki zaroorat nahi */
    }
}
/* --- MACBOOK DOCK EFFECT (POPUP) --- */
.service-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yeh "Bouncy" effect deta hai */
    z-index: 1; /* Normal haalat mein neeche */
    cursor: pointer; /* Mouse hath ban jaye ga */
}

/* Jab mouse upar aaye (Hover) */
.service-box:hover {
    transform: scale(1.15) translateY(-15px); /* Size 15% bada hoga aur upar uthega */
    z-index: 10; /* Sab se upar aa jaye ga taake padosi cards ke upar dikhe */
    background: rgba(255, 255, 255, 0.65); /* Thoda aur safaid/bright ho jaye ga */
    box-shadow: 0 30px 60px rgba(0, 122, 255, 0.3); /* Neeche neeli glow */
    border-color: #007AFF; /* Border neela ho jaye ga */
}

/* Mobile Friendly Check */
/* Mobile par click karne se ye effect aayega */
.service-box:active {
    transform: scale(1.1);
}
/* --- UNIVERSAL MACBOOK DOCK EFFECT (ALL BOXES) --- */
/* Yahan hum ne saare boxes ke naam likh diye hain */
.service-box, .process-step, .hero-card, .glass-card {
    /* Wahi smooth bouncy transition */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1; /* Normal haalat mein neeche */
    cursor: pointer; /* Mouse hath ban jaye ga */
    position: relative;
}

/* Jab in mein se KISI BHI box par mouse aaye */
.service-box:hover, .process-step:hover, .hero-card:hover, .glass-card:hover {
    /* BOOM! 40% Bada size */
    transform: scale(1.4) translateY(-20px); 
    
    /* Sab se upar (Top Layer) */
    z-index: 999; 
    
    /* Background Solid White (Taake peeche ka kuch nazar na aaye) */
    background: rgba(255, 255, 255, 1); 
    
    /* Zabardast Deep Shadow */
    box-shadow: 0 50px 100px rgba(0, 122, 255, 0.4); 
    
    /* Neon Blue Border */
    border: 2px solid #007AFF; 
}
/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 10%;
    text-align: center;
    position: relative;
    z-index: 2;
}
.contact-section h2 { font-size: 3rem; margin-bottom: 10px; font-weight: 800; }
.subtitle { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

/* Contact Form Box */
.contact-box {
    max-width: 700px;
    margin: 0 auto; /* Center mein lane ke liye */
    padding: 40px;
    text-align: left;
}

/* Input Fields Styling */
.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5); /* Halka transparent */
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    color: #1D1D1F;
    outline: none;
    transition: 0.3s;
}

/* Jab user likhne ke liye click kare */
input:focus, textarea:focus {
    background: white;
    border-color: #007AFF;
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.2);
    transform: scale(1.02); /* Thoda sa bada hoga */
}

/* Button Full Width */
.full-width {
    width: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
    padding: 15px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: #888;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Mobile Responsive Form */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column; /* Mobile par inputs upar-neechay hon */
        gap: 15px;
    }
}
/* --- INDUSTRIES BAR --- */
.industries-section { padding: 50px 10%; text-align: center; }
.industry-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

/* --- PRICING STYLES --- */
.price { font-size: 3rem; margin: 20px 0; font-weight: 800; color: #1D1D1F; }
.price span { font-size: 1rem; color: #888; font-weight: 400; }
.price-list { list-style: none; text-align: left; margin-bottom: 30px; }
.price-list li { margin-bottom: 10px; font-size: 0.95rem; color: #666; }

/* Highlight "Best Value" Card */
.best-value {
    border: 2px solid #007AFF; /* Neela Border */
    transform: scale(1.05); /* Thoda bada */
    background: rgba(255, 255, 255, 0.8);
}
.badge-top {
    background: #007AFF;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile Responsive Nav */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile par menu chup jaye ga (abhi ke liye simple rakhte hain) */
    .industry-bar { flex-direction: column; }
}
/* --- UPDATED INDUSTRIES (Boxes) --- */
.industry-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Mobile par neeche aa jayenge */
    margin-top: 30px;
}

.industry-box {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D1D1F;
    min-width: 150px; /* Sab boxes ki chaudai barabar */
    text-align: center;
    border-radius: 15px; /* Thoday gol kinare */
    cursor: default;
    background: rgba(255, 255, 255, 0.4);
}

/* Hover effect for Industry Boxes */
.industry-box:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: #007AFF;
    color: #007AFF;
}

/* --- UPDATED PRICING (Clean) --- */
.price { 
    font-size: 2.5rem; /* Font size chota kiya (pehle 3rem tha) */
    margin: 15px 0; 
    font-weight: 800; 
    color: #1D1D1F; 
}

.price span { 
    font-size: 1rem; 
    color: #888; 
    font-weight: 500; 
}

.price-list { 
    list-style: none; 
    text-align: left; 
    margin-bottom: 30px; 
    padding-left: 10px;
}

/* Emojis hatane ke baad simple bullet points styling */
.price-list li { 
    margin-bottom: 12px; 
    font-size: 0.95rem; 
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Har line se pehle chota sa dot (bullet) */
.price-list li::before {
    content: "•";
    color: #007AFF;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buttons ko uniform karne ke liye override */
.service-box .btn-primary {
    display: block; /* Poori width le ga */
    text-align: center;
    margin-top: auto; /* Box ke neechay chipak jaye */
}
/* --- UPDATED INDUSTRIES (Boxes Style) --- */
.industry-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Mobile par neeche aa jayenge */
    margin-top: 40px;
}

.industry-box {
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    min-width: 140px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    cursor: default;
    transition: 0.3s;
}

.industry-box:hover {
    background: #fff;
    transform: translateY(-5px);
    border: 1px solid #007AFF;
    color: #007AFF;
    box-shadow: 0 10px 20px rgba(0,122,255,0.15);
}

/* --- CLEAN PRICING STYLES --- */
/* Font size ko 3rem se kam karke 2.5rem kiya */
.price { 
    font-size: 2.5rem; 
    margin: 15px 0; 
    font-weight: 800; 
    color: #1D1D1F; 
}

.price span { 
    font-size: 1rem; 
    color: #888; 
    font-weight: 500; 
}

/* List Style Clean Up */
.price-list { 
    list-style: none; 
    text-align: left; 
    margin-bottom: 30px; 
    padding-left: 5px;
}

.price-list li { 
    margin-bottom: 12px; 
    font-size: 0.95rem; 
    color: #555;
    position: relative;
    padding-left: 20px;
}

/* Emojis ki jagah blue dot */
.price-list li::before {
    content: "•"; 
    color: #007AFF;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Buttons Uniformity */
.service-box .btn-primary {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: auto;
}
/* --- FIX ALIGNMENT --- */
.industries-section h2 {
    text-align: center; /* Title ko center karega */
    margin-bottom: 40px; /* Boxes se thoda faasla dega */
    width: 100%; /* Poori choraai le ga */
}
/* =========================================
   11. MODERN DARK FOOTER
   ========================================= */
.site-footer {
    background-color: #0B0F19; /* Deep Dark Blue/Black */
    color: #fff;
    padding: 70px 0 30px 0;
    margin-top: 100px;
    border-top: 1px solid #1F2937;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* 4 Columns */
    gap: 40px;
    margin-bottom: 50px;
}

/* Branding Column */
.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: #fff; }
.footer-bio { color: #9CA3AF; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; max-width: 300px; }

/* Social Icons */
.social-links { display: flex; gap: 15px; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: #1F2937;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid #374151;
}
.social-icon:hover {
    background: #007AFF;
    border-color: #007AFF;
    transform: translateY(-3px);
}

/* Headings & Links */
.footer-col h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}
.footer-col ul li a:hover { color: #007AFF; padding-left: 5px; }

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1F2937;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p { color: #6B7280; font-size: 0.9rem; }
.footer-policy a { color: #6B7280; text-decoration: none; margin-left: 20px; font-size: 0.9rem; transition: 0.3s; }
.footer-policy a:hover { color: #fff; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-policy a { margin: 0 10px; }
}

/* Agar WhatsApp button nahi hai to isay neeche laye */
@media (max-width: 768px) {
    .float-fiverr {
        width: 50px;
        height: 50px;
        bottom: 90px; /* Mobile par thoda adjust */
        right: 15px;
    }
}
/* =========================================
   LAPTOP-TO-MOBILE PERFECT SCALING
   ========================================= */
@media screen and (max-width: 768px) {
    
    /* 1. Prevent Horizontal Scroll */
    html, body {
        overflow-x: hidden;
        width: 100vw;
    }

    /* 2. Glass Nav - Compact look */
    .glass-nav {
        padding: 10px 15px !important;
        justify-content: center !important; /* Logo center mein */
    }
    .nav-links { display: none !important; } /* Mobile par menu hide taake messy na ho */
    .logo { font-size: 1.1rem !important; }

    /* 3. Hero Section - Laptop look on Mobile */
    #home {
        display: flex !important;
        flex-direction: column !important; /* Laptop side-by-side ko vertical kiya */
        text-align: center !important;
        padding: 40px 15px !important;
        min-height: auto !important;
    }

    /* Laptop ki tarah Heading scaling */
    .hero-content h1 {
        font-size: 2.2rem !important; /* Laptop ke 4.5rem ko mobile ke liye 2.2 kiya */
        line-height: 1.1 !important;
        letter-spacing: -1px !important;
        margin-bottom: 20px !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        padding: 0 5px !important;
        margin-bottom: 30px !important;
    }

    /* 4. Results Card (The Floating Box) */
    .hero-card {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 25px !important;
        border-radius: 20px !important;
        transform: scale(0.95); /* Thoda sa chota laptop feel ke liye */
    }

    /* 5. Services & Pricing Cards - Uniformity */
    .grid-container, .process-grid, .results-grid {
        grid-template-columns: 1fr !important; /* Aik line mein aik box */
        gap: 20px !important;
        padding: 0 10px !important;
    }

    /* Glass Cards scaling */
    .glass-card-service-box, .service-box, .glass-card {
        padding: 25px !important;
        border-radius: 20px !important;
        margin-bottom: 10px !important;
    }

    /* 6. Pricing Specifics (Fiverr Gigs Look) */
    .price {
        font-size: 2.2rem !important; /* Price thodi choti taake fit aye */
    }
    
    .glass-card-service-box.best-value {
        transform: scale(1) !important; /* Mobile par scaling issue karti hai */
        border-width: 2px !important;
    }

    /* 7. Ready to Scale Form */
    .contact-container {
        padding: 30px 15px !important;
        border-radius: 20px !important;
    }
}
/* =========================================
   FINAL MOBILE RESPONSIVE FIX (Paste at End)
   ========================================= */

/* Default: Hamburger Chupao */
.hamburger, .menu-checkbox { display: none; }
.desktop-btn { display: block; }

/* FLOATING BUTTONS STYLING */
.floating-buttons-container {
    position: fixed; bottom: 20px; right: 20px;
    display: flex; flex-direction: column; gap: 12px; z-index: 9999;
}
.float-btn {
    width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid white; transition: 0.3s;
}
.float-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.fiverr-btn { background: #1DBF73; }
.whatsapp-btn { background: #25D366; }

/* --- MOBILE SCREEN STYLES --- */
@media screen and (max-width: 768px) {
    
    /* 1. General Layout Fixes */
    html, body { overflow-x: hidden; width: 100%; }
    section { padding: 60px 20px !important; }

    /* 2. Navigation Bar Fix */
    .glass-nav {
        padding: 15px 20px !important;
        justify-content: space-between !important;
        background: rgba(255, 255, 255, 0.95) !important; /* Solid background on mobile */
    }
    
    .logo { font-size: 1.3rem !important; z-index: 1001; }
    .desktop-btn { display: none !important; } /* Desktop button hide */

    /* 3. Hamburger Menu Logic */
    .hamburger {
        display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1002;
    }
    .hamburger span {
        width: 25px; height: 3px; background: #333; border-radius: 5px; transition: 0.3s;
    }
    .menu-checkbox:checked + .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-checkbox:checked + .hamburger span:nth-child(2) { opacity: 0; }
    .menu-checkbox:checked + .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* 4. Sliding Menu (Tabs) */
    .nav-links {
        position: fixed; top: 0; right: -100%; /* Screen se bahar */
        width: 75%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column !important;
        justify-content: center !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1000;
        gap: 25px !important;
    }
    .menu-checkbox:checked ~ .nav-links { right: 0; /* Slide in */ }

    /* 5. Hero Section (Text Size Fix) */
    #home {
        flex-direction: column !important;
        text-align: center !important;
        padding-top: 120px !important; /* Nav ke neeche na chupey */
        height: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2.4rem !important; /* 4.5rem se chota kiya */
        line-height: 1.1 !important;
    }
    .hero-content p { font-size: 1rem !important; }

    .hero-card {
        position: relative !important;
        top: 0 !important; right: 0 !important;
        margin: 40px auto 0 !important;
        width: 100% !important; max-width: 340px !important;
    }

    /* 6. Grids (Services, Process, Pricing) */
    .grid-container, .process-grid, .industry-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .glass-card-service-box, .service-box { width: 100% !important; }
    
    /* 7. Contact Form */
    .input-group { flex-direction: column !important; }
    .contact-box { padding: 25px !important; }
}
/* =========================================
   PREMIUM MOBILE MENU (Full Screen & Smooth)
   ========================================= */

/* 1. Default: Hide on Desktop */
.hamburger, .menu-checkbox {
    display: none;
}

@media screen and (max-width: 768px) {
    
    /* 2. Hamburger Icon (Open Button) */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2000; /* Sab se upar */
        position: absolute;
        right: 20px;
        top: 25px;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #1D1D1F;
        border-radius: 5px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bouncy Effect */
    }

    /* 3. The Menu Container (Full Screen Glass) */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* Screen se bahar */
        width: 100%;  /* Poori Screen Cover Karega */
        height: 100vh;
        background: rgba(255, 255, 255, 0.98); /* Almost Solid White */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px; /* Links ke darmiyan fasla */
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1999; /* Hamburger se neeche, baaki sab se upar */
        opacity: 0;
    }

    /* 4. Menu Slide-In Animation */
    .menu-checkbox:checked ~ .nav-links {
        right: 0;
        opacity: 1;
    }

    /* 5. Links Styling Inside Menu */
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: 0.5s ease 0.1s;
    }
    
    /* Jab Menu Khule to Links ek ek karke upar ayen */
    .menu-checkbox:checked ~ .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered Delay (Links bari bari ayenge) */
    .menu-checkbox:checked ~ .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(7) { transition-delay: 0.7s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(8) { transition-delay: 0.8s; }

    .nav-links li a {
        font-size: 1.5rem !important; /* Baray Fonts */
        font-weight: 700 !important;
        color: #1D1D1F;
    }

    /* 6. Hamburger Animation (Ban gaya 'X') */
    .menu-checkbox:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
        background-color: #FF3B30; /* Red color for Close */
    }
    .menu-checkbox:checked + .hamburger span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .menu-checkbox:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
        background-color: #FF3B30;
    }
}
/* =========================================
   FINAL MOBILE MENU (Top Aligned & Premium)
   ========================================= */

/* Default State */
.hamburger, .menu-checkbox { display: none; }

@media screen and (max-width: 768px) {
    
    /* 1. Hamburger Icon (Fixed Top Right) */
    .hamburger {
        display: flex; flex-direction: column; gap: 6px; cursor: pointer;
        z-index: 2005; position: fixed; right: 20px; top: 25px;
        background: rgba(255,255,255,0.9); padding: 12px; border-radius: 12px;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .hamburger span { width: 28px; height: 3px; background: #1D1D1F; border-radius: 5px; transition: 0.3s; }

    /* 2. The Drawer (LEFT SIDE & GLASS) */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* Hidden */
        width: 85%;   /* Screen Coverage */
        height: 100vh;
        
        /* Premium Glass Background */
        background: rgba(255, 255, 255, 0.9); /* Thoda solid kiya taake text parhay ja sakay */
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        border-left: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);

        flex-direction: column;
        
        /* 🔥 YEH LINE MENU KO UPAR LE KAR JAYEGI */
        justify-content: flex-start !important; 
        
        padding-top: 40px; /* Upar se thoda fasla */
        padding-left: 35px; /* Left se alignment */
        gap: 25px; /* Links ke beech gap */
        
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        z-index: 2000;
        overflow-y: auto; /* Agar screen choti ho to scroll ho jaye */
    }

    /* 3. Slide In Logic */
    .menu-checkbox:checked ~ .nav-links { right: 0; }

    /* 4. Hamburger Animation (X Ban jaye) */
    .menu-checkbox:checked + .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); background: #FF3B30; }
    .menu-checkbox:checked + .hamburger span:nth-child(2) { opacity: 0; }
    .menu-checkbox:checked + .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); background: #FF3B30; }

    /* 5. Logo inside Menu (Style) */
    .mobile-logo-item .logo {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
        display: block;
    }

    /* 6. Links Style (Bada aur Saaf) */
    .nav-links li { list-style: none; width: 100%; opacity: 0; transform: translateX(20px); transition: 0.4s ease; }
    
    .nav-links li a {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #1D1D1F;
        text-decoration: none;
        display: block;
        letter-spacing: -0.5px;
    }
    
    /* Hover Effect */
    .nav-links li a:hover { color: #007AFF; padding-left: 10px; transition: 0.3s; }

    /* 7. Staggered Animation (Ek ek karke aayen) */
    .menu-checkbox:checked ~ .nav-links li { opacity: 1; transform: translateX(0); }
    .menu-checkbox:checked ~ .nav-links li:nth-child(1) { transition-delay: 0.1s; } 
    .menu-checkbox:checked ~ .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(5) { transition-delay: 0.3s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(6) { transition-delay: 0.35s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(7) { transition-delay: 0.4s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(8) { transition-delay: 0.45s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(9) { transition-delay: 0.5s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(10) { transition-delay: 0.55s; }
    .menu-checkbox:checked ~ .nav-links li:nth-child(11) { transition-delay: 0.6s; }

    /* Button Adjustment inside Menu */
    .mobile-audit { margin-top: 10px; }
    .mobile-audit .btn-primary {
        background: #1D1D1F !important;
        color: white !important;
        padding: 12px 30px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
}
