* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: Arial, sans-serif;
  background: #f8ecd8;
  color: #2b1b10;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  width: 100%;
  background: rgba(248, 236, 216, 0.96);
  padding: 14px 0;
  border-bottom: 1px solid rgba(83, 48, 20, 0.12);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  width: min(94%, 1160px);
  margin: 12px auto 0;
  padding: 10px 0;
  border-radius: 999px;
  border: 1px solid rgba(139, 74, 31, 0.16);
  box-shadow: 0 16px 45px rgba(73, 39, 16, 0.16);
  animation: headerPop 0.35s ease;
}

.site-header.scrolled .site-logo {
  width: 125px;
}

@keyframes headerPop {
  0% {
    transform: translateY(-10px) scale(0.98);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  width: 150px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  color: #3a2414;
  font-size: 15px;
  font-weight: 500;
}

.header-btn {
  text-decoration: none;
  background: #8b4a1f;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* Hero */
.hero-section {
  padding: 70px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  width: 48%;
}

.hero-tagline {
  font-size: 15px;
  font-weight: 700;
  color: #9b5a24;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #2b1b10;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #5d4635;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.primary-btn {
  background: #8b4a1f;
  color: #ffffff;
}

.secondary-btn {
  border: 1px solid #8b4a1f;
  color: #8b4a1f;
  background: transparent;
}

.hero-image-wrap {
  width: 52%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(184, 121, 60, 0.18);
  border-radius: 50%;
  right: -120px;
  top: 80px;
  filter: blur(20px);
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(243, 194, 122, 0.22);
  border-radius: 50%;
  left: -80px;
  bottom: 40px;
  filter: blur(18px);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-image {
  animation: heroFloat 4.5s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Trust Strip */
.trust-strip {
  background: #2b1b10;
  padding: 16px 0;
}

.trust-strip-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.trust-strip span {
  color: #f3dfc5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
}

.trust-strip span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -21px;
  color: #f3c27a;
}

/* About */
.about-section {
  padding: 90px 0;
  background: #fffdf8;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  width: 52%;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #2b1b10;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #6b4c38;
  margin-bottom: 18px;
}

.about-image-wrap {
  width: 48%;
  background: #f8ecd8;
  border-radius: 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 55px rgba(73, 39, 16, 0.08);
  overflow: hidden;
}

.about-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Why Viraasat */
/* About */
.about-section {
  padding: 90px 0;
  background: #fffdf8;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  width: 52%;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #2b1b10;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #6b4c38;
  margin-bottom: 18px;
}

.about-image-wrap {
  width: 48%;
  background: #f8ecd8;
  border-radius: 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 55px rgba(73, 39, 16, 0.08);
  overflow: hidden;
}

.about-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  border-radius: 24px;
}

.why-heading-panel {
  background: #fffdf8;
  border: 1px solid rgba(139, 74, 31, 0.13);
  border-radius: 26px;
  padding: 26px 24px;
  box-shadow: 0 14px 36px rgba(73, 39, 16, 0.05);
  margin-bottom: 30px;
}

.why-heading-panel h2 {
  margin-bottom: 8px;
}

.why-heading-panel p {
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: #fffaf0;
  border: 1px solid rgba(139, 74, 31, 0.12);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(73, 39, 16, 0.06);
}

.why-card h3 {
  font-size: 22px;
  color: #2b1b10;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b4c38;
}


/* Products */
.products-section {
  padding: 28px 0 60px;
  background: #f8ecd8;
}

.product-note {
  display: inline-block;
  background: #2b1b10;
  color: #f3c27a;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-top: 18px;
}

.products-heading-panel {
  background: #fffdf8;
  border: 1px solid rgba(139, 74, 31, 0.13);
  border-radius: 26px;
  padding: 24px 24px;
  box-shadow: 0 14px 36px rgba(73, 39, 16, 0.05);
}

.products-heading-panel h2 {
  margin-bottom: 6px;
}

.products-heading-panel p {
  margin-bottom: 0;
}

.products-heading-panel .product-note {
  margin-top: 18px;
}

.products-section .products-heading-panel {
  margin-bottom: 22px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  justify-content: center;
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(139, 74, 31, 0.13);
  box-shadow: 0 20px 55px rgba(73, 39, 16, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.best-value-card {
  position: relative;
  border: 2px solid rgba(139, 74, 31, 0.28);
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #2b1b10;
  color: #f3c27a;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  z-index: 2;
}

.product-size {
  display: inline-block;
  background: #f8ecd8;
  color: #8b4a1f;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-price-box {
  background: #fff7e8;
  border: 1px solid rgba(139, 74, 31, 0.14);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-price-box span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #8b4a1f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-price-box strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #2b1b10;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(73, 39, 16, 0.14);
}

.product-card:hover .product-image-box img {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(73, 39, 16, 0.14);
}

.featured-product {
  transform: translateY(0);
}

.product-image-box {
  width: 100%;
  height: 330px;
  background: #fff7e8;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 24px;
  overflow: hidden;
}

.product-image-box img {
  max-width: 145%;
  max-height: 330px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.product-card h3 {
  font-size: 24px;
  color: #2b1b10;
  margin-bottom: 12px;
}

.product-card > p:not(.product-size) {
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b4c38;
  margin-bottom: 22px;
  min-height: 78px;
}

.product-btn {
  display: inline-block;
  text-decoration: none;
  background: #8b4a1f;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* Process */
.process-section {
  padding: 90px 0;
  background: #fffdf8;
}

.process-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.process-image-wrap {
  width: 48%;
  background: #fff7e8;
  border-radius: 32px;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 55px rgba(73, 39, 16, 0.08);
  overflow: hidden;
}

.process-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 24px;
}

.process-content {
  width: 52%;
}

.process-content h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #2b1b10;
  margin-bottom: 18px;
}

.process-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: #6b4c38;
  margin-bottom: 28px;
}

.process-points {
  display: grid;
  gap: 18px;
}

.process-points div {
  background: #fffaf0;
  border: 1px solid rgba(139, 74, 31, 0.12);
  border-radius: 20px;
  padding: 20px;
}

.process-points h3 {
  font-size: 18px;
  color: #2b1b10;
  margin-bottom: 8px;
}

.process-points p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b4c38;
}

/* FAQ */
.faq-section {
  padding: 55px 0 75px;
  background: #fffdf8;
}

.faq-heading-panel {
  background: #fffdf8;
  border: 1px solid rgba(139, 74, 31, 0.13);
  border-radius: 26px;
  padding: 26px 24px;
  box-shadow: 0 14px 36px rgba(73, 39, 16, 0.05);
  margin-bottom: 30px;
}

.faq-heading-panel h2 {
  margin-bottom: 8px;
}

.faq-heading-panel p {
  margin-bottom: 0;
}

.faq-list {
  max-width: 850px;
  max-height: 430px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  overflow-y: auto;
  padding: 8px 14px 8px 4px;
}

.faq-list::-webkit-scrollbar {
  width: 8px;
}

.faq-list::-webkit-scrollbar-track {
  background: #fff7e8;
  border-radius: 999px;
}

.faq-list::-webkit-scrollbar-thumb {
  background: #b8793c;
  border-radius: 999px;
}

.faq-list::-webkit-scrollbar-thumb:hover {
  background: #8b4a1f;
}

.faq-item {
  background: #f8ecd8;
  border: 1px solid rgba(139, 74, 31, 0.12);
  border-radius: 22px;
  padding: 24px 28px;
  box-shadow: 0 18px 45px rgba(73, 39, 16, 0.05);
}

.faq-item h3 {
  font-size: 19px;
  color: #2b1b10;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b4c38;
}

/* Contact */
.contact-section {
  padding: 90px 0;
  background: #2b1b10;
  color: #ffffff;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.contact-content {
  width: 55%;
}

.contact-content .section-tagline {
  color: #f3c27a;
}

.contact-content h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #f3dfc5;
}

.contact-card {
  width: 45%;
  background: #fffaf0;
  color: #2b1b10;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contact-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b4c38;
  margin-bottom: 24px;
}

.contact-btn {
  display: inline-block;
  text-decoration: none;
  background: #8b4a1f;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links a {
  color: #8b4a1f;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: #f8ecd8;
  border-top: 1px solid rgba(139, 74, 31, 0.12);
  padding: 42px 0 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b4c38;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
  color: #3a2414;
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(139, 74, 31, 0.12);
}

.footer-bottom p {
  font-size: 14px;
  color: #7a5a43;
}

/* Button Hover Effects */
.header-btn,
.primary-btn,
.secondary-btn,
.product-btn,
.contact-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.header-btn:hover,
.primary-btn:hover,
.product-btn:hover,
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 74, 31, 0.22);
  background: #6f3717;
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: #8b4a1f;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(139, 74, 31, 0.16);
}

/* Navigation Link Hover Effects */
.main-nav a,
.footer-links a {
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #8b4a1f;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: #8b4a1f;
}

.main-nav a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  z-index: 1200;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: #ffffff;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.45);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #8b4a1f;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  display: block;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Section Heading Alignment Fix */
.section-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading .section-tagline,
.section-heading h2,
.section-heading p {
  text-align: center;
}

/* Product Note Alignment Fix */
.products-section .section-heading {
  text-align: center;
}

.product-note {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 769px) {
  .why-section {
    padding-top: 70px;
  }

    .process-section {
    padding-bottom: 55px;
  }

  .faq-section {
    padding-top: 30px;
  }
}

/* Anchor Scroll Position Fix */
#about,
#why-viraasat,
#products,
#process,
#faq,
#contact {
  scroll-margin-top: 120px;
}

.main-nav a.active {
  color: #8b4a1f;
}

.main-nav a.active::after {
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .site-logo {
    width: 130px;
  }

  .menu-toggle {
  display: flex;
}

.main-nav {
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 92%;
  background: #fffaf0;
  border: 1px solid rgba(139, 74, 31, 0.14);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(73, 39, 16, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 1000;
}

.main-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.main-nav a {
  font-size: 15px;
}

  .header-btn {
    padding: 9px 15px;
    font-size: 13px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .hero-content,
  .hero-image-wrap {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }
  
  .why-section {
    padding: 55px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 24px;
  }
  .products-section {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-product {
    transform: none;
  }

  .product-image-box {
    height: 300px;
  }


  .product-image-box img {
    max-width: 145%;
    max-height: 290px;
  }

  .process-section {
    padding: 60px 0;
  }

  .process-container {
    flex-direction: column;
    gap: 34px;
  }

  .process-image-wrap,
  .process-content {
    width: 100%;
  }

  .process-content {
    text-align: center;
  }

  .process-content h2 {
    font-size: 32px;
  }

  .process-content > p {
    font-size: 16px;
  }

  .process-points div {
    text-align: left;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .contact-content,
  .contact-card {
    width: 100%;
  }

  .contact-content h2 {
    font-size: 32px;
  }

  .contact-card {
    padding: 26px;
  }

  .social-links {
    justify-content: center;
  }

    .site-footer {
    padding-top: 34px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 26px;
  }

  .footer-logo {
    width: 135px;
    margin: 0 auto 14px;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
  }

    .trust-strip-container {
    gap: 14px 24px;
  }

  .trust-strip span {
    font-size: 13px;
  }

  .trust-strip span:not(:last-child)::after {
    display: none;
  }

    .faq-section {
    padding: 60px 0;
  }

  .faq-list {
  max-height: 390px;
  padding-right: 10px;
 }

  .faq-item {
    padding: 22px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

    .site-header.scrolled {
    width: 94%;
    border-radius: 24px;
    margin-top: 8px;
  }

  .site-header.scrolled .site-logo {
    width: 115px;
  }

    .floating-whatsapp {
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
}


    .about-section {
    padding: 60px 0;
  }

  .about-container {
    flex-direction: column;
    gap: 34px;
  }

  .about-content,
  .about-image-wrap {
    width: 100%;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

    #about,
  #why-viraasat,
  #products,
  #process,
  #faq,
  #contact {
    scroll-margin-top: 135px;
  }
  
}
