* {
    box-sizing: border-box;
  }
  body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
    }
    .navbar {
      background: linear-gradient(90deg, #2d442d, #4d724d);
      padding: 15px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo {
      color: white;
      font-weight: 700;
      font-size: 24px;
    }
    .logo span {
      color: #ffd700;
      font-weight: 500;
    }
    .nav-links {
      display: flex;
      gap: 25px;
    }
    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      font-size: 16px;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background: #ffd700;
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after {
      width: 100%;
    }
    /* Hamburger */
    #nav-toggle {
      display: none;
    }
    .nav-icon {
      display: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      .nav-icon {
        display: block;
      }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #3b5e2b;
        margin-top: 10px;
        padding: 10px 0;
      }
      #nav-toggle:checked + .nav-icon + .nav-links {
        display: flex;
      }
      .nav-links a {
        padding: 10px 20px;
      }
    }
    /*About-Us*/
.about-us {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .about-image {
    flex: 1 1 55%;
  }
  .about-image img {
    width: 100%;
    height: auto;
    max-width: 900px;
    border-radius: 8px;
    display: block;
  }
  .about-content {
    flex: 1 1 40%;
    max-width: 550px;
  }
  .about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d442d;
  }
  .about-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
  }
  .read-more-btn {
    background-color: #4d724d;
    color: white;
    border: none;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .read-more-btn:hover {
    background-color: #2d442d;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
    .about-image,
    .about-content {
      max-width: 100%;
      flex: none;
    }
    .about-image img {
      max-width: 100%;
      margin-bottom: 30px;
    }
  }
/*SERVICES*/
 .services-section {
    padding: 50px 20px;
    background: #fff;
  }
  .services-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    padding: 0 0 30px 0;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
  }
  .service-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
  }
  .service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #2d442d;
    margin: 20px 25px 15px 25px;
  }
  .service-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #555;
    margin: 0 25px 25px 25px;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 2;  /* Limit to 2 lines */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .service-readmore-btn {
    align-self: flex-start;
    margin-left: 25px;
    background-color: #4d724d;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .service-readmore-btn:hover {
    background-color: #2d442d;
  }
  .view-all-container {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
  }
  .view-all-btn {
    background-color: #4d724d;
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    display: inline-block;
  }
  .view-all-btn:hover {
    background-color: #2d442d;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .service-card {
      flex: 1 1 calc(50% - 20px);
      max-width: 480px;
    }
  }
  @media (max-width: 600px) {
    .service-card {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  /*CONTACT US*/
  .contact-section {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #2d442d;
  }

  .contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
  }

  .contact-info {
    flex: 1 1 350px;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  }

  .contact-info h2 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 28px;
    border-bottom: 3px solid #4d724d;
    padding-bottom: 8px;
  }

  .contact-info p {
    font-size: 16px;
    line-height: 1.6;
  }

  .info-item {
    margin-top: 20px;
  }

  .info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .contact-form {
    flex: 1 1 400px;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
  }

  .contact-form h2 {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 28px;
    border-bottom: 3px solid #4d724d;
    padding-bottom: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1.8px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    resize: vertical;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #4d724d;
  }

  .contact-form button {
    background-color: #4d724d;
    color: white;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #2d442d;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      gap: 30px;
    }
  }
  
  /*FOOTER*/
  .footer-section {
    background-color: #2d442d;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-logo {
    font-size: 24px;
    font-weight: 700;
  }
  .footer-logo span {
    font-weight: 400;
    color: #ffd700;
  }

  .footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #ffd700;
  }

  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    .footer-links {
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
  }
  .footer-contact p a {
    color: white;
    text-decoration: none;
}
 /*ABOUT US PAGE STYLE*/
 .aboutpage-equal-height {
    max-width: 1000px;
    margin: 60px auto 80px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #2d442d;
  }

  .aboutpage-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2d442d;
  }

  .aboutpage-content {
    display: flex;
    gap: 40px;
    align-items: stretch; /* ensures equal height */
    flex-wrap: wrap;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(45, 68, 45, 0.15);
  }

  .aboutpage-image,
  .aboutpage-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
  }

  .aboutpage-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-right: 1px solid #ddd;
  }

  .aboutpage-text {
    padding: 40px 30px;
    font-size: 18px;
    line-height: 1.7;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .aboutpage-content {
      flex-direction: column;
    }

    .aboutpage-image,
    .aboutpage-text {
      flex: 1 1 100%;
    }

    .aboutpage-image img {
      height: auto;
      border-right: none;
      border-bottom: 1px solid #ddd;
    }

    .aboutpage-text {
      padding: 30px 20px;
      font-size: 16px;
    }
  }
  .map-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
}
.info-item p a {
    color: #2d442d;
    text-decoration: none;
}