* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    
    /* 1. Bright Neon Gradient (Pehle se zyada bright colors) */
    background: linear-gradient(-45deg, 
        #004d33, /* Deep Emerald */
        #177555, /* Bright Neon Green */
        #0b0b0b, /* Pure Black for contrast */
        #008257  /* Sea Green */
    );
    
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite; /* Speed thori fast kar di */
    
    /* 2. Glassy Overlay (Taake text par asar na pare lekin background chamke) */
    position: relative;
}

/* Background ke oopar ek halki chamak (Glow) */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 170, 0.1) 0%, transparent 80%);
    pointer-events: none; /* Mouse clicks ko na rokay */
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scrollbar ko bhi Neon Green kar dete hain taake match kare */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #00ffaa;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffaa;
}

@keyframes gradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- Updated Navigation Links --- */
nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative; /* Underline position ke liye zaruri hai */
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* --- Glow Underline Effect (Jo center se niklay gi) --- */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #00ffaa;
    box-shadow: 0 0 10px #00ffaa, 0 0 20px #00ffaa;
    transition: all 0.3s ease;
    transform: translateX(-50%); /* Center alignment */
}

/* --- Hover State --- */
nav a:hover {
    color: #00ffaa;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.8);
    transform: translateY(-2px); /* Halka sa upar uthega */
}

/* Hover karne par line expand hogi */
nav a:hover::after {
    width: 100%;
}

/* Logo ko bhi thora zyada prominent karne ke liye update */
.logo {
    font-size: 30px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

/* --- Sections General --- */
section {
    padding: 80px 10%;
    text-align: center;
}

/* --- Hero --- */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: clamp(35px, 6vw, 60px);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}

/* --- Stats --- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: rgba(0, 255, 170, 0.05);
}

.stat h2 {
    font-size: 40px;
    color: #ffcc00;
    text-shadow: 0 0 15px #ffcc00;
}

/* --- Services Grid --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 170, 0.2);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #00ffaa;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.2);
}

.card h3 {
    color: #00ffaa;
    margin-bottom: 15px;
}

/* --- Contact Form Section (Glassmorphism Look) --- */
.contact form {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    margin: 50px auto 0;
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03); /* Halka sa shishe jaisa background */
    backdrop-filter: blur(10px); /* Background blur effect */
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 170, 0.1); /* Halka neon border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* --- Input & Textarea Styling --- */
input, textarea {
    padding: 18px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

/* Placeholder ka color thora light karne ke liye */
input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* --- Interactive Focus Effect --- */
input:focus, textarea:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: #00ffaa; /* Focus par neon green border */
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.3), inset 0 0 10px rgba(0, 255, 170, 0.1);
    transform: translateY(-2px); /* Focus par halka sa upar uthega */
}

/* Textarea ki height set ki */
textarea { 
    height: 150px; 
    resize: none; /* Resize handle hata diya taake layout kharab na ho */
}

/* --- Form Submit Button (Matches your new Pulse style) --- */
form button {
    margin-top: 10px;
    align-self: center; /* Button ko center karne ke liye */
    min-width: 200px;
}

/* --- Buttons --- */
.cta, .main-btn, form button {
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 5px;
}

.cta { background: #ffcc00; padding: 10px 20px; box-shadow: 0 0 10px #ffcc00; }
.main-btn { background: #00ffaa; padding: 15px 40px; font-size: 1.1rem; box-shadow: 0 0 20px #00ffaa; }
form button { background: #ffcc00; padding: 15px; font-size: 1rem; box-shadow: 0 0 15px #ffcc00; }

.main-btn:hover, form button:hover { transform: scale(1.05); }

/* --- Footer --- */
footer {
    padding: 40px;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
}
/* --- 1. NEON BORDER PULSE (Saaf nazar aane wali animation) --- */
@keyframes neonPulse {
    0% { border-color: #00ffaa; box-shadow: 0 0 10px #00ffaa; }
    50% { border-color: #ffcc00; box-shadow: 0 0 30px #ffcc00, 0 0 50px rgba(255, 204, 0, 0.4); }
    100% { border-color: #00ffaa; box-shadow: 0 0 10px #00ffaa; }
}

/* --- 2. FAST FLOAT (Ab cards tezi se move karengi) --- */
@keyframes fastFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); } /* Zyada height aur halka sa tilt */
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- 3. HIGH-GLOW TEXT --- */
@keyframes textGlow {
    0% { text-shadow: 0 0 5px #00ffaa; filter: brightness(1); }
    50% { text-shadow: 0 0 25px #00ffaa, 0 0 45px #00ffaa; filter: brightness(1.5); }
    100% { text-shadow: 0 0 5px #00ffaa; filter: brightness(1); }
}

/* --- Applying to Your Elements --- */

.logo {
    display: inline-block;
    animation: textGlow 1.5s infinite ease-in-out; /* Fast pulse */
    font-size: 32px; /* Thora bara kar diya */
}

.card {
    background: rgba(10, 20, 15, 0.9); /* Darker background taake neon pop kare */
    border: 3px solid #00ffaa; /* Thicker border */
    padding: 40px;
    border-radius: 20px;
    margin: 20px;
    
    /* Neon Border Pulse aur Floating dono ek sath */
    animation: neonPulse 2s infinite alternate, fastFloat 3.5s infinite ease-in-out;
}

/* Cards ke darmiyan gap barha diya taake movement saaf dikhe */
.grid {
    gap: 50px;
    padding: 50px 0;
}

/* --- 1. SMOOTH PULSE ANIMATION (Bahar ki glow aur scale) --- */
@keyframes buttonPulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 255, 170, 0.4); 
    }
    50% { 
        transform: scale(1.03); /* Halka sa bara hoga */
        box-shadow: 0 0 20px rgba(0, 255, 170, 0.7), 0 0 40px rgba(0, 255, 170, 0.2); 
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 255, 170, 0.4); 
    }
}

/* --- Applying to Buttons (Style Wahi, Animation Pulse) --- */
.main-btn, .cta, form button {
    /* Aapka Original Style */
    position: relative;
    border: 2px solid white; /* Original border */
    outline: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px; 
    cursor: pointer;
    overflow: hidden;

    /* Background Gradient */
    background: linear-gradient(90deg, #00ffaa, #00d4ff, #00ffaa);
    background-size: 200% auto;

    /* Nayi Pulse Animation */
    animation: buttonPulse 2s infinite ease-in-out;
    
    transition: 0.3s ease;
}

/* Hover par pulse thora tez aur glow zyada ho jayega */
.main-btn:hover, .cta:hover, form button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #00ffaa;
    filter: brightness(1.1);
}

/* Form button ka pulse gold color mein */
form button {
    background: linear-gradient(90deg, #ffcc00, #ff9900, #ffcc00);
    animation: buttonPulse 2s infinite ease-in-out;
}

/* IMPORTANT: Purani "fastShine" wali line ko khatam karne ke liye */
.main-btn::after, .cta::after, form button::after {
    display: none !important;
}

@keyframes fastShine {
    0% { left: -150%; }
    30% { left: 150%; } /* Tezi se guzre ga */
    100% { left: 150%; }
}

/* Stats ke numbers ko bhi chamkayein */
.stat h2 {
    animation: textGlow 2s infinite ease-in-out;
    color: #ffcc00;
}
/* --- 1. Global Font Setup --- */
body {
    font-family: 'Outfit', sans-serif; /* Clean, modern and highly readable */
    -webkit-font-smoothing: antialiased;
    color: white;
    background-color: #050505;
}

/* --- 2. Ultra-Modern Headings (Syne Font) --- */
h1, h2, .logo {
    font-family: 'Syne', sans-serif; /* Ye font boht attractive aur unique hai */
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

/* --- 3. Hero Section H1 (Error Proof Gradient) --- */
.hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1;
    margin-bottom: 20px;
    
    /* FIX: Agar gradient support na kare toh white nazar aaye */
    color: white; 
    
    background: linear-gradient(90deg, #ffffff, #00ffaa, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Text visible rahega agar background-clip fail ho jaye */
    display: block; 
}

/* --- 4. Beautiful Paragraphs --- */
p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* --- 5. Professional Logo Fix --- */
.logo {
    font-size: 28px;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #00ffaa, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- 6. Stats Numbers (Big & Bold) --- */
.stat h2 {
    font-size: 60px;
    font-weight: 800;
    color: #ffcc00; /* Simple color pehle taake error na aaye */
    background: linear-gradient(to bottom, #ffcc00, #ff8800);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 7. Service Cards Headings --- */
.card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    color: #00ffaa;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
/* --- 2. UNIVERSAL HEADING STYLE (Just Headings Change) --- */
h1, h2, h3, .logo {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800;
    text-transform: uppercase;
    /* Aapka Favourite Gradient */
    background: linear-gradient(90deg, #ffffff, #00ffaa, #ffcc00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.3));
    margin-bottom: 15px;
}
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #00ffaa;
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* Mouse clicks ko na rokay */
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 15px #00ffaa;
}
/* --- Results Section --- */
.results {
    padding: 100px 10%;
    background: #050505;
    text-align: center;
}

.row-title {
    font-size: 1.6rem;
    margin: 50px 0 25px;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.before-title { color: #ff4d4d; text-shadow: 0 0 10px rgba(255, 77, 77, 0.3); }
.after-title { color: #00ffaa; text-shadow: 0 0 10px rgba(0, 255, 170, 0.3); }

/* --- Results Grid (Stable 3-Column Layout) --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-bottom: 40px;
}

/* --- Result Card (Sharp Outline Like Services) --- */
.result-card {
    position: relative;
    border-radius: 15px; /* Cards jaisa roundness */
    overflow: hidden;
    background: #000;
    /* 1. Sharp Border (Glower Outline) */
    border: 2px solid transparent; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Color Coding for Outlines */
.before-card {
    border-color: #ff4d4d;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

.after-card {
    border-color: #00ffaa;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.2);
}

/* --- Image Fix (Fixed Height & Width) --- */
.result-card img {
    width: 150%;
    /* 2. Sab images ki barabar height (Adjust as needed) */
    height: 200px; 
    display: block;
    /* 3. Image kategi nahi aur poore box ko cover karegi */
    object-fit: cover; 
    transition: 0.5s ease;
}

/* Hover Effect: Image zooms slightly but border stays sharp */
.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 255, 170, 0.4); /* Glow increases on hover */
}

.before-card:hover {
    box-shadow: 0 0 25px rgba(255, 77, 77, 0.4);
}

/* --- Rating Badge (Positioned over Image) --- */
.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-card .status { color: #ff4d4d; }
.after-card .status { color: #00ffaa; }

/* Responsive for Mobile */
@media (max-width: 900px) {
    .results-grid { grid-template-columns: 1fr; gap: 30px; }
    .result-card img { height: 220px; }
}
/* --- Pulse Animations (Ultra High Glow) --- */
@keyframes beforeGlow {
    0% { filter: drop-shadow(0 0 5px #ff4d4d) drop-shadow(0 0 10px rgba(255, 77, 77, 0.4)); }
    50% { filter: drop-shadow(0 0 15px #ff4d4d) drop-shadow(0 0 30px rgba(255, 77, 77, 0.8)); }
    100% { filter: drop-shadow(0 0 5px #ff4d4d) drop-shadow(0 0 10px rgba(255, 77, 77, 0.4)); }
}

@keyframes afterGlow {
    0% { filter: drop-shadow(0 0 5px #00ffaa) drop-shadow(0 0 10px rgba(0, 255, 170, 0.4)); }
    50% { filter: drop-shadow(0 0 15px #00ffaa) drop-shadow(0 0 30px rgba(0, 255, 170, 0.8)); }
    100% { filter: drop-shadow(0 0 5px #00ffaa) drop-shadow(0 0 10px rgba(0, 255, 170, 0.4)); }
}

/* --- Result Card --- */
.result-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    border: 2px solid transparent; 
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

/* Wide Glower Outlines using Filters */
.before-card {
    border-color: #ff4d4d;
    animation: beforeGlow 2s infinite ease-in-out;
}

.after-card {
    border-color: #00ffaa;
    animation: afterGlow 2s infinite ease-in-out;
}

/* Hover Effect: Glow becomes Massive */
.before-card:hover {
    filter: drop-shadow(0 0 25px #ff4d4d) !important;
    transform: translateY(-8px);
}

.after-card:hover {
    filter: drop-shadow(0 0 25px #00ffaa) !important;
    transform: translateY(-8px);
}

/* --- Baqi Sab Same --- */
.result-card img {
    width: 150%;
    height: 200px; 
    display: block;
    object-fit: cover; 
    transition: 0.5s ease;
}
/* --- Contact Section --- */
.contact-section {
    padding: 100px 10%;
    background: #050505;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* --- Contact Card Base --- */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Green Shine Glow for WhatsApp/General */
.whatsapp-card {
    border-color: rgba(0, 255, 170, 0.3);
    animation: contactGlowGreen 3s infinite ease-in-out;
}

/* Red Shine Glow for Email/Style */
.email-card {
    border-color: rgba(255, 77, 77, 0.3);
    animation: contactGlowRed 3s infinite ease-in-out;
}

.location-card {
    border-color: rgba(0, 150, 255, 0.3); /* Blue Glow for variety */
    animation: contactGlowBlue 3s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.1);
}

/* Animations (Wide Pulse) */
@keyframes contactGlowGreen {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 170, 0.2); }
    50% { box-shadow: 0 0 35px rgba(0, 255, 170, 0.5); }
}

@keyframes contactGlowRed {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 77, 77, 0.2); }
    50% { box-shadow: 0 0 35px rgba(255, 77, 77, 0.5); }
}

/* Icon & Text Styling */
.icon-box {
    font-size: 2.5rem;
    color: #00ffaa;
    margin-bottom: 20px;
}

.email-card .icon-box { color: #ff4d4d; }

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Syne', sans-serif;
}

.contact-card p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-card .contact-link:hover { background: #00ffaa; color: #000; }
.email-card .contact-link:hover { background: #ff4d4d; color: #fff; }

/* Hover Effect */
.contact-card:hover {
    transform: translateY(-10px);
}
/* Mini Cards Grid */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per line */
    gap: 15px;
    margin-top: 30px;
}

/* Button-Style Small Cards */
.mini-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 170, 0.3);
    padding: 15px 20px;
    border-radius: 50px; /* Pill/Button shape */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s all ease;
    color: #fff;
}

.mini-card i {
    color: #00ffaa;
    font-size: 1.1rem;
}

.mini-card span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pulse Shine on Small Cards */
.mini-card:hover {
    background: rgba(0, 255, 170, 0.1);
    border-color: #00ffaa;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.4);
    transform: translateY(-3px);
}

/* Order Container Animation */
.order-container {
    margin-top: 40px;
    padding: 30px;
    background: #111;
    border: 1px solid #00ffaa;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mini-grid { grid-template-columns: 1fr; } /* Mobile par buttons ek ke niche ek */
}
/* --- Modernized Order Container --- */
.order-container {
    margin-top: 50px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 170, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.order-container h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Styled Inputs & Select --- */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#user-name, #service-select {
    width: 100%;
    max-width: 500px;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
    outline: none;
}

/* Dropdown ko "Piyara" banane ki styling */
#service-select {
    cursor: pointer;
    appearance: none; /* Purana arrow khatam */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ffaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

#user-name:focus, #service-select:focus {
    border-color: #00ffaa;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

/* --- Premium Animated Place Order Button --- */
.order-btn {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: linear-gradient(45deg, #00ffaa, #00ccff);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 170, 0.3);
}

.order-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 170, 0.5);
    letter-spacing: 2px;
}
/* --- About Section Professional --- */
.about {
    padding: 120px 10%;
    background: #050505;
    color: #fff;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side Styling */
.about-text {
    flex: 1;
    text-align: left;
}

.tagline {
    color: #00ffaa;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-text h2 {
    font-size: 3rem;
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    color: #00ffaa;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
}

.about-text p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Right Side Features (Highlighted Cards) */
.about-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-box {
    background: hsla(160, 93%, 54%, 0.03); /* Permanent subtle neon background */
    border: 1px solid rgba(7, 154, 105, 0.938); /* Permanent Neon Border */
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.1); /* Permanent Soft Glow */
}

.feature-box i {
    font-size: 1.8rem;
    color: #00ffaa;
    background: rgba(0, 255, 170, 0.15); /* Slightly brighter background for icon */
    width: 65px;
    height: 65px;
    min-width: 65px; /* Icon shape maintains on resize */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: 0.4s;
    filter: drop-shadow(0 0 5px rgba(0, 255, 170, 0.4)); /* Icon glow */
}

.box-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Syne', sans-serif;
}

.box-info p {
    font-size: 0.95rem;
    color: #bbb; /* Increased brightness for readability */
    margin: 0;
}

/* Hover Effects (Glow gets Intense) */
.feature-box:hover {
    background: rgba(0, 255, 170, 0.08);
    border-color: #00ffaa;
    transform: scale(1.02) translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 170, 0.25);
}

.feature-box:hover i {
    background: #00ffaa;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}
/* --- Desktop Nav Fix (Force stay in one line) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
}

/* --- Hamburger Icon Styling --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 2000;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #00ffaa;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* --- MOBILE RESPONSIVE LOGIC --- */
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: flex !important; /* Mobile par icon dikhega */
    }

    .desktop-cta {
        display: none !important; /* Mobile par main button hide */
    }

    nav {
        position: fixed !important;
        top: 0;
        right: -100%; /* Shuru mein bahar */
        width: 100% !important;
        height: 100vh !important;
        background: #0a0a0a !important;
        flex-direction: column !important;
        justify-content: center !important;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        z-index: 1500 !important;
    }

    nav.active {
        right: 0 !important; /* Menu andar aa jayega */
    }

    nav a {
        margin: 20px 0 !important;
        font-size: 1.6rem !important;
        color: #fff !important;
        text-shadow: 0 0 10px #00ffaa;
    }

    /* Hamburger to 'X' Animation */
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}