:root {
  --primary-red: #c0232f;
  --accent-yellow: #f7d84a;
  --accent-green: #2f8c4c;
  --sky-blue: #58b7d5;
  --deep-green: #1e5631;
  --warm-beige: #f7ddad;
  --paneer-lime: #a7d23c;
  --paneer-dark: #4d8c2a;
  --paneer-cream: #fff6d1;
  --paneer-blue: #2f3f9d;
  --paneer-gold: #f2c247;
  --text-dark: #2e2a2a;
  --text-muted: #5c5555;
  --bg-light: #fffaf3;
  --max-width: 1080px;
  --radius-pill: 999px;
  --radius-soft: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

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

a:hover {
  color: var(--primary-red);
}

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

header {
  background: linear-gradient(120deg, rgba(240, 243, 247, 0.92), rgba(255, 250, 243, 0.96));
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  width: 72px;
  height: auto;
}

.navbar-logo span {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--primary-red);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-green), var(--deep-green));
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 24px rgba(47, 140, 76, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(30, 86, 49, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  color: var(--paneer-blue);
  border: 1px solid rgba(47, 63, 157, 0.2);
  box-shadow: 0 6px 18px rgba(47, 63, 157, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 63, 157, 0.18);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.hero {
  padding: 5.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

/* New Hero Main Styles */
.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0 4rem;
  min-height: min(calc(100vh - 140px), 600px);
}

.hero-main__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-main__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(47, 140, 76, 0.12), rgba(167, 210, 60, 0.18));
  color: var(--deep-green);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 140, 76, 0.15);
}

.hero-main__content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text-dark);
}

.text-highlight {
  color: var(--accent-green);
  position: relative;
}

.hero-main__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-main__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.hero-main__stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-main__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-main__stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1;
}

.hero-main__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-main__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main__image-wrapper {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.hero-main__image-wrapper img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

.hero-main__floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 220px;
}

.hero-main__floating-card strong {
  font-size: 0.95rem;
  color: var(--deep-green);
}

.hero-main__floating-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 3rem;
    min-height: auto;
  }

  .hero-main__content {
    text-align: center;
    align-items: center;
  }

  .hero-main__content p {
    max-width: 100%;
  }

  .hero-main__actions {
    justify-content: center;
  }

  .hero-main__stats {
    justify-content: center;
  }

  .hero-main__visual {
    order: -1;
  }

  .hero-main__image-wrapper {
    max-width: 340px;
  }

  .hero-main__floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.25rem;
  }
}

@media (max-width: 540px) {
  .hero-main {
    padding: 2rem 0 2.5rem;
    gap: 2rem;
  }

  .hero-main__stats {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-main__stat-value {
    font-size: 1.5rem;
  }

  .hero-main__image-wrapper {
    max-width: 280px;
  }

  .hero-main__floating-card {
    padding: 0.85rem 1.25rem;
    max-width: 200px;
  }
}

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary-red);
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}

.hero p {
  color: var(--text-muted);
  max-width: 560px;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-media {
  background: linear-gradient(160deg, rgba(247, 221, 173, 0.35), rgba(88, 183, 213, 0.15));
  border-radius: 28px;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-media img {
  width: min(100%, 360px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.hero-highlight {
  display: grid;
  gap: 1rem;
}

.hero-highlight span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  text-transform: uppercase;
}

.hero-highlight strong {
  font-size: 1.1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 1.75rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card figure {
  margin: 0;
}

.card figure img {
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.card figure figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.section-header {
  margin: 4rem 0 1.5rem;
  text-align: center;
}

.about-section {
  scroll-margin-top: 120px;
}

.section-header span {
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0.6rem 0 0.5rem;
}

.section-header p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--text-muted);
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.1rem;
  background: rgba(192, 35, 47, 0.1);
  border-radius: var(--radius-pill);
  color: var(--primary-red);
  font-weight: 500;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-tile {
  background: linear-gradient(145deg, #fff, rgba(247, 216, 74, 0.18));
  border-radius: var(--radius-soft);
  padding: 1.75rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
}

.product-tile h3 {
  margin: 0 0 0.75rem;
  color: var(--deep-green);
}

.product-tile ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.highlight {
  background: rgba(47, 140, 76, 0.12);
  border-left: 4px solid var(--accent-green);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(88, 183, 213, 0.16);
  color: var(--sky-blue);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
}

.contact-card textarea {
  min-height: 140px;
}

.contact-card button {
  border: none;
  cursor: pointer;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-soft);
  background: linear-gradient(140deg, rgba(47, 140, 76, 0.12), rgba(88, 183, 213, 0.18));
  color: var(--deep-green);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.download-card a {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-green));
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(192, 35, 47, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.08);
}

.visual-proof {
  margin: 4rem 0 2rem;
}

.visual-proof__container {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(145deg, #fff, rgba(247, 221, 173, 0.2));
  border-radius: var(--radius-soft);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.visual-proof__media {
  margin: 0;
}

.visual-proof__media img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.visual-proof__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visual-proof__label {
  display: inline-block;
  width: fit-content;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.85rem;
}

.visual-proof__content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  line-height: 1.25;
}

.visual-proof__content p {
  margin: 0;
  color: var(--text-muted);
  max-width: 480px;
}

.visual-proof__list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.35rem;
}

.visual-proof__list li {
  position: relative;
}

.visual-proof__list li::marker {
  color: var(--accent-green);
}

@media (max-width: 720px) {
  .visual-proof__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem;
    gap: 1.5rem;
  }

  .visual-proof__media {
    order: -1;
  }

  .visual-proof__media img {
    max-width: 280px;
    margin: 0 auto;
  }

  .visual-proof__content {
    align-items: center;
  }

  .visual-proof__content p {
    max-width: 100%;
  }

  .visual-proof__list {
    text-align: left;
    display: inline-grid;
  }
}

footer {
  background: var(--deep-green);
  color: #fff;
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-inner h4 {
  margin-top: 0;
}

.footer-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.85;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list span {
  background: rgba(247, 216, 74, 0.28);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.table th,
.table td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.table th {
  background: rgba(88, 183, 213, 0.12);
  color: var(--deep-green);
  font-weight: 600;
}

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
  }

  .navbar > .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-bottom: 2.5rem;
  }

  .hero-media {
    order: -1;
    width: 100%;
  }

  footer {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 540px) {
  header {
    position: static;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-logo img {
    width: 62px;
  }

  main {
    padding: 0 1rem 3rem;
  }

  .card,
  .product-tile,
  .download-card,
  .contact-card {
    padding: 1.5rem;
  }

  .section-header {
    margin: 3rem 0 1.2rem;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .footer-inner {
    gap: 1.25rem;
  }
}
