/* ===== RESET & VARIABLES ===== */
:root {
  --primary: #435335;
  --primary-dark: #2C3A2A;
  --primary-light: #5A7A48;
  --secondary: #9F7742;
  --secondary-dark: #7D5C33;
  --secondary-light: #C4A16E;
  --accent: #DFCDD8;
  --dark: #1E2A1A;
  --light: #FDF9F2;
  --white: #FFFFFF;
  --black: #0A0F08;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --gradient-1: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-2: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(67,83,53,0.03) 0%, rgba(159,119,66,0.03) 100%);
  --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --shadow-soft: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(159, 119, 66, 0.2);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.2s ease;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.section-subtitle::after {
  content: '';
  position: absolute;
  left: 2.2rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== NAVBAR ===== */

/* ===== NAVBAR ===== */
#mainNavbar {
  padding: 1.2rem 0;
  transition: var(--transition-fast);
  backdrop-filter: blur(0px);
  
}

#mainNavbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
  
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-icon {
  width: 35px;
  height: 35px;
}

.brand-logo {
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-accent {
  color: var(--secondary);
  -webkit-text-fill-color: var(--secondary);
  margin-left: 5px;
}

.nav-link {
  color: var(--secondary-dark) !important;
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.btn-cta-nav {
  background: var(--gradient-2);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 1rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-cta-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-cta-nav:hover::before {
  left: 100%;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}


/* Navbar Background */
#mainNavbar {
background: white;
  padding: 10px 0;
  transition: 0.3s;
  z-index: 999;
}

/* Logo Image */
.brand-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Nav Links */
.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #9F7742;
}
.nav-link {
  
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
 
}


/* Button */
.btn-cta-nav {
  background: #9F7742;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cta-nav:hover {
  background: #435335;
  color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .navbar-collapse {
    
    padding: 25px;
    border-radius: 10px;
  }

  .nav-link {
    margin: 10px 0 !important;
  }

  .btn-cta-nav {
    display: none;
    text-align: center;
    margin-top: 5px !important;
    margin-left: 65px !important;
  }

  .brand-logo-img {
    height: 38px;
  }
}

/* SMALL MOBILE */
@media (max-width: 576px) {
  .brand-logo-img {
    height: 32px;
  }
}

/* ===== HERO SECTION ===== */
.products-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,42,26,0.92) 0%, rgba(67,83,53,0.88) 100%),
              url('https://images.pexels.com/photos/6167436/pexels-photo-6167436.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.badge-line {
  width: 50px;
  height: 2px;
  background: var(--secondary);
  display: inline-block;
}

.hero-badge span {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  animation: bounce 2s infinite;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-scroll-indicator span {
  font-size: 0.8rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== PRODUCTS GRID SECTION ===== */
.products-grid-section {
  padding: 100px 0;
  background: var(--white);
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 6%;
}

/* Product Card */
.product-card {
  perspective: 1000px;
  cursor: pointer;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
  transform: translateY(-10px);
}

.product-card-front {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
}

.product-card:hover .product-card-front {
  box-shadow: var(--shadow-2xl);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  text-align: left;
}

.product-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.product-info p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.btn-details {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100%;
}

.btn-details:hover {
  background: var(--gradient-2);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ===== IMPROVED MODAL STYLES - COMPLETE REDESIGN ===== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal.active {
  visibility: visible;
  opacity: 1;
}

/* Overlay */
.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  cursor: pointer;
  margin-top: 13%;
}

/* ✅ FIXED WRAPPER (CENTER PERFECT) */
.modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
  margin-top: 20%;

  /* Animation */
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.product-modal.active .modal-wrapper {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.modal-close-btn:hover {
  transform: rotate(90deg);
  background: var(--secondary);
  color: var(--white);
}

/* Layout */
.modal-content-layout {
  display: flex;
  height: 100%;
  overflow-y: auto;
}

/* Left Side */
.modal-image-area {
  flex: 1;
  background: linear-gradient(135deg, var(--light), #f5f0e8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.modal-product-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

.modal-product-image:hover {
  transform: scale(1.03);
}

.modal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
}
 
/* Right Side */
.modal-details-area {
  flex: 1;
  padding: 2rem;
  overflow-y: hidden;
  margin-top: -20px;
}

/* WhatsApp Button */
.modal-whatsapp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.modal-whatsapp-btn:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content-layout {
    flex-direction: column;
  }

  .modal-details-area {
    max-height: 400px;
  }
}
/* ===== BULK & EXPORT SECTION ===== */
.bulk-export {
  padding: 100px 0;
  background: var(--gradient-1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bulk-export::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1%, transparent 1%);
  background-size: 50px 50px;
  animation: moveBg 30s linear infinite;
}

@keyframes moveBg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.bulk-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.bulk-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.bulk-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.bulk-feature span {
  color: var(--secondary-light);
  font-weight: bold;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.export-visual {
  text-align: center;
  position: relative;
}

.globe-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  border: 2px solid var(--secondary-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s ease-out infinite;
}

.globe-ring-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spinRing 20s linear infinite;
}

.globe-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--secondary);
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes spinRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.export-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: var(--secondary-light);
}

.stat span:not(.number) {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.03)" d="M10,50 Q30,30 50,50 T90,50"/></svg>');
  background-size: 30px;
  animation: slideBg 20s linear infinite;
}

@keyframes slideBg {
  0% { background-position: 0 0; }
  100% { background-position: 100px 0; }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--secondary);
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.cert-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cert-badges span {
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .products-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .modal-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  
  .modal-image-section {
    min-height: 300px;
    padding: 1.5rem;
  }
  
  .modal-details-section {
    padding: 1.5rem;
  }
  
  .bulk-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .products-container {
    grid-template-columns: 1fr;
  }
  
  .modal-details-section h2 {
    font-size: 1.6rem;
  }
  
  .modal-features ul {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .navbar-collapse {
    background: rgba(30, 42, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-link {
    text-align: center;
    padding: 0.8rem !important;
  }
  
  .btn-cta-nav {
    margin: 1rem auto 0;
    display: inline-block;
    width: fit-content;
  }
  
  .export-stats {
    gap: 1.5rem;
  }
  
  .stat .number {
    font-size: 1.5rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}





/* Nav Links */
.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #9F7742;
}
.nav-link {
  
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
 
}



.btn-cta-nav i {
  margin-right: 6px;
  font-size: 16px;
}




/* ================= DESKTOP HOVER DROPDOWN ================= */
@media (min-width: 992px) {

  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    display: block;
    position: absolute;   /* 👈 important */
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none; /* 👈 important */
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* 👈 enable on hover */
  }
}

/* ================= MOBILE DROPDOWN (CLICK) ================= */
@media (max-width: 991px) {

  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }




  .navbar .dropdown-menu.show {
    display: block;
  }
}


/* ================= DROPDOWN ITEM STYLE ================= */
.dropdown-item {
  padding: 5px 20px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #966a0d;
  color: #ffffff;
  padding-left: 25px;
}


/* PRELOADER FULL SCREEN */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* DOTS */
.dots-loader {
  display: flex;
  gap: 8px;
}

.dots-loader span {
  width: 10px;
  height: 10px;
  background: #9F7742;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

/* DELAY FOR EACH DOT */
.dots-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

/* ANIMATION */
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-10px);
    opacity: 1;
  }
}



@media (max-width: 550px) {


  .hero-scroll-indicator span{
    display: none;
  }


  .products-grid-section {
    padding: 40px 0;
    background: var(--white);
}

.export-visual {
    text-align: center;
    position: relative;
    margin-top: 40px;
}

#ab{
  margin-left: 0px !important;
}
.modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 10;
    margin-top: 20%;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    margin-top: 140px;
}

.btn-cta-nav {
        
        text-align: center;
        margin-top: 20px !important;
        margin-left: 70px !important;
    }

     .nav-link {
        text-align: center;
        padding: 5px !important;
    }

    .navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
    padding: 1px;
}
.brand-logo-img {
        height: 45px;
    }

    .navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: mintcream;
    border-radius: 24px;
}



.hero-badge {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 48px;
}


#rs {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    padding: 10px;
}
}