html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* === TOP BAR === */
.topbar {
  background: #198754;
  color: #fff;
  font-size: 14px;
  padding: 6px 16px;
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.topbar .contact {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* center on mobile */
}
.topbar .contact a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar .social a {
  color: #fff;
  font-size: 16px;
  margin-left: 8px;
}

/* === NAVBAR === */
nav.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  z-index: 999;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  height: 80px;
  padding: 0 16px;
}
.logo img {
  height: 150px;
  max-height: 150px;
  object-fit: contain;
  margin-top: -35px;
}/* Navbar base */
.navbar {
  position: fixed;        /* Stays at top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;          /* On top of everything */
  background: transparent; /* Transparent at top */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* When scrolled */
.navbar.scrolled {
  background: #fff;       /* Solid background when scrolling */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



/* Desktop links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  padding: 6px 6px;
  position: relative;
}
.nav-links li a::after,
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #229755;
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links li a.active::after,
.mobile-menu a.active::after {
  width: 100%;
}
.nav-links li a:hover { color: #178831; }

/* Toggle Button */
.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* === MOBILE MENU === */
.mobile-menu {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu a {
  text-decoration: none;
  color: #111827;
  padding: 10px;
  font-weight: 600;
  display: block;
  border-radius: 4px;
  transition: 0.2s;
}
.mobile-menu a:hover { background: rgba(11,94,215,0.05); color: #37393c; }
.mobile-menu a.active { color: #24834a; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    color: #0b5e3f;
    position: relative;
    top: -10px;
  }
  .topbar .social { display: none; }
  .nav-inner { height: 60px; }
  .logo img { height: 100px; margin-top: -20px; }
}

/* === NAVBAR ACTIVE LINK === */
.navbar .nav-link.active {
  color: #28a745;
  border-bottom: 2px solid #28a745;
  font-weight: bold;
}

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(90deg, #28a745, #5acb89);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 3s ease-in-out forwards;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* === UNDERLINE ANIMATION === */
.underline-animate::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background-color: #28a745;
  margin-top: 6px;
  transition: width 0.5s ease;
}
.underline-animate:hover::after { width: 60px; }

/* === IMAGE HOVER === */
.img-hover-zoom:hover {
  transform: scale(1.05);
  transition: all 0.5s ease;
}

/* === FLOATING ANIMATION === */
@keyframes float {
  0%   { transform: translateY(0) translateX(0); }
  50%  { transform: translateY(-15px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}
.floating-circle {
  animation: float 3s ease-in-out infinite;
}

/* === FADE UP === */
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up.delay-1 { animation-delay: 0.3s; }
.fade-up.delay-2 { animation-delay: 0.6s; }

/* === TIMELINE === */
.timeline-line {
  width: 4px;
  height: 100%;
  background-color: #28a745;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  position: absolute;
  z-index: 0;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: #28a745;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
.timeline-content {
  position: relative;
  max-width: 350px;
  z-index: 2;
}

/* === PRODUCT BOX === */
.product-box {
  position: relative;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.product-info { position: relative; z-index: 2; transition: opacity 0.3s ease; }
.product-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.product-hover .overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,167,69,0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.btn-square {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.btn-square img { max-width: 60%; max-height: 60%; }
.product-box:hover .product-info { opacity: 0; }
.product-box:hover .product-hover { opacity: 1; }
.product-box:hover img { transform: scale(1.15); }

/* === CARDS (Neumorphism) === */
.card-innovative {
  background: #f8fcf9;
  border-radius: 1.5rem;
  box-shadow: -8px -8px 20px #ffffff, 8px 8px 20px #d1e8db;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.card-innovative:hover {
  transform: translateY(-8px);
  box-shadow: -10px -10px 25px #ffffff, 10px 10px 25px #cfe6d8;
}
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f8fcf9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  box-shadow: -6px -6px 12px #ffffff, 6px 6px 12px #d1e8db;
  transition: all 0.3s ease;
}
.card-innovative:hover .icon-circle {
  transform: scale(1.1);
  color: #1d8a4c;
}
.decor-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #eaf7f0;
  box-shadow: inset -15px -15px 30px #ffffff, inset 15px 15px 30px #c8e2d1;
  animation: float 12s ease-in-out infinite;
  opacity: 0.5;
}

/* === RESPONSIVE FIXES === */
.navbar-brand img {
  height: 120px;
  transition: height 0.3s ease;
}
@media (max-width: 992px) {
  .navbar-brand img { height: 80px; }
  .product-box { min-height: 280px; }
}
@media (max-width: 576px) {
  .navbar-brand img { height: 60px; }
  .product-box { min-height: 220px; }
  .btn-square {
    width: 60px;
    height: 60px;
  }
  .btn-square img { max-width: 50%; }
  .decor-circle { display: none; }
  .timeline-line { left: 20px; }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: flex-start; /* push to the left */
  overflow: hidden;
  color: #fff;
  padding-left: 80px; /* adjust spacing from left */
}

/* Hero image background */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4); /* keep if you want */
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  color: #fff;
  text-align: left;  /* force text to left */
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
    color: #fff;

}

.hero-content p {
  font-size: 1.4rem;
  line-height: 1.6;
    color: #fff;

}
/* ✅ Mobile Optimization */
@media (max-width: 768px) {
  .hero {
    height: auto; /* Let content define height */
    flex-direction: column;
    padding: 20px 0;
  }

  .hero-img {
    height: 300px; /* Fixed image height for mobile */
    object-fit: cover;
    position: relative;
  }

  .hero-overlay {
    height: 300px; /* Match image height */
  }

 .hero-content { position: absolute; /* Overlay on image */ top:10%; /* Adjust vertical position */ left: -1%; /* Start from left side */ transform: none; /* Remove centering transform */ text-align: left; /* Align text to left */ color: #fff; width: 90%; /* Adjust width if needed */ }

.hero-content h1 { color: #fff; font-size: 1.2rem; line-height: 1.3; margin: 0; } .hero-content p { font-size: 0.8rem; margin-top: 5px;
}
}@media (max-width: 768px) {
  .hero, 
  .hero-overlay, 
  .hero-content {
    background: transparent !important;
  }

  body {
    background: #fff; /* or whatever base color you want */
  }
}
