:root {
  /*
   * Site column — sab public pages (header, sections, .dsw-container, footer grid) isi max width par.
   * Max 1300px; chhoti viewport par horizontal scroll avoid karne ke liye 32px gutters ke saath shrink.
   * Alag pages par alag px max-width mat lagao — warna "container" inconsistent lagta hai.
   */
  --container: min(1300px, calc(100vw - 32px));
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --ink: #172126;
  --muted: #5f6b71;
  --line: rgba(23, 33, 38, 0.1);
  --brand: #bb4d00;
  --brand-deep: #7f2d00;
  --accent: #0f5e5b;
  --shadow: 0 24px 60px rgba(31, 30, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(187, 77, 0, 0.18), transparent 26%),
    radial-gradient(circle at 85% 14%, rgba(15, 94, 91, 0.15), transparent 22%),
    linear-gradient(180deg, #f9f5ed 0%, #f3ede2 54%, #efe7d9 100%);
  padding-top: 92px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: 100%;
}

.topbar,
.hero,
.section,
.trust-strip,
.footer,
.page-hero {
  width: var(--container);
  margin: 0 auto;
}

/*
 * Header (.topbar) width = var(--container) + inner padding 24px.
 * Yehi sections bhi centered container use karti hain — isliye yahan sirf 24px gutter rakho.
 * Pehle wala (100vw - container)/2 + 24px rule yahan double-offset banata tha (galat alignment).
 */
.hero,
.section,
.trust-strip {
  padding-left: 24px;
  padding-right: 24px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: var(--container);
  padding: 16px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Uploaded site logo (Admin → Settings) replaces .brand-mark when present */
.brand-logo-img {
  width: 100px;
  object-fit: contain;
 
  flex-shrink: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), #e17a2e);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.02rem;
}

.brand-copy small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Shown when Admin → Menus has no active rows (no hard-coded fallback links). */
.nav-empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.45;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 24px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active,
.nav-item.is-active > a {
  color: var(--ink);
}

.submenu-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
}

.submenu {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  min-width: 240px;
  margin-top: 0;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: none;
  gap: 4px;
  z-index: 1005;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(187, 77, 0, 0.08);
}

.has-submenu:hover .submenu,
.has-submenu.is-open .submenu {
  display: grid;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: #18252b;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding: 48px 0 52px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.page-hero {
  padding: 54px 0 16px;
  width: 100%;
}

.inner-banner {
  position: relative;
  padding: 40px 80px;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 22, 0.82) 0%, rgba(11, 18, 22, 0.58) 46%, rgba(11, 18, 22, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.24));
}

.inner-banner > * {
  position: relative;
  z-index: 1;
}

.banner-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.92rem;
}

.about-banner {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80");
}

.services-banner {
  background-image: url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1600&q=80");
}

.contact-banner {
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80");
}

/* Contact page: one-line feedback after successful form POST (PRG redirect). */
.contact-flash {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-flash--success {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.contact-flash--error {
  color: #991b1b;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

/* ----- Home / CMS: `our-esteemed-clients` — ≤3 logos centered fixed; 4+ infinite scroll ----- */
.jbm-clients-marquee-section {
  padding-bottom: 8px;
}

.jbm-clients-marquee-heading {
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}

.jbm-clients-marquee-heading .eyebrow {
  color: var(--jbm-clients-accent, var(--brand-deep));
}

.jbm-clients-marquee-heading p {
  margin-left: auto;
  margin-right: auto;
}

.jbm-clients-marquee {
  overflow: hidden;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  padding: 18px 0 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 232, 0.55));
  box-shadow: var(--shadow);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* 1–3 clients: no edge fade, no clip — logos stay fixed in the middle */
.jbm-clients-marquee[data-jbm-clients-mode="static"] {
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
}

.jbm-clients-marquee__track {
  display: flex;
  width: max-content;
  animation: jbm-clients-marquee-scroll var(--jbm-clients-marquee-sec, 40s) linear infinite;
}

/* Fixed centered row (three or fewer logos) */
.jbm-clients-marquee__track--static {
  animation: none;
  transform: none;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 12px;
}

.jbm-clients-marquee__track--static .jbm-clients-marquee__group {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 0 12px;
  gap: clamp(24px, 6vw, 48px);
}

.jbm-clients-marquee[data-jbm-clients-mode="scroll"]:hover .jbm-clients-marquee__track {
  animation-play-state: paused;
}

@keyframes jbm-clients-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.jbm-clients-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: 0 clamp(20px, 3vw, 40px);
}

.jbm-clients-marquee__cell {
  flex: 0 0 auto;
}

.jbm-clients-marquee__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 14px;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jbm-clients-marquee__link:not(.jbm-clients-marquee__link--static):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 18, 22, 0.12);
}

.jbm-clients-marquee-section--few .jbm-clients-marquee__img {
  max-height: 64px;
  max-width: min(220px, 32vw);
}

.jbm-clients-marquee__img {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: min(200px, 28vw);
  object-fit: contain;
  filter: grayscale(0.08);
  opacity: 0.92;
}

.jbm-clients-marquee__link:hover .jbm-clients-marquee__img {
  opacity: 1;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .jbm-clients-marquee[data-jbm-clients-mode="scroll"] .jbm-clients-marquee__track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 16px;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
  }

  .jbm-clients-marquee[data-jbm-clients-mode="scroll"] .jbm-clients-marquee__group + .jbm-clients-marquee__group {
    display: none;
  }

  .jbm-clients-marquee[data-jbm-clients-mode="scroll"] {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-copy h2,
.slide h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.page-hero p:not(.eyebrow),
.hero-text,
.info-card p,
.service-card p,
.strength-card p,
.contact-card p,
.section-heading p,
.footer p,
.slide p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.inner-banner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch;
}

.inner-banner .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.hero-text {
  max-width: 52ch;
  margin: 22px 0 0;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), #e07a2f);
  color: #fff;
  box-shadow: 0 18px 35px rgba(187, 77, 0, 0.26);
}

.button.secondary {
  border: 1px solid rgba(23, 33, 38, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.hero-stats,
.teaser-grid,
.about-grid,
.service-grid,
.strength-grid,
.contact-page-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-slider-section {
  width: 100%;
  margin: 0 0 0;
}

.home-slider-card {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  /* Prev / next buttons are position:absolute inside this block */
  position: relative;
}

.home-stats {
  width: var(--container);
  margin: 20px auto 0;
}

.hero-stats article,
.info-card,
.service-card,
.strength-card,
.contact-card,
.slider-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-stats article,
.info-card,
.service-card,
.strength-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.stat-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(187, 77, 0, 0.14), rgba(15, 94, 91, 0.16));
  font-size: 1.45rem;
}

/* Optional big figure from Dynamic Module fields number / value / count */
.hero-stats .stat-number {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--text);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-slider {
  align-items: stretch;
}

.slider-card {
  border-radius: 0;
  overflow: hidden;
  color: #fff;
}

.slides {
  position: relative;
  min-height: 500px;
}

.slide {
  position: absolute;
  inset: 0;
  padding-top: 44px;
  padding-bottom: 44px;
  /* Full-bleed slider: text ko subbanner / header ke same column (container + 24px inset) pe lao. */
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 22, 0.78) 0%, rgba(11, 18, 22, 0.58) 38%, rgba(11, 18, 22, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.3));
}

.slide > * {
  position: relative;
  z-index: 1;
}

/* Hero video (Dynamic Module field "video") — under gradient scrim, text on top */
.slide.slide--has-video > .slide-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.slide.slide--has-video::before {
  z-index: 1;
}
.slide.slide--has-video > *:not(.slide-bg-video) {
  z-index: 2;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.slide-one {
  background-image: url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1600&q=80");
}

.slide-two {
  background-image: url("https://images.unsplash.com/photo-1501706362039-c6e80948f11f?auto=format&fit=crop&w=1600&q=80");
}

.slide-three {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80");
}

.slide-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  font-weight: 700;
}

.slide h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  margin-bottom: 16px;
}

.slide p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
}

.slide-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Home hero: previous / next (outside .slides so they stay clickable above stacked slides) */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(11, 18, 22, 0.48);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 300;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-slider-btn:hover {
  background: rgba(11, 18, 22, 0.72);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero-slider-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.hero-slider-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.hero-slider-btn--prev {
  left: 16px;
}
.hero-slider-btn--next {
  right: 16px;
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.trust-strip {
  margin-top: 18px;
  margin-bottom: 8px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

/* Dynamic module Font Awesome icons inside home stat / why cards */
.stat-icon--fa,
.why-icon--fa {
  display: grid;
  place-items: center;
}

.stat-icon--fa i,
.why-icon--fa i {
  font-size: 1.22rem;
  color: var(--brand-deep);
  line-height: 1;
}

.section {
  padding: 78px 0 0;
}

.section-heading {
  max-width: 100%;
}

.why-choose-section .section-heading {
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.why-choose-section .section-heading p {
  max-width: 100%;
}

.section-heading h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
}

.teaser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-section .section-heading,
.content-block {
  max-width: 100%;
}

.content-block {
  display: grid;
  gap: 18px;
}

.content-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.content-block h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

/* CMS page + right sidebar layout (when "Show Sidebar" is enabled in Admin). */
.dsw-page-layout--with-sidebar {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 340px);
  gap: 30px;
  align-items: start;
}

.dsw-page-layout--with-sidebar .content-block {
  max-width: none;
  width: 100%;
}

/* No-sidebar CMS pages should use full content width. */
.jbm-cms-page--fullwidth {
  max-width: 100%;
}

.jbm-page-featured-media {
  margin: 0 0 18px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.jbm-page-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.dsw-page-layout--with-sidebar .jbm-cms-page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.dsw-sidebar {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dsw-sidebar__block + .dsw-sidebar__block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.dsw-sidebar__title {
  margin: 0 0 10px 0;
  font-size: 1rem;
  font-family: "Sora", sans-serif;
}

.dsw-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.dsw-sidebar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #f8fafc;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: all 0.2s ease;
}

.dsw-sidebar__link::before {
  content: "›";
  color: var(--brand);
  font-weight: 700;
  opacity: 0.85;
}

.dsw-sidebar__link:hover,
.dsw-sidebar__link:focus-visible {
  transform: translateX(2px);
  border-color: color-mix(in srgb, var(--brand) 35%, #ffffff 65%);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.dsw-sidebar__sub .dsw-sidebar__link,
.dsw-sidebar__link--sub {
  margin-left: 10px;
  padding: 7px 10px;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--muted);
}

.dsw-sidebar__sub .dsw-sidebar__link::before,
.dsw-sidebar__link--sub::before {
  content: "•";
  font-size: 0.85rem;
  opacity: 0.65;
}

.dsw-sidebar__link--current {
  color: var(--brand-deep);
  font-weight: 600;
  border-color: color-mix(in srgb, var(--brand) 35%, #ffffff 65%);
  background: color-mix(in srgb, var(--brand) 10%, #ffffff 90%);
}

.dsw-sidebar__link--current::before {
  opacity: 1;
}

.dsw-sidebar__line {
  margin: 0 0 8px 0;
}

.dsw-sidebar__empty {
  display: block;
  padding: 10px 11px;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.95rem;
}

.dsw-sidebar__list--blog {
  gap: 12px;
}

.dsw-blog-sidebar-post {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dsw-blog-sidebar-post:hover,
.dsw-blog-sidebar-post:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand) 35%, #ffffff 65%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.dsw-blog-sidebar-post__thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dsw-blog-sidebar-post__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dsw-blog-sidebar-post__thumb--placeholder {
  color: var(--brand);
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(187, 77, 0, 0.1), rgba(15, 94, 91, 0.14));
}

.dsw-blog-sidebar-post__body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.dsw-blog-sidebar-post__date {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dsw-blog-sidebar-post__date::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.7;
}

.dsw-blog-sidebar-post__title {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dsw-sidebar__block--accent {
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  padding: 12px;
}

.dsw-sidebar__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.dsw-sidebar__contact-link:hover,
.dsw-sidebar__contact-link:focus-visible {
  border-color: color-mix(in srgb, var(--brand) 35%, #ffffff 65%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.dsw-sidebar__contact-link i {
  color: var(--brand);
}

.dsw-sidebar__cta {
  margin: 12px 0 0 0;
}

/* Blog listing + post styles */
.jbm-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jbm-blog-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.jbm-blog-card__thumb {
  display: block;
  margin: -18px -18px 16px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
}

.jbm-blog-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.jbm-blog-card:hover .jbm-blog-card__thumb img,
.jbm-blog-card:focus-within .jbm-blog-card__thumb img {
  transform: scale(1.03);
}

.jbm-blog-card h2 {
  margin: 0 0 8px 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.jbm-blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.jbm-blog-card h2 a:hover,
.jbm-blog-card h2 a:focus-visible {
  color: var(--brand);
}

.jbm-blog-date {
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.jbm-blog-read {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px) {
  .jbm-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dsw-page-layout--with-sidebar {
    grid-template-columns: 1fr;
  }
}

.why-choose-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  padding: 26px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(187, 77, 0, 0.14), rgba(15, 94, 91, 0.16));
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 1.2rem;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-testimonials-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-map-section {
  padding-top: 40px;
}

/* Contact us: full-width map row above the form + details grid */
.contact-map-section__map {
  margin-bottom: 28px;
}

.contact-page-map iframe {
  min-height: 360px;
}

.contact-layout-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-form-panel,
.testimonials-panel,
.contact-details-panel {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.contact-form-panel h2,
.testimonials-panel h2,
.contact-details-panel h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.contact-form-panel > p:not(.eyebrow),
.testimonials-panel > p:not(.eyebrow),
.contact-details-panel > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-details-list {
  display: grid;
  gap: 16px;
}

.contact-detail-card {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 38, 0.08);
  background: linear-gradient(135deg, rgba(187, 77, 0, 0.08), rgba(15, 94, 91, 0.08));
}

.contact-detail-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 38, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.testimonial-list {
  display: grid;
  gap: 16px;
}

.map-panel {
  display: grid;
  gap: 18px;
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 38, 0.08);
  min-height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.testimonial-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(187, 77, 0, 0.08), rgba(15, 94, 91, 0.08));
  border: 1px solid rgba(23, 33, 38, 0.08);
}

.testimonial-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.services-heading {
  margin: 0 auto;
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.services-heading p {
  max-width: 100%;
}

.services-toolbar {
  margin-top: 30px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.services-intro-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.services-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-carousel {
  position: relative;
}

.services-viewport {
  overflow: hidden;
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  transition: transform 0.42s ease;
  will-change: transform;
}

.service-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
}

.service-slide-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}

.service-menu-icon {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  color: var(--brand);
  font-size: 2rem;
}

.service-image-one {
  background-image:
    linear-gradient(180deg, rgba(12, 21, 26, 0.08), rgba(12, 21, 26, 0.3)),
    url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1400&q=80");
}

.service-image-two {
  background-image:
    linear-gradient(180deg, rgba(12, 21, 26, 0.08), rgba(12, 21, 26, 0.3)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1400&q=80");
}

.service-image-three {
  background-image:
    linear-gradient(180deg, rgba(12, 21, 26, 0.08), rgba(12, 21, 26, 0.3)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1400&q=80");
}

.service-image-four {
  background-image:
    linear-gradient(180deg, rgba(12, 21, 26, 0.08), rgba(12, 21, 26, 0.3)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1400&q=80");
}

.service-slide-copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-slide-copy h3 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.service-slide-copy p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.services-nav {
  min-width: 132px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.services-nav:hover,
.services-nav:focus-visible {
  transform: translateY(-2px);
  background: #fff;
}

.services-nav.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.welcome-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.welcome-image-card {
  position: relative;
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(18, 31, 37, 0.15), rgba(18, 31, 37, 0.45)),
    linear-gradient(135deg, #d7782c 0%, #a54200 52%, #133a44 100%);
}

.welcome-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 0.92rem;
}

.welcome-truck-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.16), transparent 10%),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.12), transparent 14%),
    linear-gradient(0deg, rgba(15, 20, 24, 0.5), rgba(15, 20, 24, 0.08)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.welcome-overlay-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.welcome-overlay-card strong {
  font-size: 1.2rem;
}

.welcome-overlay-card span {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.welcome-copy h2 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.welcome-lead {
  font-size: 1.12rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  max-width: 58ch;
}

.welcome-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* Generic dynamic module block used by {{module:slug}} and home embeds like below-banner. */
.page-module-section {
  width: 100%;
  margin: 24px 0 0;
}

.dsw-container {
  width: var(--container);
  margin: 0 auto;
}

.page-module-intro {
  margin-bottom: 20px;
}

.page-module-heading {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-module-desc {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.75;
}

.page-module-grid {
  display: grid;
  gap: 18px;
}

.page-module-grid--cols-1 {
  grid-template-columns: 1fr;
}

.page-module-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-module-grid--cols-3,
.page-module-grid--cols-4,
.page-module-grid--cols-5,
.page-module-grid--cols-6,
.page-module-grid--cols-7,
.page-module-grid--cols-8,
.page-module-grid--cols-9,
.page-module-grid--cols-10,
.page-module-grid--cols-11,
.page-module-grid--cols-12 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-module-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-module-card__img {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background: rgba(15, 94, 91, 0.08);
}

.page-module-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-module-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(187, 77, 0, 0.14), rgba(15, 94, 91, 0.16));
  color: var(--brand);
  font-size: 1.4rem;
}

.page-module-card__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}

.page-module-card__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-module-card__link {
  margin-top: auto;
  color: var(--module-accent, var(--brand));
  font-weight: 700;
}

/* Home page below-banner module ko hi center align rakho. */
.home-below-banner .page-module-intro,
.home-below-banner .page-module-card {
  text-align: center;
}

/* Intro copy ko beech mein rakho taaki heading aur description centered dikhein. */
.home-below-banner .page-module-intro {
  display: grid;
  justify-items: center;
}

/* User ne sirf section title hide karne ko bola hai. */
.home-below-banner .page-module-heading {
  display: none;
}

.home-below-banner .page-module-desc {
  margin-inline: auto;
}

/* Card content aur icons ko bhi center mein stack karo. */
.home-below-banner .page-module-card {
  align-items: center;
}

.page-module-carousel {
  position: relative;
}

.page-module-carousel__viewport {
  overflow: hidden;
}

.page-module-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  transition: transform 0.3s ease;
}

.page-module-carousel .page-module-card {
  min-width: 0;
}

.page-module-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--module-accent, var(--brand));
  cursor: pointer;
}

.page-module-carousel__btn--prev {
  left: -10px;
}

.page-module-carousel__btn--next {
  right: -10px;
}

.welcome-points {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.welcome-point {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(31, 30, 28, 0.08);
}

.welcome-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.welcome-point span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.welcome-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-grid,
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strength-grid,
.contact-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand-deep);
  font-weight: 700;
}

.service-card,
.strength-card {
  min-height: 220px;
}

.cta-band {
  margin-top: 78px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(24, 37, 43, 0.96), rgba(15, 94, 91, 0.92)),
    var(--surface-strong);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band .eyebrow,
.cta-band .cta-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 70px;
}

.site-footer {
  width: 100%;
  display: block;
  padding: 48px 0 28px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(20, 30, 35, 0.98), rgba(12, 79, 76, 0.96)),
    #122127;
  color: #fff;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 28px;
}

.footer-brand-link {
  margin-bottom: 20px;
}

.site-footer .brand-copy small,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-brand p {
  max-width: 40ch;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #fff;
}

.footer-column p {
  margin: 0;
}

.footer-column--menus .footer-menu-group {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-submenu-link {
  padding-left: 10px;
  font-size: 0.92rem;
  opacity: 0.92;
}

.footer-empty {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-bottom {
  width: var(--container);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 1080px) {
  .hero,
  .teaser-grid,
  .why-choose-grid,
  .contact-testimonials-section,
  .contact-layout-section,
  .welcome-section,
  .welcome-points,
  .about-grid,
  .service-grid,
  .strength-grid,
  .contact-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-toolbar {
    display: grid;
  }

  .services-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: stretch;
  }

  .footer,
  .cta-band,
  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 16px;
  }

  /* Mobile header gutter 16px — niche wale container sections bhi same line. */
  .hero,
  .section,
  .trust-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(280px, calc(100vw - 32px));
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
  }

  .nav-item {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .nav-item::after {
    display: none;
  }

  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 2px;
    width: 28px;
    height: 28px;
  }

  .submenu {
    position: static;
    min-width: 100%;
    padding: 8px;
    background: rgba(245, 241, 232, 0.96);
    box-shadow: none;
  }

  .nav.is-open {
    display: flex;
  }

  /* Full-width call button in mobile drawer so long +91 numbers wrap cleanly */
  .nav .nav-cta {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .hero,
  .hero-stats,
  .page-module-grid,
  .teaser-grid,
  .why-choose-grid,
  .contact-testimonials-section,
  .contact-layout-section,
  .welcome-section,
  .welcome-points,
  .about-grid,
  .service-grid,
  .strength-grid,
  .contact-page-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-track {
    grid-auto-columns: 100%;
  }

  .page-module-carousel__track {
    grid-auto-columns: 100%;
  }

  .page-module-carousel__btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    padding-top: 24px;
    padding-bottom: 24px;
    /* Header / body mobile gutter 16px ke saath match (topbar padding). */
    padding-left: max(16px, calc((100vw - var(--container)) / 2 + 16px));
    padding-right: max(16px, calc((100vw - var(--container)) / 2 + 16px));
  }

  .slides {
    min-height: 420px;
  }

  .welcome-image-card {
    min-height: 320px;
  }

  .inner-banner {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: max(16px, calc((100vw - var(--container)) / 2 + 16px));
    padding-right: max(16px, calc((100vw - var(--container)) / 2 + 16px));
    border-radius: 0;
  }

  .service-slide-copy {
    padding: 24px;
  }

  .services-controls {
    justify-content: space-between;
  }

  .services-nav {
    min-width: 120px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .welcome-overlay-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .section {
    padding-top: 62px;
  }

  .cta-band {
    margin-top: 62px;
    padding: 24px;
  }

  .hero-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .hero-slider-btn--prev {
    left: 10px;
  }

  .hero-slider-btn--next {
    right: 10px;
  }
}
