/* ------------------ RESET ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* ------------------ NAVBAR ------------------ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 70px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: auto;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.nav-links a {
  margin-left: 25px;
  text-decoration:none;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  font-family:'Times New Roman', Times, serif;
  font-weight: bold;
}

.nav-links a:hover {
  color: #1b5e20;
  
}

/* ------------------ HERO ------------------ */
.hero {
  height: 75vh;
  background: url("images/background.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-decoration: underline solid red 3px;
}

.hero-overlay p {
  margin-top: 10px;
  font-size: 1.5rem;
  max-width: 600px;
  font-family:'Times New Roman', Times, serif;
  
}

/* ------------------ PAGE HERO ------------------ */
.para {
  text-align: center;
  padding: 30px 10%;
  font-size: 1.3rem;
  background-color: #d2dce1;
  color: #0c0c0c;
  font-style:normal;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.page-hero {
  padding: 40px 10%;
  text-align: center;
  background: linear-gradient(to right, #0f2027, #203a43);
  color: white;
  font-family: 'Times New Roman', Times, serif;
}

.page-hero h1 {
  font-size: 2.4rem;
}
/* ------------------ DIRECTOR SECTION RESPONSIVE ------------------ */



@media (max-width: 768px) {
  .director {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .director-img {
    order: 1;
    margin-bottom: 20px;
  }

  .director-text {
    order: 2;
    max-width: 100%;
  }
}
/* ------------------ SECTIONS ------------------ */
.section {
  padding: 70px 12%;
  text-align: center;
  
}

.section h2 {
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: 'Times New Roman', Times, serif;
  text-decoration: underline solid red 2px;
}

.section p {
  max-width: 900px;
  margin: auto;
  font-size: 1.2rem;
}

.light {
  background: #d2dce1;
}

/* ------------------ OUR STRENGTHS ------------------ */
.strengths-list {
  list-style: none;
  max-width: 900px;
  height: auto;
  margin: 20px auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  
}

.strengths-list li {
  background: #ffffff;
  padding: 18px 22px 18px 52px;
  border-radius: 6px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Green check icon */
.strengths-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1b5e20;
  font-size: 1.2rem;
  font-weight: bold;
}

.strengths-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
  .strengths-list {
    grid-template-columns: 1fr;
  }

  .strengths-list li {
    padding-left: 46px;
  }
}
/* ------------------ OUR CUSTOMERS ------------------ */
.customers-section {
  padding: 70px 12%;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
  font-family: 'Times New Roman', Times, serif;
  text-decoration: underline solid red 2px;
}

/* LOGO CONTAINER */
.customers-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

/* LOGO IMAGES */
.customers-logos img {
  max-width: 180px;     /* controls size */
  max-height: 180px;     /* keeps logos uniform */
  width: auto;
  height: auto;
  object-fit:contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.customers-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* DESCRIPTION TEXT */
.customers-text {
  max-width: 900px;
  margin: auto;
  font-size: 01.2rem;
  line-height: 1.7;
  color: #333;
  
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
  .customers-section {
    padding: 50px 8%;
  }

  .customers-logos {
    gap: 30px;
  }

  .customers-logos img {
    max-width: 140px;
    max-height: 60px;
  }
}

/* ------------------ DIRECTOR SECTION ------------------ */
.director {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 50px 12%;
  background: #2f2f2f;
  color: #ffffff;
}

.director-img {
  flex-shrink: 0;
}

.director-img img {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* text */
.director-text {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.7;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* ------------------ SERVICES ------------------ */
.service {
  display: flex;
  align-items: center;
  gap: 120px;
  padding: 50px 10%;
  background-color: #d2dce1;
}

.service.dark {
  background: #2f2f2f;
  color: #fff;
}

.service-text h2 {
  margin-bottom: 15px;
  color: #154919;
  font-family: 'Times New Roman', Times, serif;
}

.service.dark .service-text h2 {
  color: #6bb56b;
}

.service-text ul {
  margin-left: 18px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

.service-text li {
  margin-bottom: 20px;
}

.explore {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-family:'Times New Roman', Times, serif;
  font-weight: bold;
}
/* ------------------ CAROUSEL ------------------ */
.carousel {
  width: 350px;
  height: 350px;
  position: relative;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 2px;
  
}

.carousel img.active {
  display: block;
}

/* ------------------ PRODUCTS TABLE ------------------ */
.product-table {
  width: 75%;
  margin: auto;
  border-collapse: collapse;
}

.product-table th {
  background: #1b5e20;
  color: white;
}

.product-table th,
.product-table td {
  border: 1px solid #333;
  padding: 12px;
  text-align: left;
}

/* ------------------ FOOTER ------------------ */
footer {
  background: #0d0d0d;
  color: #ddd;
  padding: 40px 8%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

footer h3 {
  margin-bottom: 12px;
}

footer iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
  .service {
    flex-direction: column;
    text-align: center;
  }

  .carousel {
    width: 100%;
    max-width: 350px;
  }

  .navbar {
    padding: 14px 20px;
  }

  .nav-links a {
    margin-left: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
.spacer {
    color: solid white;
    border: 1px solid red;
    height: 30px; 
  }

}

