:root {
  --bg-color: #0b1121;
  --text-color: #e2e8f0;
  --primary: #0ea5e9;
  --secondary: #3b82f6;
  --accent: #f59e0b;
  --glass-bg: rgba(30, 41, 59, 0.4);
  --glass-border: rgba(148, 163, 184, 0.1);
  --card-hover: rgba(30, 41, 59, 0.8);
  --input-bg: rgba(15, 23, 42, 0.6);
  --dropdown-bg: #1e293b;
  --border-glow: rgba(14, 165, 233, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rajdhani", sans-serif;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  font-size: 18px;
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  scroll-margin-top: 100px;
}

section,
header,
footer {
  max-width: 1800px;
}

/* --- BACKGROUND FX --- */
.bg-shape-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.shape-1 {
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  opacity: 0.3;
}
.shape-2 {
  bottom: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.2;
}
.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: var(--primary);
  opacity: 0.05;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

/* --- HEADER & NAVBAR --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  backdrop-filter: blur(12px);
  background: rgba(11, 17, 33, 0.6);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  /* border: 1px solid white; */
  width: 100%;
}

.logo {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span {
  color: var(--primary);
  font-weight: 800;
}
/* ------ search bar ------- */
#search-area {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

#search-input {
  width: 0;
  opacity: 0;
  visibility: hidden;
  background: #061224;
  border: 1px solid #00b4d8; /* Cyan */
  border-radius: 4px;
  color: white;
  padding: 15px 0;
  outline: none;
  transition: all 0.4s ease;
  position: absolute;
  right: 45px;
}

#search-area.active #search-input {
  width: 80%; /* Thoda wide accha dikhega */
  opacity: 1;
  visibility: visible;
  padding: 10px 20px;

  /* Center positioning logic */
  position: fixed;
  top: 80px; /* Header ke thoda niche */
  left: 50%;
  transform: translateX(-50%); /* Ye exact center me layega */

  /* Style improvements */
  background: rgba(10, 25, 47, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary);
  z-index: 1001;
}

#search-area.active #suggestions-box {
  display: block;

  position: fixed;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);

  width: 80%; /* Jitna bada search box, utna bada ye */
  z-index: 1002; /* Sabse upar dikhna chahiye */
  background: #0a192f;
  border: 1px solid var(--primary);
  border-top: none; /* Input se chipka hua dikhega */
}

#search-btn {
  background: transparent;
  border: none;
  color: #a0aab5;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

#search-btn:hover,
#search-area.active #search-btn {
  color: #00b4d8;
}

/* --- SUGGESTIONS DROPDOWN --- */
#suggestions-box {
  position: absolute;
  top: 45px;
  right: 45px;
  width: 280px;
  background: #0a192f;
  border: 1px solid #1a2a40;
  border-top: none;
  display: none; /* Hidden by default */
  max-height: 200px;
  overflow-y: auto;
  z-index: 99;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.suggestion-item {
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #1a2a40;
  color: #ccd6f6;
}

/* Highlight for hover and arrow keys */
.suggestion-item:hover,
.suggestion-item.selected {
  background: #112240;
  color: #00b4d8;
}

/* Scrollbar for suggestions */
#suggestions-box::-webkit-scrollbar {
  width: 5px;
}
#suggestions-box::-webkit-scrollbar-thumb {
  background: #00b4d8;
}

/* Navbar Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #c2c6cb;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
  position: relative;
}
.nav-links a:hover {
  color: var(--primary);
}

/* --- DROPDOWN MENU --- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--dropdown-bg);
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 10px 0;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #cbd5e1;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  text-transform: capitalize;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.274);
}

.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Burger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.cta-btn {
  padding: 10px 25px;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  color: #b6bbc7;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.cta-btn:hover {
  background: white;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.section-header {
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: white;
}
.extra {
  text-align: center;
}
.section-header p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

/* --- 1. HERO SECTION (Tech Style) --- */
.hero-section {
  margin-top: 100px;
  padding: 100px 0 40px 0; /* Header ke liye top padding */
  display: flex; /* Flexbox use kiya alignment ke liye */
  align-items: center;
  justify-content: space-evenly;
  gap: 60px;
  min-height: 90vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  flex: 1; /* Left side space lega */
  max-width: 600px;
}

.hero-content h4 {
  color: var(--accent);
  letter-spacing: 3px;
  font-family: "Share Tech Mono", monospace;
  margin-bottom: 10px;
}
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.hero-content p {
  font-size: 1.2rem;
  color: #94a3b8;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}

/* --- 2. ID CARD (Corrected) --- */
.business-id-card {
  flex: 0 0 500px; /* Width fix ki desktop ke liye */
  width: 500px;
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.6),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid var(--border-glow);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.15);
}

.business-id-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary),
    transparent,
    var(--accent)
  );
}

.id-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}
.id-title {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  margin-left: 15px;
}
.verified-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.id-details {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Columns Always */
  gap: 20px 15px;
}

.id-row label {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.id-row span {
  font-family: "Share Tech Mono", monospace;
  color: white;
  font-size: 1rem;
  word-break: break-word;
}
/* --- 3. MISSION & VISION (Glass Cards) --- */
.mv-section {
  padding: 80px 0;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.glass-card {
  background:rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  min-width: 300px;
  border-radius: 12px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
  transform: translateY(-5px);
}
.icon-box {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.glass-card h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 15px;
}
.glass-card p {
  color: #cbd5e1;
}

/* --- 4. FAQ (Tech Accordion) --- */
.faq-wrapper {
  max-width: 1200px;
  margin: 80px auto;
}
.faq-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: white;
}

.faq-item {
  background: rgba(15, 23, 42, 0.5);
  margin-bottom: 15px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-left: 3px solid transparent;
  transition: 0.3s;
}
.faq-item.active {
  border-left-color: var(--primary);
  background: rgba(14, 165, 233, 0.05);
}

.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 600;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  color: #94a3b8;
  padding: 0 20px;
  font-size: 0.95rem;
}
.faq-item.active .faq-body {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Credit section */

.credits-box {
  padding: 40px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
  border: 1px dashed var(--glass-border);
  border-radius: 8px;
  margin-top: 50px;
}
.credits-box h4 {
  color: var(--accent);
  font-family: "Share Tech Mono", monospace;
  margin-bottom: 15px;
}
.credits-box p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 15px;
}
.credits-list {
  list-style: none;
  font-size: 0.85rem;
  color: #94a3b8;
}
.credits-list li {
  margin-bottom: 8px;
}

/* FOOTER PLACEHOLDER STYLE */
/* --- CONTACT & MAP --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form {
  background: var(--glass-bg);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input::placeholder,
textarea::placeholder {
  color: white;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  color: white;
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: #0b1121;
  border: none;
  font-weight: 300;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.3s;
}
.submit-btn:hover {
  background: white;
  transform: translateY(-2px);
}

.contact-info-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.contact-details h5 {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-details p {
  font-size: 1.1rem;
  color: white;
  font-weight: 300;
}

/*///////// select css ///////////*/

/* hide original select */
#mold_type {
  display: none;
}

/* custom wrapper */
.mold_custom_select {
  position: relative;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 16px;
  color: #fff;
  cursor: pointer;
}

.mold_custom_select:hover {
  border-color: #00baff;
}

.mold_selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mold_arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
}

.mold_options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-height: 220px;
  overflow-y: auto;
  z-index: 99;
}

.mold_options::-webkit-scrollbar {
  width: 5px;
}

.mold_options::-webkit-scrollbar-thumb {
  background: #00baff;
}

.mold_option {
  padding: 12px 16px;
  color: #fff;
}

.mold_option:hover {
  background: rgba(0, 186, 255, 0.15);
  color: #00baff;
}

/*////////////// select css end ///////////////////*/

/* --- MAPS CONTAINER (Wrapper) --- */
.maps-container {
  display: flex; /* Desktop pe side-by-side layega */
  gap: 20px; /* Dono maps ke beech gap */
  width: 100%;
  margin-top: 40px;
}

/* --- MAP BOX STYLING --- */
.map-box {
  flex: 1; /* Dono barabar jagah lenge (50%-50%) */
  border: 1px solid var(--primary);
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;

  /* Tera wala Filter Effect */
  filter: grayscale(0.5) brightness(0.8) contrast(1) sepia(0.5)
    hue-rotate(170deg) saturate(2);
  transition: 0.5s;
}

/* Map Hover Effect (Optional - thoda clear dikhega hover pe) */
.map-box:hover {
  filter: grayscale(0) brightness(1) contrast(1) sepia(0) hue-rotate(0deg)
    saturate(1);
  border-color: #fff;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
  /* aspect-ratio hata diya taaki flexbox height control kare */
  object-fit: cover;
}

/* --- FOOTER --- */
/* --- MODERN FOOTER STYLES --- */
.floating-footer-wrapper {
  background-color: transparent; /* Main body bg dikhega */
  padding: 60px 20px;
  width: 100%;
  max-width: 1800px;
  display: flex;
  justify-content: center;
}

/* The Card Itself */
.footer-card {
  width: 100%;
  max-width: 1600px; /* Card ki chaudai limit kar di */
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.6),
    rgba(15, 23, 42, 0.6)
  );
  backdrop-filter: blur(5px); /* Glass Effect */
  border: 1px solid rgba(14, 165, 233, 0.2); /* Blue Border */
  border-radius: 20px; /* Gol Kinare */
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); /* Utha hua effect */
  color: #94a3b8;
}

/* Top Section: Brand & Social */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.brand-box .logo-text {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-box .logo-text svg {
  color: var(--primary);
}
.brand-box p {
  font-size: 0.9rem;
  margin-top: 5px;
  opacity: 0.7;
}

.social-box a {
  color: #cbd5e1;
  margin-left: 15px;
  transition: 0.3s;
}
.social-box a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Divider Line */
.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

/* Middle Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
  gap: 30px;
  margin-bottom: 40px;
}

.f-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.f-col ul {
  list-style: none;
  padding: 0;
}
.f-col li {
  margin-bottom: 12px;
}
.f-col a {
  color: #c2cad4;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.2rem;
}
.f-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Contact List specific */
.contact-list li {
  color: #cbd5e1;
  font-size: 1.2rem;
}

/* CTA Button */
.footer-cta {
  display: inline-block;
  background: var(--primary);
  color: #0b1121;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  margin-top: 10px;
}
.footer-cta:hover {
  background: white;
  box-shadow: 0 0 15px var(--primary);
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #d2d8e0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
}
.legal a {
  color: #d2d8e1;
  margin-left: 20px;
  text-decoration: none;
}
.legal a:hover {
  color: var(--primary);
}

@media (min-width: 1361px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Right side ka scroll/gap band kar dega */
    position: relative;
  }
  .dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
  }
}

@media (min-width: 1060px) and (max-width: 1360px) {
  .logo {
    font-size: 1.5rem;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .capabilities-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 1260px) {
  header {
    padding: 25px 5%;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0b1121;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  /* --- FIXED MOBILE DROPDOWN --- */
  .dropdown-content {
    display: none; /* Default Hidden */
    position: static;
    background: rgba(255, 255, 255, 0.05); /* Slightly visible bg */
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: auto;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 4px;
  }

  /* Class toggled via JS */
  .dropdown-content.show {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .dropdown-content a {
    color: #94a3b8;
    padding: 12px;
    border: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown > a {
    font-size: 1.5rem;
    color: white;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .process-container {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1160px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
    height: auto;
    padding-bottom: 50px;
  }

  .hero-visual {
    display: flex;
    max-width: 100%;
    height: 250px;
    margin-top: 30px;
    opacity: 0.6;
  }
  .hero-visual svg {
    max-width: 600px;
    height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    border: none;
    padding: 0;
    margin: 0 auto 30px auto;
  }
  .hero-btns {
    justify-content: center;
  }
}

/* --- MOBILE & TABLET RESPONSIVE (1360px and below) --- */
@media (max-width: 1060px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Right side ka scroll/gap band kar dega */
    position: relative;
  }

  .stats {
    flex-direction: column;
    gap: 40px;
  }
  .process-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process-visual {
    min-height: 200px;
    margin-top: 20px;
  }
  .section-padding {
    padding: 60px 5%;
  }
  .desktop-only {
    display: none;
  }

  /* Grid Adjustments */
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-list-header {
    display: none;
  }
  .tech-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 20px 10px;
  }
  .row-id {
    display: none;
  }
  .row-title {
    font-size: 1.2rem;
    grid-column: 1 / -1;
  }
  .row-desc {
    font-size: 0.9rem;
    grid-column: 1 / 2;
  }
  .row-icon {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  /* Split Section Mobile */
  .split-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .split-card {
    width: 100%;
    min-height: 400px;
    padding: 40px 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .split-card:hover {
    flex: none;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .mv-grid{
        display: flex;
        flex-direction: column;
    }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  } /* Tablet: 2 Col */
}

@media (max-width: 768px) {
  .hero-visual {
    width: auto;
    height: auto;
  }
  .hero-visual svg {
    width: 400px;
    height: 600px;
  }
  #search-area.active #search-input {
    width: 90%; /* Mobile pe full width */
    top: 70px;
  }
  #search-area.active #suggestions-box {
    width: 90%; /* Mobile pe full width */
    top: 125px; /* Thoda adjust mobile height ke hisab se */
  }
  .process-visual {
    background-size: contain;
    background-position: center;
    min-height: 400px;
  }
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .card-image {
    height: 200px;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .tech-list-header {
    display: none;
  }

  .tech-row {
    /* Mobile pe 2 columns: Title+Desc | Icon */
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 20px 10px;
  }

  .row-id {
    display: none;
  }

  .row-title {
    grid-column: 1 / 2;
    font-size: 1rem;
  }
  .row-desc {
    grid-column: 1 / 2;
    font-size: 0.7rem;
  }

  /* Icons ko right side fix karo mobile pe */
  .row-icon,
  .split-icon {
    grid-column: 2 / 3;
    grid-row: 1 / span 2; /* Center vertically */
    align-self: center;
  }

  .row-icon svg,
  .split-icon svg {
    height: 24px;
    width: 24px;
  }

  .maps-container {
    flex-direction: column; /* Mobile pe upar-niche */
  }

  .map-box {
    width: 100%; /* Mobile pe full width */
    margin-top: 0; /* Container margin sambhal lega */
  }

  .footer-main {
    grid-template-columns: 1fr 1fr; /* Mobile: 2 Columns */
    gap: 40px 20px;
  }
  .footer-logo,
  .brand-desc {
    max-width: 100%;
  }
  .cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .footer-card {
    padding: 30px 20px;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  } /* Mobile: 1 Col */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .social-box a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  } /* Small Mobile: 1 Column */
  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .legal-links a {
    margin: 0 10px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-section {
    display: flex;
    flex-direction: column; /* Upar Text, Niche Card */
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }

  .hero-content p {
    border-left: none;
    margin-bottom: 20px;
  }

  /* Card Mobile Pe */
  .business-id-card {
    width: 100%; /* Mobile pe full width */
    max-width: 500px; /* Lekin jyada bada nahi */
    flex: none;
    padding: 20px; /* Padding thodi kam ki */
  }

  /* Mobile pe bhi Grid 2 Column hi rahega! */
  .id-details {
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
  }

  /* Font Size Adjustment for Mobile */
  .id-row span {
    font-size: 0.9rem;
  } /* Text thoda chota */
  .id-row label {
    font-size: 0.7rem;
  }
}
