body {
  scroll-behavior: smooth;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  width: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll */
}

h1,h2,h3,h4,h5 {
  font-family: 'Merriweather', serif;
}

/* Colors */
.text-green { color: #2e5339; }
.text-gold { color: #d4af37; }
.bg-green { background-color: #2e5339; }

/* Logo image styling */
.logo-img {
  height: 50px;   /* adjust logo size */
  width: auto;
  object-fit: contain;
}

/* Optional: hide text if only image logo is used */
.logo-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

/* Default logo */
#siteLogo {
  height: 60px;
  transition: all 0.4s ease-in-out;
}

/* Glow effect when scrolling */
#siteLogo.glow {
  filter: drop-shadow(0 0 12px gold) drop-shadow(0 0 24px goldenrod);
  transform: scale(1.05);
}

/* Glow effect on hover */
#siteLogo:hover {
  filter: drop-shadow(0 0 14px gold) drop-shadow(0 0 28px goldenrod);
  transform: scale(1.08);
}

/* Premium Navbar */
.premium-navbar {
  transition: background 0.6s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
  padding: 15px 0;
}

.premium-navbar.scrolled {
  background: rgba(24, 24, 24, 0.92); /* subtle fade */
  backdrop-filter: blur(6px); /* glass effect */
  -webkit-backdrop-filter: blur(6px); /* Safari support */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

/* Navbar Brand */
.navbar-brand {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  transition: color 0.4s ease, text-shadow 0.6s ease;
}

.text-gold {
  color: #d4af37 !important;
}

/* Glow when scrolled */
.premium-navbar.scrolled .navbar-brand {
  color: #d4af37 !important;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.8),
               0 0 15px rgba(212, 175, 55, 0.6);
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: #ffffff !important;
  margin: 0 12px;
  transition: color 0.3s ease, text-shadow 0.4s ease;
}

/* Animated underline (hidden initially) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

/* Hover effect - gold underline grows */
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hover glow */
.nav-link:hover,
.nav-link.active {
  color: #d4af37 !important;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.8),
               0 0 12px rgba(212, 175, 55, 0.6);
}

/* Premium Button */
.btn-gold {
  background-color: #d4af37;
  color: #1a1a1a;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.btn-gold:hover,
.btn-gold.active {
  background-color: #c49c2b;
  color: #fff;
}

/* Hero */
.hero {
  height: 100vh;
  background: url("../images/hero-bg.png") center/cover no-repeat;
  position: relative;
}
.hero .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}
.hero .container {
  position: relative;
  z-index: 2;
}

/* Fullscreen Section */
.fullscreen-section {
  min-height: 100vh;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-section {
  background: url("../images/about-bg.jpg") no-repeat center center/cover;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
}
.about-section .container {
  position: relative;
  z-index: 2;
}

/* Counters */
.counter {
  font-size: 2.2rem;
  font-weight: bold;
}

/* Why Choose Us Section */
.why-section {
  background: url("../images/why-bg.jpg") no-repeat center center/cover;
  position: relative;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}
.why-section .container {
  position: relative;
  z-index: 2;
}

/* Icon Boxes */
.icon-box {
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}
.icon-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}
.icon-box h5 {
  margin-bottom: 10px;
  color: #f8f9fa;
}
.icon-box p {
  font-size: 0.95rem;
  color: #ddd;
}

/* Products Section */
.products-section {
  min-height: 100vh;
  background: url("../images/products-bg.png") center/cover no-repeat;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250, 248, 245, 0.9); /* light overlay for readability */
  z-index: -1;
}

/* Product Card Styling */
.product-card {
  background: #fff !important;
  border-top: 6px solid #d4af37; /* gold accent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Product Image Styling */
.product-img {
  width: 200px;
  height: 200px;
  object-fit: cover; /* crops but keeps proportions */
  margin: 0 auto;
  border: 3px solid #f0e68c; /* soft gold border */
}

/* Accordion Button */
.accordion-button {
  border-radius: 8px;
  font-size: 1rem;
}

/* Download Button */
.btn-warning i {
  font-size: 1.2rem;
  color: #b22222; /* deep red for PDF icon */
}

/* -------- Trust Section -------- */
.trust-section {
  background: url('../images/trust-bg.png') center/cover no-repeat fixed;
  color: #fff;
  position: relative;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* overlay */
}

.trust-section .container {
  position: relative;
  z-index: 2;
}

.trust-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.trust-icon {
  font-size: 3rem;
  color: gold;
}

/* Processes Section */
.processes-section {
  background: url("../images/process-bg.jpg") no-repeat center center/cover;
  position: relative;
  padding: 100px 0;
}
.processes-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}
.processes-section .container {
  position: relative;
  z-index: 2;
}

/* Timeline Layout */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Horizontal Line */
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 215, 0, 0.5);
  z-index: 1;
}

/* Timeline Steps */
.timeline-step {
  flex: 1;
  min-width: 220px;
  max-width: 250px;
  text-align: center;
  position: relative;
  padding: 0 15px;
  z-index: 2;
}
.timeline-step h5 {
  margin-top: 15px;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 0.95rem;
}

/* Icons */
.timeline-icon {
  width: 80px;
  height: 80px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Contact Section Full Screen */
.contact-section {
  min-height: 100vh;
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  position: relative;
  padding: 80px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* dark overlay for readability */
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.contact-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section .form-control:focus {
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Animations */
.fade-in {
  animation: fadeIn 2s ease-in-out;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity:1;}
}
@keyframes fadeUp {
  to {opacity:1; transform: translateY(0);}
}

#form-status {
  font-weight: 500;
}
#form-status.success { color: #d4af37; }
#form-status.error { color: #ff4d4d; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(145deg, #25D366, #1ebe5d);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.7);
  color: #fff;
}

/* Back to Top Button (Gold Theme) */
.btn-top {
  position: fixed;
  bottom: 90px;   /* above WhatsApp */
  right: 20px;
  background: linear-gradient(145deg, #d4af37, #f5d76e);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show with bounce animation */
.btn-top.show {
  opacity: 1;
  visibility: visible;
  animation: bounceIn 0.6s ease;
}

/* Icon styles */
.btn-top i, .whatsapp-float i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s;
}
.btn-top:hover i, .whatsapp-float:hover i {
  transform: translateY(-2px);
}

/* Bounce animation */
@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  80% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .whatsapp-float,
  .btn-top {
    width: 50px;
    height: 50px;
    font-size: 20px;
    right: 15px;
  }
  .btn-top {
    bottom: 75px;
  }
}

/* Bounce-in animation (optional, from earlier) */
@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  80% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}
.btn-top.show,
.whatsapp-float.show { animation: bounceIn 0.6s ease; }
