/* GLOBAL RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {

  font-family: Arial, sans-serif;
  background: #f7f7f7;

}


/* HEADER */

header {

  background: #2d6a4f;
  color: white;

  padding: 15px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;

}


.logo {

  font-size: 28px;
  font-weight: bold;

}


nav a {

  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;

}


nav a:hover {

  color: #f4a261;

}



/* HERO SECTION */

.hero {

  height: 500px;

  /* Background image */
  background-image: linear-gradient(rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)),
    url("../images/bgimage.jpg");

  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;

  /* Center text */
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;

}


.hero h1 {

  font-size: 60px;
  margin-bottom: 10px;

}


.hero p {

  font-size: 22px;

}


.btn {

  margin-top: 20px;

  background: #f4a261;

  padding: 14px 28px;

  border: none;
  border-radius: 6px;

  color: white;
  font-size: 18px;

  cursor: pointer;

}


.btn:hover {

  background: #e76f51;

}



/* SECTION */

.section {

  padding: 80px 60px;
  background: white;

}


/* =========================
   ABOUT SECTION
========================= */

.about {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  max-width: 1100px;

  margin: auto;

}


/* ABOUT IMAGE */

.about img {

  width: 40%;

  max-width: 420px;

  border-radius: 14px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}


/* ABOUT TEXT BLOCK */

.about div {

  width: 55%;

}


/* ABOUT TEXT STYLE */

.about p {

  font-size: 18px;

  line-height: 1.8;

  color: #444;

  letter-spacing: 0.4px;

}



/* PRODUCTS */

.products {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

}


.card {

  background: #fafafa;

  padding: 25px;

  text-align: center;

  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}


.card img {

  width: 100%;

  height: 180px;

  object-fit: cover;

  border-radius: 8px;

}



/* CONTACT */

.contact {

  background: #2d6a4f;

  color: white;

  text-align: center;

  padding: 60px;

}



/* FOOTER */

footer {

  background: #1b4332;

  color: white;

  text-align: center;

  padding: 20px;

}



/* MOBILE RESPONSIVE */

@media (max-width: 900px) {


  .products {

    grid-template-columns: repeat(2, 1fr);

  }


  .hero h1 {

    font-size: 40px;

  }


}



/* =========================
   VIEW BUTTON STYLE
========================= */

.view-btn {

  margin-top: 45px;

  background: linear-gradient(135deg, #2d6a4f, #40916c);

  color: white;

  padding: 14px 34px;

  font-size: 17px;

  border: none;

  border-radius: 30px;

  cursor: pointer;

  transition: all 0.3s ease;

  letter-spacing: 0.5px;

}


/* BUTTON HOVER EFFECT */

.view-btn:hover {

  background: linear-gradient(135deg, #1b4332, #2d6a4f);

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);

}


/* GOOGLE MAP CONTAINER */

.map-container {

  margin-top: 40px;

  width: 100%;

  max-width: 900px;

  margin-left: auto;
  margin-right: auto;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}


/* MAP FRAME */

.map-container iframe {

  width: 100%;

  height: 400px;

  border: 0;

}


html {
  scroll-behavior: smooth;
}

/* FLOATING SOCIAL ICONS */

.social-icons {

  position: fixed;

  bottom: 25px;
  right: 25px;

  display: flex;
  flex-direction: column;

  gap: 12px;

  z-index: 999;

}


/* ICON STYLE */

.social-icons a {

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 22px;

  border-radius: 50%;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);

  transition: 0.3s ease;

  text-decoration: none;

}


/* WHATSAPP */

.social-icons .whatsapp {

  background: #25D366;

}


/* FACEBOOK */

.social-icons .facebook {

  background: #1877F2;

}


/* INSTAGRAM */

.social-icons .instagram {

  background: #E4405F;

}


/* HOVER EFFECT */

.social-icons a:hover {

  transform: translateY(-5px) scale(1.1);

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);

}


.hero-content h1 {

  margin-bottom: 15px;

}


.hero-content p {

  margin-bottom: 25px;

  font-size: 22px;

}


.hero-content .btn {

  display: inline-block;

  margin-top: 10px;

}

.about h3 {

  font-size: 26px;

  color: #2d6a4f;

  margin-bottom: 15px;

}


@media (max-width: 900px) {

  .about {

    flex-direction: column;

    text-align: center;

  }

  .about img {

    width: 80%;

  }

  .about div {

    width: 100%;

  }

}

/* =========================
   OUR PARTNERS SECTION
========================= */

.partners-section {

  padding: 80px 60px;
  background: linear-gradient(to bottom, #f9faf7, #ffffff);
  text-align: center;

}


/* PARTNER GRID */

.partners-grid {

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: auto;

}


/* PARTNER LOGOS */

.partner-logo {

  width: 150px;
  height: 100px;
  object-fit: contain;
  padding: 14px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease,
    box-shadow 0.25s ease;

}


.partner-logo:hover {

  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}


/* VIEW BUTTON */

.view-btn {

  margin-top: 45px;
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: white;
  padding: 14px 34px;
  font-size: 17px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;

}


.view-btn:hover {

  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);

}


/* RESPONSIVE */

@media (max-width:1000px) {

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (max-width:600px) {

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-section {
    padding: 60px 20px;
  }

}


/* =========================
   GLOBAL SECTION HEADINGS
========================= */

.section-title {

  font-size: 40px;

  color: #2d6a4f;

  margin: 0 auto 50px auto;

  text-align: center;

  display: block;

  position: relative;

  width: fit-content;

}


/* UNDERLINE ACCENT */

.section-title::after {

  content: "";

  width: 80px;

  height: 4px;

  background: #f4a261;

  display: block;

  margin: 12px auto 0;

  border-radius: 3px;

}

.contact .section-title {

  color: white;

}

/* =========================
   MOBILE NAVBAR SUPPORT
========================= */

.menu-toggle {

  display: none;

  font-size: 26px;

  cursor: pointer;

}


/* MOBILE NAVIGATION */

.menu-toggle {

  display: none;

  font-size: 26px;

  cursor: pointer;

}


/* MOBILE NAVIGATION */

.menu-toggle {

  display: none;

  font-size: 26px;

  cursor: pointer;

}


/* MOBILE NAVIGATION */

.menu-toggle {

  display: none;

  font-size: 26px;

  cursor: pointer;

}


/* MOBILE NAVIGATION */

@media (max-width: 768px) {

  nav {

    position: absolute;

    top: 70px;

    right: 20px;

    background: #2d6a4f;

    width: 220px;

    display: none;

    flex-direction: column;

    padding: 15px 0;

    border-radius: 8px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);

  }

  nav a {

    display: block;

    padding: 12px 20px;

    margin: 0;

  }

  .menu-toggle {

    display: block;

    color: white;

  }

  nav.active {

    display: flex;

  }

}

/* 
@media (max-width: 768px) {

  nav {

    position: absolute;

    top: 70px;

    right: 20px;

    background: #2d6a4f;

    width: 220px;

    display: none;

    flex-direction: column;

    padding: 15px 0;

    border-radius: 8px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);

  }

  nav a {

    display: block;

    padding: 12px 20px;

    margin: 0;

  }

  .menu-toggle {

    display: block;

    color: white;

  }

  nav.active {

    display: flex;

  }

} */