    /* ====== BASIC RESET ====== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f8f5f2;
      scroll-behavior: smooth;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    :root {
      --primary: #c79b63;   /* gold */
      --accent: #f3d4c4;    /* peach */
      --light:  #fff;
      --dark:   #222;
      --muted:  #777;
      --radius-lg: 18px;
      --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
    }

    /* ====== LAYOUT HELPERS ====== */
    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    section {
      padding: 4rem 0;
    }
    h1, h2, h3 {
      font-weight: 600;
      color: var(--dark);
    }
    .section-title {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .section-title h2 {
      font-size: 2rem;
      margin-bottom: .3rem;
    }
    .section-title p {
      color: var(--muted);
      font-size: .95rem;
    }
/* ====== HEADER & NAV ====== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,245,242,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0; /* slightly taller header */
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo span:nth-child(1) {
  color: var(--dark);
}

.logo span:nth-child(2) {
  font-size: 0.75rem;
  color: var(--primary);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 1.8rem;          /* more spacing */
  font-size: 0.95rem;  /* BIGGER text */
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

/* Hover underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

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

.nav-links a:hover {
  color: var(--dark);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  font-size: 1.8rem; /* bigger hamburger */
  cursor: pointer;
}

/* Hide checkbox */
#nav-checkbox {
  display: none;
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #f8f5f2;
    flex-direction: column;
    padding: 1.2rem 1.5rem 1.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.95rem;
  }

  #nav-checkbox:checked ~ .nav-links {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.6rem 0;
  }

  .nav-toggle {
    display: block;
  }
}


    /* ====== HERO ====== */
    .hero {
      padding: 4.5rem 0 4rem;
      background: linear-gradient(135deg, #fdf8f3 0%, #f5e4d6 45%, #fdf8f3 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  font-size: 0.95rem;              /* BIGGER */
  font-weight: 600;                /* BOLDER */
  text-transform: uppercase;
  letter-spacing: 0.12em;          /* MORE PREMIUM */
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
    .hero-badge span {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
    }
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-transform: capitalize;
    }
    .hero h1 span {
      color: var(--primary);
    }
    .hero p {
      color: var(--muted);
      font-size: .98rem;
      max-width: 32rem;
      margin-bottom: 1.7rem;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }
    .btn-primary,
    .btn-outline {
      padding: .8rem 1.6rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: .9rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .08em;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: var(--shadow-soft);
    }
    .btn-primary:hover {
      filter: brightness(1.03);
    }
    .btn-outline {
      border: 1px solid var(--primary);
      background: transparent;
      color: var(--dark);
    }
    .hero-meta {
      margin-top: 1.4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: .8rem;
      color: var(--muted);
    }
    .hero-meta .hero-meta_inner{
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    .hero-meta .hero-meta_inner svg{
        color: var(--dark);
    }
    .hero-meta strong {
      display: block;
      color: var(--dark);
      font-size: .9rem;
    }
    .hero-image-box {
      background: rgba(255,255,255,0.8);
      /* border-radius: 999px; */
      border-radius: 10px;
      /* padding: 2rem 1.6rem; */
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
      overflow: hidden;
    }
    .hero-product {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff, #f0e0d2 70%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--dark);
    }
    .hero-image-box small {
      font-size: .78rem;
      color: var(--muted);
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 1.9rem;
      }
    }

    /* ====== ABOUT / VISION ====== */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: flex-start;
    }

    .about-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    [data-aos] {
      will-change: transform, opacity;
    }
    .about-text p {
      font-size: .95rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .about-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
      gap: 1.3rem;
      margin-top: .7rem;
    }
    .about-list li::before {
      content: "•";
      color: var(--primary);
      margin-right: .35rem;
      font-size: 1.5rem;
      line-height: 1;
    }
    .pill-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 1.3rem 1.4rem;
      box-shadow: var(--shadow-soft);
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .pill-card .pill-card-icon{
        background: var(--primary);
        color: var(--light);
        min-width: 44px;
        width: 44px;
        aspect-ratio: 1;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    .pill-card h3 {
      margin-top: .3rem;
      font-size: 1.2rem;
      margin-bottom: .4rem;
    }
    .pill-card p {
      font-size: .85rem;
      color: var(--muted);
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px,1fr));
      gap: .8rem;
      margin-top: .5rem;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.95);
      font-size: 0.85rem;            /* Bigger */
      font-weight: 600;              /* Bolder */
      color: var(--dark);
      letter-spacing: 0.04em;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.06);
      margin-top: 1.2rem;
    }

    .tag span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9933, #c79b63); /* India-inspired */
      box-shadow: 0 0 0 3px rgba(255,153,51,0.25);
    }

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

   /* ====== SERVICES ====== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

/* Base card */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Service icon */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e3c18a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

/* Headings */
.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--dark);
}

/* Description */
.card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

/* List */
.card ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.card ul li {
  margin-bottom: 0.3rem;
  padding-left: 0.7rem;
  position: relative;
}

/* Bullet dot */
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* Mobile optimization */
@media (max-width: 600px) {
  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.85rem;
  }
}


  /* ====== PROCESS ====== */

.process {
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f3 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
}

/* Step card */
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.6rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Step number */
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e3c18a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

/* Heading */
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--dark);
}

/* Description */
.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .step {
    padding: 1.5rem 1.4rem;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }
}


    /* ====== PRODUCT CATEGORIES ====== */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
      gap: 1.3rem;
    }
    .product-card {
      background: #fff;
      padding: 1.3rem 1.3rem 1.1rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .product-card img{
        width: calc(100% + 2.6rem);
        margin: -1.3rem -1.3rem 1rem;
        max-width: calc(100% + 2.6rem);
        aspect-ratio: 1;
        object-fit: cover;
    }
    .product-card h3 {
      font-size: .95rem;
      margin-bottom: .4rem;
    }
    .product-card ul {
      list-style: none;
      font-size: .8rem;
      color: var(--muted);
      max-height: 150px;
      overflow: auto;
      padding-right: .4rem;
    }
    .product-card ul li {
      margin-bottom: .25rem;
    }
    .product-card ul li::before {
      content: "• ";
      color: var(--primary);
    }

    /* ====== WHY US ====== */
    .whyus {
      background: linear-gradient(135deg, #fdf8f3 0%, #f1e3d6 50%, #fdf8f3 100%);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2.3rem;
      align-items: center;
    }
    .why-points {
      list-style: none;
      margin-top: .7rem;
    }
    .why-points li {
      margin-bottom: .5rem;
      font-size: .9rem;
      color: var(--muted);
      display: flex;
      gap: .5rem;
    }
    .why-points li::before {
      content: "✓";
      color: var(--primary);
      margin-top: .1rem;
    }
    .metrics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
      gap: 1rem;
      margin-top: 1.2rem;
    }
    .metric {
      background: rgba(255,255,255,0.9);
      border-radius: var(--radius-lg);
      padding: .9rem 1rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }
    .metric strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: .15rem;
      color: var(--dark);
    }
    .metric span {
      font-size: .75rem;
      color: var(--muted);
      line-height: 1;
    }

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

    /* ====== CONTACT ====== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2rem;
    }
    .contact-card {
  background: #fff;
  padding: 1.8rem 1.7rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Heading */
.contact-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: var(--dark);
}

/* Paragraph text */
.contact-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

/* Strong text */
.contact-card strong {
  color: var(--dark);
}

/* Links */
.contact-card a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--primary);
}

    form {
      display: grid;
      gap: .8rem;
      margin-top: .6rem;
    }
    input, textarea {
      width: 100%;
      padding: .7rem .8rem;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,0.08);
      font-size: .9rem;
      background: #fdf8f3;

      &:focus,&:focus-within, &:focus-visible{
        outline: var(--primary) auto 1px;
      }
    }
    textarea {
      resize: vertical;
      min-height: 120px;
    }

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

    /* ====== FOOTER ====== */
    footer {
      padding: 1.5rem 0 2rem;
      font-size: .8rem;
      color: var(--muted);
      text-align: center;
    }

/* Social media icons (Contact section) */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5efe9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--primary);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: #333;
  transition: fill 0.25s ease;
}

.social-links a:hover svg {
  fill: #fff;
}


#back-to-top {
position: fixed;
right: 16px;
bottom: 16px;
width: 44px;
height: 44px;
border-radius: 50%;
border: none;
background: var(--primary);
color: #fff;
display: none; 
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 999;
}

#back-to-top.show {
display: flex;
}
      