*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1e3a8a; /* deep blue */
  --accent:  #d97706; /* warm orange */
  --dark:    #111827;
  --light:   #f9fafb;
  --muted:   #6b7280;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.9);
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.logo { font-size: 0.7rem; font-weight: 700; color: var(--primary); }
.logo img{
    height: 70px;
    width: 110px;
    display: flex;
    position: relative;
    left: -12px;
}
.navbar ul { list-style:none; display: flex; gap: 1.5rem; }
.navbar a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 20px;    transition: color .2s; }
.navbar a:hover { color: var(--primary); }

/* Dropdown */
.dropdown-toggle::after {
  content: " \f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  margin-left: .35rem; font-size: .6rem;
}
.dropdown {
    display: none;
    flex-direction: column;
  position: absolute; top: 110%; left: 0px;
  background: #fff; min-width: 200px; border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .2s, transform .2s;
  
}
.navbar li {
  position: relative;
}

/* .dropdown li { padding: .75rem 1rem; } */
.dropdown li {
    display: block;
  list-style: none;
  border-bottom: 1px solid #eee;
  padding: .75rem 1rem;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown li a {
  display: block;
  padding: 1px 2px;
  color: #0d0d0d;
  text-decoration: none;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  /* position: relative;
  left: 100px; */
}

.dropdown li a:hover {
  background-color: #f6f0f0;
}

.navbar li:hover > .dropdown {
 display: block; opacity: 1; pointer-events: auto; transform: translateY(0);
}

/* Hamburger for mobile */
.hamburger { display: none; font-size: 1.25rem; cursor: pointer; color: var(--dark); }
@media (max-width: 800px) {
  .navbar ul {
    position: fixed; 
    inset: 0 0 0 40%;
    background: #fff; 
    flex-direction: column; 
    padding-top: 4rem;
    transform: translateX(100%); 
    transition: transform .3s;
    max-width: 100vw;
    overflow-x: hidden
  }
  .navbar ul.show { transform: translateX(0); }
  .dropdown, .navbar li:hover > .dropdown {
    position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none;
  }
  .hamburger { display: block; }
  #nav-menu.show .close-btn {
    display: block; /* only show in mobile when menu is open */
  }
  #nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
  }

  #nav-menu li {
    width: 100%;
    font-size: 1.1rem;
  }

  .close-btn {
    align-self: flex-end;
    margin-bottom: 1rem;
    font-size: 26px;
    font-weight: bold;
    padding: 0;
  }
}

    .close-btn {
      display:  none;
      align-self: flex-end;
      font-size: 24px;
      cursor: pointer;
      margin-bottom: 10px;
    }
/* ---------- HERO ---------- */
/* .hero {
  min-height: 90vh;
  background: url("https://www.svgbackgrounds.com/wp-content/uploads/2021/06/soft-gradient.svg") no-repeat center/cover fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; position: relative;
} */
 .hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}

/* Each slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

/* Active slide is visible */
.slide.active {
  opacity: 1;
}

/* Caption overlay */
.caption {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  max-width: 90%;
}

.caption h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.caption p {
  font-size: 1.1rem;
}

/* CTA button (fixed so it stays across slides) */
.cta-btn {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
}

/* Optional: fade-in caption animation */
.slide.active .caption {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); }
/* .hero-inner { position: relative; max-width: 900px; padding: 2rem; } */
.hero-inner {
  background-color: rgba(0, 0, 0, 0.4); /* optional dark overlay */
  padding: 2rem;
  border-radius: 12px;
}
.hero h1 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); margin-bottom: 1rem; font-weight: 800; }
.hero p  { font-size: 1.125rem; margin-bottom: 2rem; color: #f3f4f6; }
.btn-primary {
  background: var(--accent); color: #fff; padding: .75rem 1.5rem;
  border: none; border-radius: .375rem; font-size: 1rem; cursor: pointer;
  transition: background .2s;
}
.video-background {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /* margin: 0px 20px;
  padding: 0; */
}

.video-background video {
   position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-position: center;
  object-fit: cover;
  width: auto;
  height: auto;
  z-index: -1;

}
/* Caption Slider Container */
.video-caption-slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: rgb(245, 248, 248);
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  z-index: 2;
}
/* Each caption */
.video-caption {
  display: none;
  opacity: 0;
  /* transition: opacity 0.4s ease-in-out; */
  transform: translateX(50px); /* default slide from right */
  transition: none;
}

.video-caption.active {
  display: block;
  opacity: 1;
  animation: slideIn 1s ease forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Introduction */
#introduction {
  background-color: #f8fafc;
  padding: 60px 20px;
  color: #111827;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.intro-container {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

#introduction h1 {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 10px;
  text-align: center;
}

#introduction h3 {
  font-size: 1.4rem;
  color: #d97706;
  text-align: center;
  margin-bottom: 30px;
}

#introduction .lead {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #374151;
}

#introduction h4 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 10px;
  border-bottom: 2px solid #d97706;
  display: inline-block;
  padding-bottom: 4px;
}

.overview, .mission-vision, .capabilities {
  margin-bottom: 40px;
}

.mission-vision ul {
  padding-left: 20px;
}

.mission-vision ul li {
  margin-bottom: 10px;
}

.values {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.values li {
  margin: 4px 0;
  color: #065f46;
  font-weight: 500;
}
.values-image-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.values-text {
  flex: 1 1 300px;
}

.values-text h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111827;
}

.values-text .values {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.values-text .values li {
  margin: 6px 0;
  color: #065f46;
  font-weight: 500;
}

.values-image {
  flex: 1 1 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-blend-mode: White;
  
}

.values-image img {
  max-width: 300px;
  height: auto;
  max-height: 250px;
  border-radius: 10px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}


.btn-primary:hover { background: #b45309; }

/* ---------- GENERIC SECTIONS ---------- */
section { padding: 4rem 1.5rem;  }
section h2 { font-size: 2rem; margin-bottom: 1rem; text-align: center; color: var(--primary); }
section p.lead { text-align: center; max-width: 800px; margin: 0 auto 3rem; color: var(--dark); }

/* ---------- CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  background: #fff; border-radius: .75rem; overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.08); transition: transform .2s;
}
.card:hover { transform: translateY(-6px); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-content { padding: 1.5rem; }
.card-content h3 { margin-bottom: .75rem; color: var(--primary); }

/* ---------- CLIENT LOGOS ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; }
.logos img { width: 120px; opacity: 3.75; transition: opacity .2s; }
.logos img:hover { opacity: 1; }

/* ---------- OUR PRESENCE ---------- */
#presence {
  padding: 4rem 2rem;
  background: #f9fafb;
  text-align: center;
}

.presence-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.plant-locations {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: left;
}

.plant-locations h3 {
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.plant-locations ul {
  list-style: none;
  padding: 0;
}

.plant-locations li {
  background: #fff;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.plant-map {
  flex: 1;
  min-height: 300px;
  min-width: 300px;
  height: 500px;
  padding: 0;
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 5.25%;
}
/* ---------- CONTACT FORM ---------- */
.contact-form { display: grid; gap: 1rem; max-width: 600px; margin: auto; }
.contact-form input, .contact-form textarea {
  padding: .75rem 1rem; border: 1px solid #d1d5db; border-radius: .5rem; font-size: 1rem; resize: vertical;
}
.contact-form button {
  background: var(--primary); color: #fff; border: none; padding: .75rem 1.5rem;
  border-radius: .5rem; cursor: pointer; font-size: 1rem; transition: background .2s;
}
.contact-form button:hover { background: #15327a; }


/* ---------- FOOTER ---------- */
footer { background: var(--dark); color: #9ca3af; padding: 2rem 1.5rem; }
footer h3 { color: #fff; margin-bottom: .75rem; }
footer a { color: #9ca3af; text-decoration: none; display: block; margin-bottom: .5rem; }
footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; max-width: 1100px; margin: auto;
}
.socials { display: flex; gap: 1rem; margin-top: 1rem; }
.socials a { font-size: 1.25rem; color: #9ca3af; transition: color .2s; }
.socials a:hover { color: #fff; }
.copyright { text-align: center; margin-top: 2rem; }


/* product*/
.product-gallery{
  display: flex;
  justify-content: space-evenly;
}
.product-gallery img{
  height: 300px;
  width: 400px;
}