:root {
  --gold: #e7cf2f;
  --gold-dark: #b99d16;
  --charcoal: #383536;
  --ink: #1e1d1d;
  --muted: #656160;
  --line: #e8e5dd;
  --soft: #f7f6f1;
  --white: #ffffff;
  --blue: #2e7dff;
  --shadow: 0 18px 44px rgba(36, 33, 30, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: auto;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--charcoal);
  padding: 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(231, 207, 47, 0.28);
}

.btn-secondary {
  border-color: rgba(56, 53, 54, 0.22);
  color: var(--charcoal);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdf1 0%, #f8f7f2 45%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 42px;
  min-height: 660px;
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--charcoal);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.16;
  margin-bottom: 16px;
  color: var(--charcoal);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--charcoal);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 280px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(56, 53, 54, 0.92);
  color: var(--white);
  box-shadow: var(--shadow);
}

.media-badge strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}

section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 44%;
  height: 42%;
  border: 8px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(36, 33, 30, 0.08);
}

.service-card {
  border-top: 4px solid var(--gold);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(231, 207, 47, 0.18);
  color: var(--charcoal);
  font-weight: 900;
  margin-bottom: 16px;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 56px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--gold-dark);
  font-weight: 900;
}

.feature-band {
  background: var(--charcoal);
  color: var(--white);
  padding: 48px 0;
}

.feature-band h2,
.feature-band h3 {
  color: var(--white);
}

.feature-band .lead,
.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  color: var(--muted);
}

.testimonial strong {
  color: var(--charcoal);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(135deg, #fffdf1, #f8f7f2);
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 920px;
}

.product-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.product-strip img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-line {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.map-card {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(231, 207, 47, 0.22), rgba(56, 53, 54, 0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.map-visual {
  min-height: 280px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.52) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.52) 1px, transparent 1px),
    radial-gradient(circle at 58% 46%, var(--gold) 0 14px, transparent 15px),
    linear-gradient(135deg, #f7f2cf, #e5e2d7);
  background-size: 42px 42px, 42px 42px, auto, auto;
  position: relative;
}

.map-visual::after {
  content: "Gautam Buddha Nagar, Uttar Pradesh";
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  font-weight: 800;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: 240px;
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .brand img {
    width: 210px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 78px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-grid,
  .split,
  .product-strip,
  .contact-layout,
  .map-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 50px 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar .container {
    font-size: 0.82rem;
  }

  .brand img {
    width: 180px;
  }

  h1 {
    font-size: 2.18rem;
  }

  section {
    padding: 64px 0;
  }

  .hero-stats,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .media-badge {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .image-frame::after {
    display: none;
  }
}
/* @vn-deploy:1779813227080 */
