/* ===== 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;
  --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-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: 2.5rem;
}

.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 ===== */
#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: 15px;
    border-radius: 10px;
  }

  .nav-link {
    margin: 10px 0;
  }

  .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 ===== */
.about-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/6129315/pexels-photo-6129315.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-title .highlight {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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); }
}

/* ===== COMPANY INTRODUCTION ===== */
.company-intro {
  padding: 50px 0;
  background: var(--white);
  position: relative;
}

.intro-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-image {
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.intro-image-wrapper:hover .intro-image img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-2);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ===== VISION & MISSION ===== */
.vision-mission {
  padding: 0px 0;
  background: var(--gradient-soft);
}

.vision-card, .mission-card {
  background: var(--white);
  border-radius: 30px;
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.vision-card h3, .mission-card h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.vision-card p, .mission-card p {
  color: var(--gray);
  line-height: 1.7;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray);
}

.mission-list li svg {
  flex-shrink: 0;
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  padding: 50px 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.product-item {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-item:hover::before {
  transform: scaleX(1);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition-bounce);
}

.product-item:hover .product-icon {
  transform: scale(1.1);
}

.product-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: var(--dark);
}

.product-note {
  font-style: italic;
  color: var(--gray);
  font-size: 1rem;
}

/* ===== OUR PROCESS ===== */
.our-process {
  padding: 50px 0;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 4rem 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(159,119,66,0.1);
  border-radius: 20px;
}

.step-icon {
  font-size: 2.5rem;
  margin: 1rem 0;
  transition: var(--transition-bounce);
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--dark);
}

.step-connector {
  flex: 0.08;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: relative;
  z-index: 1;
}

.process-note {
  color: var(--gray);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 50px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card svg {
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: var(--dark);
}

.trust-note {
  font-style: italic;
  color: var(--gray);
  font-size: 1rem;
}

/* ===== INDUSTRIES WE SERVE ===== */
.industries {
  padding: 50px 0;
  background: var(--gradient-soft);
}

.industries-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--white);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.industry-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.industries-note {
  color: var(--secondary);
  font-weight: 500;
}

.industries-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.industries-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.industries-image:hover img {
  transform: scale(1.05);
}

/* ===== SUSTAINABILITY ===== */
.sustainability {
  padding: 50px 0;
  background: var(--white);
}

.sustainability-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.sustainability-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.sustainability-image:hover img {
  transform: scale(1.05);
}

.sustainability-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.sustainability-list {
  list-style: none;
  padding: 0;
}

.sustainability-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

/* ===== BUSINESS DETAILS ===== */
.business-details {
  padding: 80px 0;
  background: var(--gradient-soft);
}

.details-card {
  background: var(--white);
  border-radius: 40px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 15px;
  transition: var(--transition-fast);
}

.detail-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.detail-item svg {
  flex-shrink: 0;
}

.detail-item div {
  font-size: 1rem;
  color: var(--gray);
}

.detail-item strong {
  color: var(--dark);
  font-weight: 600;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 100px 0;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.final-cta::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); }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  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;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.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);
}

.btn-cta-secondary {
  border: 2px solid var(--white);
  color: var(--white);
  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;
  background: transparent;
}

.btn-cta-secondary:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-top: 2rem;
}

/* ===== 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: all 0.3s ease;
}

.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: all 0.3s ease;
}

.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;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }
  
  .step {
    width: 100%;
  }
  
  .industries-list {
    grid-template-columns: 1fr;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-cta-primary,
  .cta-buttons .btn-cta-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .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;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 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);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.products-section {
  padding: 0px 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 5px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.product-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 5px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-title {
  font-size: 25px;
  font-weight: 600;
  color: #333;
}




.btn-cta-nav i {
  margin-right: 6px;
  font-size: 16px;
}


/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  }
}

/* MOBILE FIX (Bootstrap default working) */
/* MOBILE FIX */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none; /* default hidden */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .navbar .dropdown-menu.show {
    display: block; /* click pe open */
  }
}

.dropdown-item:hover {
  background: #966a0d !important;
  color: #ffffff !important;
  padding-left: 25px;
}


.navbar .dropdown-menu {
  pointer-events: auto;
}

/* 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-badge{
  margin-top: 15%;
}

hero-description{
  font-size: 0.9rem !important;
  margin-top: -5px !important;
}

.hero-scroll-indicator{
  display: none !important;
}


.hero-subtitle{
  margin-bottom:1rem;
}

.company-intro {
    padding: 0px 0;
    background: var(--white);
    position: relative;
}

.vision-card, .mission-card {
    background: var(--white);
    border-radius: 30px;
    padding: 0.0rem;
    height: 100%;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

}



/* ================= MOBILE (320px – 550px) ================= */
@media (max-width: 550px) {

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 products per row */
    gap: 12px;
  }

  .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding-bottom: 10px;
  }

  .product-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-title {
    font-size: 13px;
    margin-top: 8px;
    padding: 0 5px;
  }
  .products-section {
    padding: 0px 0px;
}

.why-choose {
    padding: 0px 0;
    background: var(--white);
}

#ab{
  margin-left: 0px !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;
}

 .btn-cta-nav {
        
        text-align: center;
        margin-top: 20px !important;
        margin-left: 70px !important;
    }


    #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;
}

}