:root {
  --cream: #fbf6f1;
  --brown: #4f3a2f;
  --accent: #d4862f;
  --accent-dark: #8b4a1e;
}

/* BODY */
body {
  background: var(--cream);
  font-family: "Poppins", sans-serif;
  color: var(--brown);
}
/* Navbar base */
.custom-navbar {
  padding: 16px 0;
  background: #ffffff;
}

/* Logo */
.navbar-brand {
  font-size: 1.5rem;
  color: #8b4a1e;
}

.navbar-brand span {
  color: #d4862f;
}

/* Links */
.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d4862f;
}

/* Button */
.navbar .btn-primary {
  background: linear-gradient(135deg, #d4862f, #8b4a1e);
  border: none;
  border-radius: 50px;
  font-weight: 600;
}

/* Mobile tweaks */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 16px;
  }

  .nav-item {
    margin-bottom: 12px;
  }
}
/* NAVBAR BASE */
.custom-navbar {
  padding: 14px 0;
  transition: all 0.4s ease;
  background: transparent;
}

/* Transparent state */
.custom-navbar.transparent {
  background: transparent;
}

/* Scrolled state */
.custom-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Logo resize on scroll */
.custom-navbar.scrolled img {
  height: 55px;
  transition: 0.3s ease;
}

/* Nav links */
.nav-link {
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
}

/* Dark text after scroll */
.custom-navbar.scrolled .nav-link {
  color: #333;
}

/* Active / hover */
.nav-link:hover,
.nav-link.active {
  color: #d4862f !important;
}

/* Button */
.navbar .btn-primary {
  background: linear-gradient(135deg, #d4862f, #8b4a1e);
  border: none;
  border-radius: 50px;
  font-weight: 600;
}

/* Mobile menu background */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
  }

  .nav-link {
    color: #333;
  }
   .custom-navbar {
    background: transparent;
  }

  .custom-navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  /* Mobile nav links */
  .custom-navbar.scrolled .nav-link {
    color: #333 !important;
  }

  .navbar-toggler {
    border: none;
  }
}
/* Logo clarity */
.nav-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}

/* On scroll – slightly smaller */
.custom-navbar.scrolled .nav-logo {
  height: 48px;
}
/* HERO SECTION */
.hero {
  background-color: #fbf6f1;
  background-image:
    radial-gradient(#e8d8c6 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 110px 0 80px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e6;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Heading */
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

/* Text */
.hero p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #d4862f, #8b4a1e);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.btn-outline-custom {
  background: #fff;
  border: 1px solid #e5d6c6;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 500;
}

/* Right Circle */
/* Right Circle */
.hero-image-circle {
  width: 320px;
  height: 320px;
  border-radius: 90%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image fills the circle */
.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

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

  .hero-circle {
    margin: 50px auto 0;
  }

  .hero h1 {
    font-size: 44px;
  }
}
/* ==============================
   MOBILE OPTIMIZATION
============================== */
@media (max-width: 768px) {

  /* HERO SPACING */
  .hero {
    padding: 80px 0 60px;
  }

  /* BADGE */
  .hero-badge {
    font-size: 13px;
    padding: 5px 12px;
  }

  /* HEADING */
  .hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero h1 span {
    display: inline-block;
  }

  /* TEXT */
  .hero p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-buttons a {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  /* HERO CIRCLE */
  @media (max-width: 768px) {

  .hero-circle {
    width: 220px;
    height: 220px;
    margin-top: 40px;
  }

  .hero-circle img {
    width: 75%;
  }
}

  }

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
}

/* ==============================
   OUR STORY SECTION
============================== */

.our-story {
  background: #fbf6f1;
  padding: 50px 0;
}

/* Small label */
.story-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: #d4862f;
  margin-bottom: 14px;
}

/* Title */
.story-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: #4f3a2f;
  margin-bottom: 18px;
}

/* Divider */
.story-divider {
  width: 90px;
  height: 4px;
  background: #d4862f;
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* Text */
.story-text {
  font-size: 17px;
  line-height: 1.8;
  color: #6b5647;
  margin-bottom: 40px;
}

/* Button */
.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid #e2d3c2;
  border-radius: 10px;
  color: #4f3a2f;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.story-btn:hover {
  background: #d4862f;
  color: #fff;
  border-color: #d4862f;
}
@media (max-width: 768px) {

  .our-story {
    padding: 80px 20px;
  }

  .story-title {
    font-size: 32px;
  }

  .story-text {
    font-size: 15.5px;
  }
}
/* ==============================
   PRODUCTS SECTION
============================== */

.products-section {
  background: #fbf6f1;
  padding: 50px 0;
}

.section-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #d4862f;
  font-weight: 500;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: #4f3a2f;
  margin: 10px 0 18px;
}

.section-divider {
  width: 90px;
  height: 4px;
  background: #d4862f;
  margin: 0 auto;
  border-radius: 2px;
}

/* Product Card */
.product-card {
  background: #fff8ef;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6d7c6;
  height: 100%;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Image Area */
.product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #d4862f, #8b4a1e);
}

.product-image.green {
  background: linear-gradient(135deg, #5a6d3b, #2f4f2f);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* Sanskrit Overlay */
.product-sanskrit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.85);
  font-family: "Playfair Display", serif;
}

/* Card Body */
.product-body {
  padding: 26px;
}

.product-body h4 {
  font-family: "Playfair Display", serif;
  color: #4f3a2f;
  margin-bottom: 12px;
}

.product-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b5647;
}

/* Feature */
.product-feature {
  margin: 14px 0 22px;
  font-size: 14px;
  color: #d4862f;
  font-weight: 500;
}

/* Buttons */
.product-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

.product-btn.outline {
  border: 1px solid #e2d3c2;
  color: #4f3a2f;
  background: transparent;
}

.product-btn.filled {
  background: #d4862f;
  color: #fff;
}

/* Featured Card */
.product-card.featured {
  border: 2px solid #d4862f;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {

  .section-title {
    font-size: 32px;
  }

  .product-image {
    height: 180px;
  }

  .product-sanskrit {
    font-size: 38px;
  }
}

.trust-bar {
  background: #6a4328;
  padding: 70px 0;
}

.trust-item {
  color: #fff;
}

.trust-icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 183, 77, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trust-icon i {
  font-size: 26px;
  color: #ffb74d;
}

.trust-item h6 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .trust-bar {
    padding: 50px 0;
  }
}

.cta-hing {
  padding: 100px 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(180,140,100,0.18) 1px, transparent 0),
    #fbf6f1;
  background-size: 26px 26px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  color: #3b2a20;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: #6b4e3d;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Buttons */
.btn-cta-primary {
  background: linear-gradient(135deg, #c97a1b, #7a2e22);
  color: #fff;
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(122,46,34,0.35);
  color: #fff;
}

.btn-cta-outline {
  border: 1.5px solid #d7c3b2;
  color: #3b2a20;
  padding: 14px 34px;
  border-radius: 12px;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background: #fff;
  border-color: #b89578;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 16px;
  }
}
.site-footer {
  background: #4b2e1e;
  color: #f5eee8;
  padding: 70px 0 30px;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffcc80;
}

.footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffb74d;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #f5eee8;
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffb74d;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.75;
  margin: 0;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0 25px;
    text-align: center;
  }
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #1ebe5b;
  transform: scale(1.08);
  color: #fff;
}

/* Mobile safe spacing */
@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
.contact-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(180,140,100,0.15) 1px, transparent 0),
    #fbf6f1;
  background-size: 26px 26px;
}

/* Left content */
.contact-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #d4862f;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #4f3a2f;
  margin-bottom: 20px;
}

.contact-title span {
  color: #d4862f;
}

.contact-text {
  font-size: 16px;
  color: #6b5647;
  line-height: 1.7;
  margin-bottom: 26px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #4f3a2f;
}

/* Form card */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Inputs */
.contact-card .form-control,
.contact-card .form-select {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #e6d8c8;
  font-size: 14.5px;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: #d4862f;
  box-shadow: none;
}

/* Button */
.btn-contact {
  background: linear-gradient(135deg, #d4862f, #8b4a1e);
  color: #fff;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139,74,30,0.35);
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px;
    text-align: center;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-card {
    padding: 30px 22px;
  }
}

/* Reduce spacing between sections */
/* section {
  margin-top: 40px;
  margin-bottom: 40px;
} */
