* {
  margin: 0;
  padding: 0;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}
button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}
body {
  width: 100%;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #e3e6f3;
  box-shadow: 0 5px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile {
  display: none;
  align-items: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}
#hero {
  background-image: url(img/hero4.png);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h4 {
  padding: bottom 15px;
}
#hero h1 {
  color: #088178;
}
#hero button {
  background-image: url(img/button.png);
  padding: 14px 80px 14px 65px;
  background-color: transparent;
  color: #088178;
  border: 0;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}
.section-p1 {
  padding: 40px 80px;
}
#feature {
  display: flex;
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feature .fe-box {
  width: 180px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 30 30 34 rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}
#feature .fe-box:hover {
  box-shadow: 10 10 54 rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
  width: 100%;
  padding-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h6 {
  background-color: #e3e6f3;
}
#feature .fe-box:nth-child(6) h6 {
  background-color: #fff2e5;
}

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 20%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(70, 62, 212, 0.2);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-image: url(img/banner/b2.jpg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: whitesmoke;
  font-size: 15px;
  font-weight: 400;
}

#banner h2 {
  color: skyblue;
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
}

#banner h2 span {
  color: #088178;
  font-size: 30px;
}

#banner button:hover {
  background: #088178;
  color: #fff;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(img/banner/b17.jpg);
  width: 580px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url(img/banner/b10.jpg);
}

#sm-banner h4 {
  color: white;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background: #088178;
  border: 1px solid #088178;
}

#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(img/banner/b7.jpg);
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  background-image: url(img/banner/b4.jpg);
}
#banner3 .banner-box3 {
  background-image: url(img/banner/b18.jpg);
}
#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url(img/banner/b14.png);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}
#newsletter p span {
  color: #ffbd27;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
}
footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}
footer p {
  font-size: 13px;
  padding: 0 0 8px 0;
}
footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}
footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border: 1px solid #088178;
  border-radius: 4px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

footer .copyright {
  width: 100%;
  text-align: center;
}
#close {
  text-decoration: none;
}

/* for media queries */

@media (max-width: 799px) {
  .section-p1 {
    padding: 40px 40px;
  }
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0 0 0 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }
  #close {
    display: none;
  }
  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }
  #bag {
    display: none;
  }
  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }
  #feature {
    justify-content: center;
  }
  #feature .fe-box {
    margin: 15px 15px;
  }
}

/* MAIN BANNER */
#main_banner {
  padding: 20px;
  background: #f4f8f3;
}

/* FLEX CONTAINER */
.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE SECTION */
.banner-image {
  flex: 1;
}

.banner-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.banner-image img:hover {
  transform: scale(1.04);
}

/* CONTENT SECTION */
.banner-content {
  flex: 1;
  background: #e8f5e9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.banner-content h1 {
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.banner-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.banner-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #2e7d32;
}

/* BUTTON */
.banner-content .btn {
  display: inline-block;
  background: #2e7d32;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.banner-content .btn:hover {
  background: #1b5e20;
}

/* RESPONSIVE (Mobile) */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 26px;
  }
}

/* WHY KAR GREENROOTS SECTION */
#why_kargreenroots {
  background: #f5faf5;
  padding: 60px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-container h2 {
  font-size: 36px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* CARDS */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
  font-size: 20px;
  color: #2e7d32;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-container h2 {
    font-size: 28px;
  }
}

/* b2b and b2c style */

/* BUSINESS SECTION */
#business_section {
  padding: 60px 20px;
  background: #ffffff;
}

.business-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* FULL BOX CLICKABLE */
.business-box {
  text-decoration: none; /* remove link style */
  color: inherit;
}

.box-content {
  background: #f4f8f3;
  padding: 35px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 6px solid #2e7d32;
}

/* HOVER EFFECT */
.business-box:hover .box-content {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* TEXT */
.box-content h2 {
  font-size: 26px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.box-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.box-content ul {
  list-style: none;
  padding: 0;
}

.box-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #2e7d32;
}

/* MOBILE */
@media (max-width: 768px) {
  .business-container {
    grid-template-columns: 1fr;
  }
}

/* PRODUCTS PAGE */
#products_overview {
  padding: 60px 20px;
  text-align: center;
  background: #f4f8f3;
}

#products_overview h1 {
  font-size: 36px;
  color: #2e7d32;
}

.product-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin-inline: auto;
}

.product-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card h3 {
  color: #2e7d32;
}

/* DETAILS */
/* PRODUCT DETAILS */
#product_details {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.product-detail {
  background: #ffffff;
  padding: 35px;
  margin-bottom: 60px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-left: 6px solid #2e7d32;
}

.product-detail h2 {
  color: #2e7d32;
  font-size: 30px;
  margin-bottom: 10px;
}

.product-detail .intro {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* TWO COLUMN INFO */
.product-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-info h4 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.product-info ul {
  padding-left: 18px;
}

.product-info ul li {
  margin-bottom: 8px;
  color: #333;
}

/* MOBILE */

@media (max-width: 768px) {
  .product-info {
    grid-template-columns: 1fr;
  }

  .product-detail h2 {
    font-size: 24px;
  }
}

/* ORDER BOX */
.order-box {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

/* INPUT + SELECT */
.order-fields {
  display: flex;
  gap: 15px;
}

.order-fields input,
.order-fields select {
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  width: 140px;
}

.order-fields input:focus,
.order-fields select:focus {
  border-color: #2e7d32;
}

/* BUTTONS */
.order-buttons {
  display: flex;
  gap: 15px;
}

.btn-cart {
  background: #2e7d32;
  color: #ffffff;
  border: 2px solid #2e7d32;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.buy-btn {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #1b5e20;
}

/* MOBILE */
@media (max-width: 768px) {
  .order-box {
    flex-direction: column;
    align-items: stretch;
  }

  .order-fields,
  .order-buttons {
    width: 100%;
    justify-content: center;
  }

  .order-fields input,
  .order-fields select {
    width: 100%;
  }
}

/* =========================
   ENQUIRY POPUP STYLES
========================= */

#enquiryPopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
}

.popup-box {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-box h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 18px;
  font-size: 22px;
}

/* Inputs */
.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box; /* extra safety */
}

.popup-box textarea {
  min-height: 90px;
  resize: none;
}

/* Focus */
.popup-box input:focus,
.popup-box textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.15);
}

/* Button */
#sendEnquiry {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#sendEnquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.close:hover {
  color: #000;
}

/* Mobile Friendly */
@media (max-width: 480px) {
  .popup-box {
    padding: 22px;
  }
}

/* HEADER */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAVBAR DESKTOP */
#navbar {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* MOBILE ICON */
#mobile {
  display: none;
}

/* =====================
   MOBILE VIEW
===================== */
@media (max-width: 768px) {
  #navbar {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }

  #navbar.active {
    right: 0;
  }

  #mobile {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}

/* BUY NOW */
.buy-btn {
  background-color: #ff9800; /* Orange */
  color: #fff;
}

.buy-btn:hover {
  background-color: #e68900;
}

/* Enquiry Button */
.btn-enquiry {
  background-color: #f1f8e9; /* very light green */
  color: #2e7d32; /* dark green text */
  border: 2px dashed #2e7d32; /* enquiry feel */
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover effect */
.btn-enquiry:hover {
  background-color: #2e7d32;
  color: #ffffff;
  border-style: solid;
  transform: translateY(-2px);
}

/* Active click */
.btn-enquiry:active {
  transform: scale(0.97);
}

#contact-footer {
  background: #0f3d2e;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  color: #9ef5c3;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #9ef5c3;
  padding-left: 4px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #1c5d44;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #9ef5c3;
  color: #0f3d2e;
}

.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  @media (max-width: 600px) {
    padding: 10px;
  }
}

.footer-form input {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
}

.footer-form button {
  padding: 10px 15px;
  border: none;
  background: #9ef5c3;
  color: #0f3d2e;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.footer-form button:hover {
  background: #7fe6ad;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-form {
    flex-direction: column;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ================= HERO ================= */
#about-hero {
  height: 45vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./images/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  color: #fff;
}

.about-hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ================= CONTAINER ================= */
.about-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* ================= INTRO ================= */
#about-intro h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 25px;
}

#about-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: center;
}

/* ================= WHY US ================= */
#about-why {
  background: #fff;
}

#about-why h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.about-card {
  background: #f4f7f1;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}

.about-card i {
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.about-card h4 {
  margin-bottom: 10px;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ================= VISION & MISSION ================= */
#about-vision {
  background: #f9faf7;
}

.about-flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.vision-box,
.mission-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.vision-box h3,
.mission-box h3 {
  color: #2e7d32;
  margin-bottom: 15px;
}

/* ================= STATS ================= */
#about-stats {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box h3 {
  font-size: 36px;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================= CTA ================= */
#about-cta {
  background: #fff;
  text-align: center;
  padding: 70px 20px;
}

#about-cta h2 {
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 15px;
}

#about-cta p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 16px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1b5e20;
}

/* ---------- HERO BACKGROUND ANIMATION ---------- */
.about-page #about-hero {
  position: relative;
  height: 45vh;
  background: url("./images/about-farm.jpg") center/cover no-repeat;
  overflow: hidden;
  animation: bgZoom 18s ease-in-out infinite alternate;
}

/* Dark overlay */
.about-page .about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Zoom animation */
@keyframes bgZoom {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

/* ---------- TEXT ANIMATION ---------- */
.about-page .about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeSlideUp 1.4s ease forwards;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay effect */
.about-page .about-hero-content h1 {
  font-size: 48px;
  animation: fadeSlideUp 1.4s ease forwards;
}

.about-page .about-hero-content p {
  font-size: 18px;
  margin-top: 10px;
  animation: fadeSlideUp 1.8s ease forwards;
}

/* ================= CONTACT PAGE ================= */
.contact-page {
  font-family: Arial, sans-serif;
}

/* HERO */
#contact-hero {
  background: linear-gradient(to right, #2e7d32, #66bb6a);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

#contact-hero h1 {
  font-size: 42px;
}

#contact-hero p {
  margin-top: 10px;
  font-size: 18px;
}

/* CONTACT INFO */
#contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 70px 40px;
  background: #f7faf6;
}

.contact-box {
  background: #fff;
  padding: 35px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-box i {
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.contact-box h3 {
  margin-bottom: 10px;
}

/* FORM */
#contact-form {
  padding: 80px 20px;
  background: #fff;
}

.form-container {
  max-width: 700px;
  margin: auto;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #2e7d32;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-group {
  display: flex;
  gap: 15px;
}

.input-group input {
  flex: 1;
}

.form-container input,
.form-container textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.form-container button {
  background: #2e7d32;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.form-container button:hover {
  background: #256628;
}

/* MAP */
#contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  #contact-hero h1 {
    font-size: 32px;
  }

  .input-group {
    flex-direction: column;
  }
}
