.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}


img {
  max-width: 100%;
  height: auto;
}


/* ---------- BASE RESET ---------- */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Universal container safety */
img, iframe {
  max-width: 100%;
  height: auto;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-box {
  min-height: 220px;
}



* { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --bg-1: #040406;
  --bg-2: #0b1226;
  --neon-blue: #13b0ff;
  --neon-purple: #7b5cff;
  --accent-red: #ff0043;
  --muted: #bfc7d6;
  --glass: rgba(255,255,255,0.04);
  --glass-2: rgba(255,255,255,0.02);
}

html, body{
  height:100%;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: linear-gradient(180deg,var(--bg-1), var(--bg-2));
  color: #fff;
}

/* ---------- HEADER ---------- */
.site-header{
  position: fixed;
  width:100%;
  top:0; left:0;
  z-index:80;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  height:48px; width:auto; display:block;
  filter: drop-shadow(0 6px 18px rgba(19,176,255,0.12));
}
.brand-text .brand-name{
  font-weight:800; font-size:18px; letter-spacing:0.6px;
}
.brand-text .brand-name span{ color: var(--neon-blue); }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{
  color: rgba(255,255,255,0.9);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:12px 14px;
  border-radius:8px;
  transition: .18s;
}
.nav a:hover{
  background: linear-gradient(90deg, rgba(19,176,255,0.08), rgba(123,92,255,0.06));
  color:var(--neon-blue);
}
.nav .gmb{
  background: linear-gradient(90deg,var(--neon-blue),var(--neon-purple));
  padding:8px 12px; border-radius:10px;
  color:#fff; font-weight:700;
  box-shadow:0 8px 30px rgba(19,176,255,0.12);
}

.nav.open{
  display:flex; flex-direction:column; gap:12px;
  background: var(--bg-2);
  padding:16px; border-radius:12px;
  position:absolute; right:20px; top:64px;
}

.nav-toggle{
  display:none; background:transparent;
  border:0; color:#fff; font-size:22px;
  cursor:pointer;
}

/* ---------- HERO ---------- */
.hero{
  max-width:1200px;
  margin:120px auto 30px;
  padding:40px 24px;
  display:grid;
  grid-template-columns: 1fr 480px;
  gap:36px;
  align-items:center;
  position:relative;
}

/* Left side */
.eyebrow{
  color:var(--neon-blue);
  font-weight:700;
  margin-bottom:14px;
  font-size:18px;
  opacity:0.95;
}
.hero-title{
  font-size:54px; line-height:1.02;
  font-weight:800; letter-spacing:-1px;
  margin-bottom:16px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.hero-title span{
  color: var(--neon-purple);
  -webkit-text-stroke: 0.4px rgba(255,255,255,0.02);
}
.hero-sub{
  color:var(--muted);
  font-size:16px;
  max-width:680px;
  margin-bottom:22px;
}

/* Search Bar */
.hero-search{
  display:flex; gap:8px; margin-bottom:18px;
}
.hero-search input{
  padding:14px 18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color:#fff; width:100%;
  outline:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.btn{
  display:inline-block;
  text-decoration:none;
  color:#fff; font-weight:700;
  border-radius:10px;
  padding:12px 18px;
  cursor:pointer; border:0;
}
.btn.primary{
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  box-shadow: 0 10px 40px rgba(19,176,255,0.10), 0 6px 14px rgba(123,92,255,0.06);
}
.btn.outline{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--muted);
  padding:10px 16px;
}
.btn.ghost{
  background:transparent;
  border:1px dashed rgba(255,255,255,0.04);
  color:var(--neon-blue);
}

/* CTA */
.hero-ctas{ display:flex; gap:12px; margin-bottom:20px; }
.stats{ display:flex; gap:14px; margin-top:12px; flex-wrap:wrap; }
.stat{
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  padding:10px 14px;
  border-radius:10px;
  border-left:4px solid rgba(19,176,255,0.14);
  min-width:120px;
}
.stat-num{ font-weight:800; font-size:18px; color:#fff; }
.stat-label{ font-size:12px; color:var(--muted); }

/* Right side Art */
.hero-right{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  min-height:420px;
}
.hero-art{
  width:420px; max-width:92%;
  border-radius:18px; overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:18px; display:grid; place-items:center;
  box-shadow: 0 30px 80px rgba(11,17,40,0.6);
  border:1px solid rgba(255,255,255,0.03);
}
.hero-art img{
  width:100%; height:auto;
  transform: translateY(-6px);
  transition: transform .9s cubic-bezier(.2,.9,.2,1);
}

/* Floating Glass Card */
.glass-card{
  position:absolute;
  right:24px; bottom:-18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding:16px 18px;
  border-radius:12px;
  width:220px;
  box-shadow:0 18px 50px rgba(11,17,40,0.6);
  border:1px solid rgba(255,255,255,0.04);
  transform: translateY(20px);
  transition: transform .4s ease;
}
.glass-card .card-title{ font-weight:800; margin-bottom:6px; }
.glass-card .card-text{ font-size:13px; color:var(--muted); margin-bottom:10px; }

/* Neon Shapes */
.neon-shapes{ position:absolute; inset:-40px -40px auto auto; pointer-events:none; }
.shape{
  position:absolute; width:260px; height:260px;
  border-radius:50%; mix-blend-mode:screen;
  filter: blur(26px); opacity:0.42;
  transform: rotate(12deg);
  animation: float 6s ease-in-out infinite;
}
.s1{ right:-80px; top:-40px; background: radial-gradient(circle at 30% 30%, var(--neon-blue), transparent 40%); }
.s2{ right:-180px; bottom:60px; width:320px; height:320px; background: radial-gradient(circle at 70% 40%, var(--neon-purple), transparent 40%); animation-delay:1.2s; }
.s3{ right:-40px; top:100px; width:180px; height:180px; background: radial-gradient(circle at 40% 60%, var(--accent-red), transparent 40%); animation-delay:2.1s; }

@keyframes float {
  0%{ transform: translateY(0) rotate(0); }
  50%{ transform: translateY(-18px) rotate(6deg); }
  100%{ transform: translateY(0) rotate(0); }
}

/* ---------- UNIVERSAL SECTION ---------- */
.section{ padding:64px 22px; }
.container{ max-width:1100px; margin:0 auto; }

/* ABOUT + SERVICES */
.about-section,
.services-section { padding-left: 80px !important; padding-right: 80px !important; }

/* ABOUT */
.about-section{
  width:100%;
  background:#000;
  padding-top:80px; padding-bottom:80px;
}
.about-container{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
}
.about-container h2{
  font-size:40px;
  font-weight:800;
  color:#d6b6ff;
  margin-bottom:20px;
}
.about-container p{
  color:#e6e6e6;
  font-size:18px;
  line-height:1.7;
  margin-bottom:15px;
}

/* SERVICES */
.services-section {
    padding: 80px 7%;
    background: linear-gradient(180deg, #060b1a, #0d1228, #101830);
    color: white;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #c997ff;
    text-shadow: 0 0 12px #b372f8;
    margin-bottom: 40px;
    text-align: center;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.service-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(90, 0, 200, 0.3);
}
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px rgba(162, 0, 255, 0.9);
    border: 1px solid rgba(200, 0, 255, 0.6);
}
.service-icon {
    font-size: 38px;
    color: #c997ff;
    margin-bottom: 12px;
    text-shadow: 0 0 10px #b372f8;
}
.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e5c6ff;
}
.service-box p {
    color: #d7d7d7;
    font-size: 15px;
    line-height: 1.4;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:28px;
  max-width:1100px;
  margin:0 auto;
}
.contact-form-wrap{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:22px; border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
}
.contact-form-wrap h2{ margin-bottom:6px; color:var(--neon-blue); }
.contact-form-wrap p{ color:var(--muted); margin-bottom:12px; }
.contact-form-wrap input,
.contact-form-wrap textarea{
  width:100%; padding:12px 14px; margin-bottom:10px;
  border-radius:10px; border:1px solid rgba(255,255,255,0.04);
  background:transparent; color:#fff; outline:none;
}
.row{ display:flex; gap:10px; }
.row input{ flex:1; }
.info-card{
  background: linear-gradient(180deg, rgba(29, 21, 21, 0.015), rgba(255,255,255,0.01));
  padding:18px; border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
  color:var(--muted);
}
.info-card a{ color:var(--neon-blue); text-decoration:none; font-weight:700; }

/* FOOTER */
.footer {
    background: #020a1f;
    padding: 50px 20px;
    color: white;
    margin-top: 60px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.footer-box {
    background: rgba(0, 0, 0, 0.35);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(100, 100, 255, 0.3);
    box-shadow: 0 0 12px rgba(0, 162, 255, 0.4);
    transition: 0.3s;
}
.footer-box h3 {
    font-size: 22px;
    color: #58a6ff;
    margin-bottom: 15px;
    text-shadow: 0 0 12px #58a6ff;
}
.footer-box p {
    line-height: 1.6;
    font-size: 15px;
}
.footer-box:hover {
    background: rgba(0, 45, 115, 0.55);
    box-shadow: 0 0 18px #1e90ff;
    transform: translateY(-4px);
}
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.7;
}

/* RESPONSIVE */
.hero-art img:hover{ transform: translateY(-12px) scale(1.02); }
.glass-card:hover{ transform: translateY(-6px); }

@media (max-width:1024px){
  .hero{ grid-template-columns:1fr 380px; gap:22px; margin-top:110px; }
  .hero-title{ font-size:44px; }
}
@media (max-width:840px){
  .nav{ display:none; }
  .nav-toggle{ display:block; font-size:26px; }
  .hero{ grid-template-columns:1fr; padding:36px 18px; margin-top:90px; }
  .hero-right{ order:-1; margin-bottom:18px; }
  .glass-card{ position:relative; right:auto; bottom:auto; transform:none; width:100%; margin-top:16px; }
  .contact-grid{ grid-template-columns:1fr; }
  .row{ flex-direction:column; }
}
@media (max-width:420px){
  .hero-title{ font-size:32px; }
  .brand-text .brand-name{ font-size:16px; }
  .brand-sub{ display:none; }
}



/* FOOTER CONTACT + MAP */
.footer-contact {
    background: #050b18;
    padding: 40px 0 0 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 80px;
    flex-wrap: wrap;
}
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Form + Map Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
    background: transparent;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Form + Map Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrap,
.map-wrapper {
    background: rgba(0,0,0,0.5);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

/* Form Inputs */
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    color: #fff;
    outline: none;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-form-wrap textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-wrap .btn {
    align-self: flex-start;
}

/* Map */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    border-radius: 12px;
    filter: brightness(0.9);
}

/* How We Work + Contact Details */
.contact-section {
  max-width: 1200px;
  margin: auto;
  padding: clamp(40px, 6vw, 80px) 20px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 60px);
}

/* FORM + MAP */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

/* FORM */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MAP FIX */
.map-wrapper iframe {
  min-height: 420px;
  height: 100%;
}

.info-section {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.how-we-work,
.contact-details {
    flex: 1;
    min-width: 300px;
    background: rgba(0,0,0,0.5);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.how-we-work h2,
.contact-details h2 {
    color: var(--neon-blue);
    margin-bottom: 12px;
}

.how-we-work p,
.contact-details p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}


/* Responsive */
@media (max-width: 840px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .info-section {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 840px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .info-section {
        flex-direction: column;
    }
}
@media (max-width: 840px) {
  .nav {
    position: absolute;
    right: 16px;
    top: 70px;
    width: 90%;
    max-width: 320px;
  }

  .nav a {
    width: 100%;
    text-align: center;
  }
}
/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 35px;
  left: auto;
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
}


.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(37,211,102,0.6);
}

/* Mobile safe tap area */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 28px;
    right: 16px;
    bottom: 16px;
  }
}
/* ---------------- MOBILE FRIENDLY FIX ---------------- */

/* Contact Section Grid */
@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .contact-form-wrap,
  .map-wrapper,
  .how-we-work {
    padding: 18px;
    border-radius: 14px;
  }

  /* Map mobile height */
  .map-wrapper iframe {
    min-height: 260px;
  }

  /* How we work list */
  .how-we-work p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Contact Details strip */
  .contact-details p {
    font-size: 14px;
  }

  /* WhatsApp floating button */
  .whatsapp-float {
    right: 12px;   /* right corner */
    bottom: 80px;  /* footer se upar */
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  /* Input fields touch-friendly */
  .contact-form-wrap input,
  .contact-form-wrap textarea {
    font-size: 15px;
    padding: 12px 14px;
  }

  .contact-form-wrap button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}
/* ================= MOBILE FRIENDLY FIX (NO DESIGN CHANGE) ================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Header / Menu */
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    width: 90%;
    background: #0b1226;
    flex-direction: column;
    padding: 16px;
    border-radius: 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  /* Hero */
  .hero {
    margin-top: 90px;
    padding: 28px 16px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-right {
    order: -1;
  }

  /* Services */
  .services-container {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile */
@media (max-width: 420px) {

  .hero-title {
    font-size: 28px;
  }

  .brand-sub {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 80px;
  }
}
/* ================= THANK YOU POPUP (NO JS) ================= */

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.thankyou-box {
  background: linear-gradient(180deg, #0b1226, #040406);
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.thankyou-box h3 {
  color: #13b0ff;
  margin-bottom: 10px;
}

.thankyou-box p {
  color: #bfc7d6;
  font-size: 14px;
  margin-bottom: 20px;
}

.popup-btn {
  display: inline-block;
  background: linear-gradient(90deg, #13b0ff, #7b5cff);
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Show popup when checkbox checked */
#popup-toggle:checked ~ .thankyou-popup {
  opacity: 1;
  pointer-events: auto;
}
<form>
  <!-- Hidden checkbox -->
  <input type="checkbox" id="popup-toggle" hidden>

  <div class="contact-form-wrap">
    <h2>Send a Query</h2>
    <p>Fill in your details and we will get back to you.</p>

    <input type="text" placeholder="Full Name" required>
    <input type="email" placeholder="Email" required>
    <textarea placeholder="Your Query" required></textarea>

    <!-- Submit button -->
    <button type="submit" class="btn primary">
      Send Message
    </button>
  </div>
</form>

<!-- Popup -->
<div class="thankyou-popup">
  <div class="thankyou-box">
    <h3>Thank You 🙌</h3>
    <p>Your message has been sent successfully.<br>
       We will contact you soon.</p>

    <label for="popup-toggle" class="popup-btn">OK</label>
  </div>
</div>
/* Thank You Popup - Hidden by default */
#thankyou-popup {
  display: none; /* Hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  z-index: 9999;
}

#thankyou-popup .thankyou-box {
  background: #0b1226;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  color: #fff;
}
/* Mobile Menu fix (Safe Addition) */
@media (max-width: 840px) {
  .nav.open {
    display: flex !important;
    flex-direction: column;
    z-index: 9999;
    background: #0b1226; /* Aapki theme ka dark color */
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
}

/* Thank You Popup Layering */
.thankyou-popup {
  z-index: 10000; /* Isse popup hamesha sabse upar rahega */
}
/* ================= RESPONSIVE SYSTEM ================= */

/* 1. TABLET VIEW (Max 1024px) - Laptop se chhota, Tablet se bada */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr; /* Image niche, text upar */
        text-align: center;
        gap: 40px;
    }
    .hero-right { order: -1; } /* Image ko sabse upar dikhane ke liye */
    .hero-art { width: 350px; margin: 0 auto; }
    .hero-search { max-width: 600px; margin: 0 auto 20px; }
    
    .about-section, .services-section, .contact-section {
        padding: 60px 40px !important; /* Side margin kam ki gayi */
    }
}

/* 2. MOBILE VIEW (Max 768px) - Sabhi Smartphones ke liye */
@media (max-width: 768px) {
    /* Header Fix */
    .nav {
        display: none; /* Default mein menu chhupa rahega */
        position: absolute;
        top: 70px;
        right: 20px;
        width: 250px;
        background: #0b1226;
        flex-direction: column;
        padding: 20px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .nav.open { display: flex; } /* JavaScript se khulega */
    .nav-toggle { display: block; } /* ☰ Button dikhega */

    /* Typography */
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }

    /* Layout Grids (Sab 1 column mein ho jayenge) */
    .services-container, .contact-grid, .info-section {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Map Fix */
    .map-wrapper iframe {
        min-height: 250px;
    }

    /* Form Inputs (Ungli se touch karne ke liye bada size) */
    input, textarea, .btn {
        font-size: 16px !important;
        padding: 14px !important;
    }
}

/* 3. SMALL MOBILE (Max 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .brand-name { font-size: 14px; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
}
/* ===== MOBILE FRIENDLY ONLY (NO DESIGN CHANGE) ===== */

/* Horizontal scroll fix */
html, body {
  overflow-x: hidden;
}

/* Tablet & below */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    order: -1;
  }
}

/* Mobile view */
@media (max-width: 768px) {

  /* Header menu */
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
  }
  .nav-toggle {
    display: block;
  }

  /* Hero text size */
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  /* Services grid */
  .services-container {
    grid-template-columns: 1fr;
  }

  /* Contact section */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

  /* Map height fix */
  .map-wrapper iframe {
    min-height: 260px;
  }

  /* Inputs touch-friendly */
  input,
  textarea,
  button,
  .btn {
    font-size: 16px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-title {
    font-size: 28px;
  }
}
/* ===== FINAL MOBILE HERO FIX (NO DESIGN CHANGE) ===== */
@media (max-width: 768px) {

  /* Hero container full center */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 24px 16px !important;
    margin-top: 100px !important;
    text-align: center;
  }

  /* Image section */
  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .hero-art {
    width: 100% !important;
    max-width: 300px;
    padding: 16px;
  }

  /* Glass card mobile me niche aa jaye */
  .glass-card {
    position: static !important;
    width: 100%;
    margin-top: 16px;
    transform: none !important;
  }

  /* Hero text size */
  .hero-title {
    font-size: 30px !important;
    line-height: 1.25;
  }

  /* Service cards full width */
  .services-container {
    grid-template-columns: 1fr !important;
  }
}

/* Extra small mobile */
@media (max-width: 420px) {
  .hero-art {
    max-width: 260px;
  }

  .hero-title {
    font-size: 26px !important;
  }
}




