    :root {
      --bg: #f7f7f9;
      --card: #ffffff;
      --muted: #6b7280;
      --text: #0f172a;
      --brand: #0ea5e9;
      --brand-2: #22c55e;
      --accent: #f59e0b;
      --border: #e5e7eb;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      color: var(--text);
      background: var(--bg);
      scroll-behavior: smooth;
    }

    body {
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    .container {
      width: 90%;
      max-width: var(--max);
      margin: 0 auto;
    }

    /* Announcement Bar */
    .announce {
      background: #ffffff;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
    }

    .announce-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .announce-left {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .announce-left a {
      color: var(--muted);
      transition: color 0.2s ease;
    }

    .announce-left a:hover {
      color: var(--brand);
    }

    .sep {
      margin: 0 0.5rem;
      color: #9ca3af;
    }

    .announce-right {
      display: flex;
      gap: 0.4rem;
    }

    .social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #eef2f7;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .social:hover {
      transform: translateY(-2px);
      background: var(--brand);
    }

    .social:hover svg {
      fill: #ffffff;
    }

    .social svg {
      width: 16px;
      height: 16px;
      fill: var(--text);
      transition: fill 0.2s ease;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      /* background: rgba(255, 255, 255, 0.9); */
      background: #ffffff;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s ease;
    }

    .nav-wrap {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
      padding: 0.8rem 0;
      justify-items: center;
      position: relative;
    }

    .nav-left,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-left {
      justify-self: start;
    }

    .nav-right {
      justify-self: end;
    }

    .nav-link {
      padding: 0.5rem 0.8rem;
      border-radius: 0.5rem;
      opacity: 0.85;
      transition: all 0.3s ease;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .nav-link.active,
    .nav-link:hover {
      background: #eef2ff;
      opacity: 1;
      color: var(--brand);
    }

    .brand {
      transition: transform 0.3s ease;
    }

    .brand:hover {
      transform: scale(1.05);
    }

    .brand img {
      height: auto;
    width: 80px;
    }

    .btn-call {
      padding: 0.55rem 1rem;
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      color: white;
      border: none;
      border-radius: 0.9rem;
      font-weight: 600;
      box-shadow: 0 6px 18px rgba(14, 165, 233, 0.18);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap;
    }

    .btn-call:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      background: none;
      border: none;
      gap: 6px;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 51;
      transition: transform 0.3s ease;
    }

    .hamburger:hover {
      transform: scale(1.1);
    }

    .hamburger span {
      width: 26px;
      height: 2px;
      background: var(--text);
      display: block;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .site-header.open .hamburger span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .site-header.open .hamburger span:nth-child(2) {
      opacity: 0;
    }

    .site-header.open .hamburger span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      cursor: pointer;
    }

    .dropdown-toggle:after {
      content: "▾";
      margin-left: 0.3rem;
      font-size: 0.8rem;
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle:after {
      transform: rotate(-180deg);
    }

    .dropdown-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      min-width: 220px;
      display: none;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 60;
    }

    .dropdown:hover .dropdown-menu {
      display: flex;
      opacity: 1;
      transform: translateY(0);
      animation: dropdownFadeIn 0.3s ease forwards;
    }

    @keyframes dropdownFadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dropdown-menu a {
      padding: 0.8rem 1rem;
      border-bottom: 1px solid var(--border);
      transition: all 0.2s ease;
      font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
      background: #eef2ff;
      color: var(--brand);
      padding-left: 1.2rem;
    }

    .dropdown-menu a:last-child {
      border-bottom: none;
    }

    /* ===========================
       RESPONSIVE (MOBILE/TABLET)
       =========================== */
    @media (max-width: 900px) {
  .announce-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 0;
  }

  .hamburger {
    display: flex;
    justify-self: start;
  }

  .nav-left,
  .nav-right {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem 1.5rem;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-header.open .nav-left,
  .site-header.open .nav-right {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-right {
    padding-top: 0;
  }

  .nav-link {
    width: 100%;
  }

  .btn-call {
    width: 100%;
    text-align: center;
    margin-top: 0.4rem;
  }

  /* 🔽 MOBILE DROPDOWN – SLIDE EFFECT 🔽 */
  .dropdown-menu {
    position: static;
    border-radius: 0.5rem;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 0.3rem;

    /* slide animation props */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* always present in flow, but collapsed */
  }

  

  /* Jab .dropdown pe .open class lagti hai (JS se), tab slide down hoga */
  .dropdown.open .dropdown-menu {
    max-height: 500px; /* enough for all links */
  }

  .dropdown-toggle:after {
    transform: none !important;
  }
}


    @media (max-width: 600px) {
      .brand img {
        height: 34px;
      }
    }

/* ===================== MAIN SECTIONS (INTERIOR THEME) ===================== */

/* main {
  padding-top: 0.5rem;
} */

/* Hero Section */
.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--brand);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 32rem;
}

.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
}

.btn-ghost {
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 60%);
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  transform: translateZ(0);
}

.hero-room {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #0f172a, #020617);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-room::before {
  content: "";
  position: absolute;
  inset: 18% 10% auto;
  height: 50%;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  opacity: 0.18;
  filter: blur(10px);
}

.hero-room-image {
  position: relative;
  width: 85%;
  border-radius: 1.2rem 1.2rem 0.6rem 0.6rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  transform: translateY(10px);
}

.hero-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  left: -10px;
  bottom: 12px;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  font-size: 0.8rem;
  min-width: 170px;
}

.hero-float-card h4 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.hero-float-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-tag-pill {
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--brand-2);
  font-size: 0.75rem;
  font-weight: 600;
}

/* 3D Cards section – Services */
.section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 0.4rem;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #e5f3ff);
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(148, 163, 184, 0.3);
  transform: translateY(0) translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.23), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #0ea5e9, #0f172a);
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  font-size: 1.1rem;
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-meta {
  font-size: 0.8rem;
  color: #4b5563;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 3D hover */
.service-card:hover {
  transform: translateY(-10px) translateZ(0);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.process-step {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.12);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

/* Projects strip */
.projects-strip {
  background: radial-gradient(circle at top left, #0ea5e921, #fefce8);
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.projects-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.projects-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-pill {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: #e5f0ff;
  font-size: 0.82rem;
}

.projects-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA Section */
.cta {
  padding: 3.5rem 0 4rem;
}

.cta-card {
  border-radius: 1.6rem;
  background: radial-gradient(circle at top left, #0ea5e9, #0f172a 60%);
  color: #e5f0ff;
  padding: 2.4rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.6);
}

.cta h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.cta p {
  margin: 0;
  font-size: 0.95rem;
  color: #dbeafe;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.btn-cta-primary {
  padding: 0.8rem 1.4rem;
  border-radius: 0.9rem;
  background: #fbbf24;
  border: 0;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.4);
}

.btn-cta-ghost {
  padding: 0.75rem 1.3rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.4);
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ABOUT PAGE */
.about-hero {
  padding: 4rem 0 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--text);
  font-weight: 500;
  font-size: 0.8rem;
}

.about-title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin: 1rem 0 0.8rem;
}

.about-text {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-point {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.about-point-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--brand);
}

.about-stat-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  color: #e5e7eb;
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
}

.about-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1.3rem;
  margin-top: 1.1rem;
}

.about-stat {
  font-size: 0.9rem;
}

.about-stat strong {
  display: block;
  font-size: 1.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.value-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* CONTACT PAGE */
/* ------------------ SECTION WRAPPER ------------------ */

.contact-hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at top right, #e0f2fe 0, #f9fafb 45%, #ffffff 100%);
}

/* If you already have .container globally, ye usi ke sath chalega */

/* ------------------ HEADER AREA ------------------ */

.contact-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 0.4rem;
}

.contact-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.6rem;
  color: #0f172a;
}

.contact-subtitle {
  margin: 0;
  font-size: 0.98rem;
  max-width: 34rem;
  color: #6b7280;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.contact-badge {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #0f766e;
  white-space: nowrap;
}

/* ------------------ MAIN GRID ------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: stretch;
}

/* ------------------ FORM CARD ------------------ */

.contact-card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
}

.contact-card-title {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: #111827;
}

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

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  color: #4b5563;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  font-family: inherit;
  background: #f9fafb;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.15);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.contact-btn {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.contact-note {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

/* ------------------ CONTACT INFO CARD ------------------ */

.contact-info-card {
  background: radial-gradient(circle at top left, #38bdf8, #0f172a 56%);
  color: #e5f0ff;
  border-radius: 1.3rem;
  padding: 1.7rem 1.6rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.65);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(248, 250, 252, 0.1), transparent 55%);
  pointer-events: none;
}

.contact-info-title {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.contact-info-subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: #dbeafe;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.contact-info-list li {
  margin-bottom: 0.85rem;
}

.contact-info-label {
  opacity: 0.85;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info-value {
  margin-top: 0.15rem;
}

/* Small highlight list */

.contact-highlights {
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.contact-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.contact-highlight-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

/* ------------------ MAP SECTION ------------------ */

.contact-map-full {
  margin-top: 2.5rem;
}

.contact-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.contact-map-header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.contact-map-header p {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
}

.contact-map-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}

.contact-map-inner {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.contact-map-inner iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

/* ------------------ RESPONSIVE STYLES ------------------ */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  }

  .contact-hero-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-info-card {
    order: -1; /* mobile pe contact info upar aa sakta hai (optional) */
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 3rem 0 3rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-grid {
    gap: 1.4rem;
  }

  .contact-card,
  .contact-info-card {
    padding: 1.4rem 1.3rem;
    border-radius: 1.1rem;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-map-inner iframe {
    height: 260px;
  }

  .contact-map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map-tag {
    margin-top: 0.3rem;
  }
}





/* GALLERY PAGES */
.gallery-hero {
  padding: 4rem 0 1.5rem;
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.gallery-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-tag {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  cursor: pointer;
}

.gallery-grid {
  padding: 0 0 3.5rem;
}

.gallery-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #020617;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-item-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #e5e7eb;
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: #fafafa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.6fr;
  gap: 2rem;
  padding: 48px 0;
}

.footer-brand img {
  height: auto;
  width: 100px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-col p {
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.4rem 0;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter input {
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--brand);
}

.newsletter button {
  padding: 0.65rem 0.9rem;
  border-radius: 0.7rem;
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.2);
}

.newsletter .note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
  background: #f3f4f6;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.credit a {
  color: var(--brand);
  font-weight: 600;
  transition: color 0.2s ease;
}

.credit a:hover {
  color: var(--accent);
}

/* ===================== Responsive Design ===================== */

/* Tablet View - 768px to 1023px */
@media (max-width: 1023px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .nav-left,
  .nav-right {
    gap: 0.6rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .brand img {
    height: 38px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

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

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

  .cta-card {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

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

/* Mobile View - up to 900px */
@media (max-width: 900px) {
  .announce-inner {
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
  }
  .announce-left { justify-content: center; }
  .sep { display: none; }
  .announce-left a { font-size: 0.85rem; }

  .nav-wrap {
    grid-template-columns: auto 1fr;
    padding: 0.6rem 0;
    position: relative;
  }

  /* show logo + burger only in top bar */
  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
    order: 2;
    position: relative;
    z-index: 52;
    justify-self: end;
  }

  .brand {
    justify-self: start;
    margin-left: 0;
    position: relative;
    z-index: 52;
  }

  .brand img {
    height: auto;
    width: 60px;
  }

  /* --------- MOBILE MENU OPEN STATE:  logo + burger visible, menu below ---------- */
  .site-header.open .nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.24);
    animation: slideDown 0.25s ease forwards;
  }

  .site-header.open .brand {
    order: 0;
    padding: 0 1rem;
  }

  .site-header.open .hamburger {
    order: 1;
    align-self: flex-end;
    margin-right: 1rem;
  }

  .site-header.open .nav-left,
  .site-header.open .nav-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.2rem 0;
    margin: 0 0 0.4rem;
    /* background: transparent; */
    box-shadow: none;
  }

  .site-header.open .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.9rem 1.2rem;
    border-radius: 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
  }
  .site-header.open .nav-link:last-of-type { border-bottom: none; }

  .site-header.open .btn-call {
    width: 100%;
    text-align: center;
    margin-top: 0.6rem;
    padding: 1rem;
    border-radius: 0.7rem;
  }

  /* Hover dropdown disable, tap-to-open only */
  .dropdown:hover .dropdown-menu { display: none; }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .dropdown-toggle:after { margin-left: auto; }

  .dropdown .dropdown-menu {
    position: static;
    display: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #f9fafb;
    border: none;
    border-top: 1px solid var(--border);
  }

  .dropdown.open .dropdown-menu {
    display: flex;
    animation: expandDown 0.3s ease forwards;
  }

  .dropdown-menu a {
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu a:last-child { border-bottom: none; }

  /* hero + sections */
  .hero {
    padding: 3rem 0 2.4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero-room {
    height: 200px;
  }

  .hero-meta {
    gap: 1rem;
  }

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

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

  .projects-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    padding: 2rem 1.4rem;
  }

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

  .about-stat-row {
    flex-direction: column;
  }

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

  .gallery-grid-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* Small Mobile - up to 480px */
@media (max-width: 480px) {
  .container {
    width: 95%;
  }

  .announce-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem 0;
  }

  .announce-left {
    flex-direction: column;
    gap: 0.3rem;
  }

  .brand img {
    height: auto;
    width: 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .cta-card {
    border-radius: 1.2rem;
  }
}

/* Large Desktop - 1440px */
@media (min-width: 1440px) {
  :root {
    --max: 1320px;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }

  .brand img {
    height: auto;
    width: 80px;
  }

  .btn-call {
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
  }

  .footer-grid {
    padding: 56px 0;
  }
}

/* Ultra Wide - 2560px */
@media (min-width: 2560px) {
  :root {
    --max: 1600px;
  }

  .announce-inner {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
  }

  .brand img {
    height: auto;
    width: 100px;
  }

  .btn-call {
    padding: 0.7rem 1.4rem;
    font-size: 1.1rem;
  }

  .social {
    width: 36px;
    height: 36px;
  }

  .social svg {
    width: 18px;
    height: 18px;
  }

  .footer-grid {
    padding: 64px 0;
    gap: 3rem;
  }

  .footer-brand img {
    height: 48px;
  }
}

/* animations  */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes expandDown {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 500px; }
}



/* Page Banner - below navbar on every page */
.page-banner {
  padding: 2.4rem 0;
  background: radial-gradient(circle at top left, rgba(14,165,233,0.12), #f7f7f9);
  border-bottom: 1px solid var(--border);
}

.page-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.page-banner-text h1,
.page-banner-text h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}

.page-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.04);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  color: #0f172a;
}

.page-banner-image {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,23,42,0.16);
  background: #020617;
}

.page-banner-image::before {
  content: "";
  position: absolute;
  inset: 12% 12% auto;
  background: radial-gradient(circle at top left, rgba(14,165,233,0.7), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.page-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.4s ease;
}

.page-banner-image:hover img {
  transform: scale(1.08);
}

/* tighter variant for inner pages if needed */
.page-banner--inner {
  padding: 2rem 0;
}

/* Mobile adjustments for banner */
@media (max-width: 900px) {
  .page-banner {
    padding: 1.8rem 0 1.8rem;
  }
  .page-banner-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-banner-image {
    order: -1;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-banner-image {
    height: 160px;
    border-radius: 1rem;
  }
}



/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider-track {
  position: relative;
  min-height: 320px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(15,23,42,0.7);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(15,23,42,0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-nav:hover {
  background: rgba(14,165,233,0.9);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 14px 35px rgba(15,23,42,0.55);
}

.hero-nav-prev {
  left: 1rem;
}

.hero-nav-next {
  right: 1rem;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cbd5f5;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
  width: 22px;
  background: var(--brand);
  transform: translateY(-1px);
}

/* Mobile hero slider tweaks */
@media (max-width: 900px) {
  .hero-slider-track {
    min-height: 0;
  }
  .hero-nav {
    display: none;
  }
  .hero-dots {
    margin-top: 1.2rem;
  }
}


/* =========================
   MWM-INSPIRED HOME DESIGN
   (NAV & FOOTER KE BINA)
   ========================= */

/* Hero MWM style */
.hero-mwm {
  padding: 0;
  background: #f8f5f1;
}

.hero-inner-mwm {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
  padding-top: 30px;
  padding-bottom: 3.5rem;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b29a7c;
  margin-bottom: 0.8rem;
}

.hero-mwm .hero-title span {
  display: block;
  color: #b88a5a;
}

.hero-mwm .hero-text {
  max-width: 34rem;
}

/* Scoped hero visual for MWM to avoid conflicts */
.hero-mwm .hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-mwm .hero-visual-main {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.hero-mwm .hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-mwm .hero-visual-card {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 253, 250, 0.94);
  border-radius: 1.1rem;
  padding: 0.9rem 1.1rem;
  max-width: 260px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-mwm .hero-visual-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b29a7c;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.hero-mwm .hero-visual-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.hero-mwm .hero-visual-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Services strip */
.section-services-mwm {
  background: #fdfbf8;
}

.section-header.align-left {
  text-align: left;
}

.section-header.align-left .section-title {
  max-width: 30rem;
}

.section-header.align-left .section-subtitle {
  max-width: 34rem;
}

.services-mwm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.service-mwm-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(145deg, #ffffff, #f1e4d6);
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-mwm-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-mwm-body {
  padding: 1.4rem 1.5rem 1.5rem;
}

.service-mwm-body h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.service-mwm-body p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.service-mwm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  display: grid;
  gap: 0.28rem;
}

.service-mwm-list li::before {
  content: "•";
  margin-right: 0.45rem;
  color: #b88a5a;
}

/* About strip */
.section-about-mwm {
  background: #f8f5f1;
}

.about-mwm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.about-mwm-copy .section-title {
  margin-bottom: 0.9rem;
}

.about-mwm-text {
  margin: 0.4rem 0 1.2rem;
  color: var(--muted);
}

.about-mwm-highlights {
  display: grid;
  gap: 1rem;
}
/* Default (mobile-first) – chhota gap */
.about-mwm-highlights {
  margin-top: 2.5rem;   /* ~40px */
}

/* Tablet (≥ 768px / ~900px) – thoda zyada space */
@media (min-width: 900px) {
  .about-mwm-highlights {
    margin-top: 3.5rem;  /* ~56px */
  }
}

/* Laptop / Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .about-mwm-highlights {
    margin-top: 9.5rem;  /* ~72px */
  }
}

/* Large Desktop (≥ 1440px) */
@media (min-width: 1440px) {
  .about-mwm-highlights {
    margin-top: 9.5rem;  /* ~88px */
  }
}

/* Ultra Wide (≥ 2560px) – yaha feel 140px ke aas-paas aa jayega */
@media (min-width: 2560px) {
  .about-mwm-highlights {
    margin-top: 10.5rem;  /* ~120px */
  }
}


.about-pill {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.about-pill h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.about-pill p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.text-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  color: #b88a5a;
  border-color: #b88a5a;
}

/* Projects grid */
.section-projects-mwm {
  background: #ffffff;
}

.projects-mwm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.project-card {
  background: #fdfbf8;
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  display: grid;
  grid-template-rows: auto 1fr;
}

.project-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.project-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.project-location {
  font-size: 0.85rem;
  margin: 0.1rem 0 0.5rem;
  color: #8b7a63;
}

.project-text {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.project-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: #b88a5a;
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
}

/* Stats strip */
.stats-strip {
  background: #2a2621;
  padding: 2.8rem 0;
  color: #fdfcfb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.stat-block {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 1.2rem;
}

.stat-block:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Unique split section */
.unique-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.unique-list {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  font-size: 0.9rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.unique-list li::before {
  content: "—";
  margin-right: 0.5rem;
  color: #b88a5a;
}

.unique-media img {
  width: 100%;
  border-radius: 1.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  object-fit: cover;
}

/* Client diaries */
.section-client-diaries {
  background: #fdfbf8;
}

.client-diaries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.client-card {
  background: #ffffff;
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  display: grid;
  grid-template-rows: auto 1fr;
}

.client-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.client-body {
  padding: 1.2rem 1.3rem 1.3rem;
}

.client-body h3 {
  margin: 0 0 0.4rem;
}

.client-body p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.client-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: #f6e8d7;
  color: #7b5e34;
}

/* Awards */
.section-awards {
  background: #ffffff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.award-card {
  background: #f8f5f1;
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.award-year {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b29a7c;
  margin-bottom: 0.4rem;
}

.award-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.96rem;
}

.award-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Insta grid */
.section-insta {
  background: #fdfbf8;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.insta-item {
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.04);
}

.insta-item:hover::after {
  opacity: 1;
}

/* Final CTA */
.section-final-cta {
  background: #2a2621;
  color: #fdfcfb;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.final-cta-copy h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.final-cta-copy p {
  margin: 0 0 1.2rem;
  max-width: 30rem;
}

.final-cta-media img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 26px 60px rgba(0,0,0,0.5);
  object-fit: cover;
}


/* ---------- RESPONSIVE (MWM STYLE SECTIONS) ---------- */
@media (max-width: 1024px) {
  .hero-inner-mwm,
  .about-mwm-grid,
  .unique-grid,
  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner-mwm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .stats-strip {
    padding: 2.2rem 0;
  }
}

@media (max-width: 900px) {
  .services-mwm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .hero-mwm .hero-visual-card {
    position: static;
    margin-top: 0.8rem;
    max-width: 100%;
  }

  .stat-block {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .services-mwm-grid,
  .projects-mwm-grid,
  .client-diaries-grid,
  .awards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-inner-mwm {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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



/* About & Contact hero full-height feel */
.about-hero,
.contact-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.about-hero-media {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-hero-frame {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.about-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-caption {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-side-visual {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.2);
}

.contact-side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-side-text h3 {
  margin: 0 0 0.4rem;
}

.contact-side-text p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-side-list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-hero,
  .contact-hero {
    min-height: auto;
    padding-top: 3rem;
  }
}
