body {
   font-family: "Poppins", sans-serif;
  color: #333;
}
p{
  font-size: 18px;
}

/* Sticky Header */
.navbar {
    z-index: 999;
    background-color: #ffffff;
    transition: all 0.4s ease;
}


.navbar-brand img {
    transition: transform 0.4s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 18px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #5a8c41;
}

/* Underline hover animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #5a8c41;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
    left: 20%;
}

/* Active link */
.navbar-nav .nav-link.active {
    color: #5a8c41;
    font-weight: 600;
}

/* Contact button */
.navbar .btn-success {
    background-color: #5a8c41;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.navbar .btn-success:hover {
    background-color: #8bcf6a;
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        background: #ffffff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}


/* Hero */
.hero-section {
  background: linear-gradient(120deg, #5a8c41, #3e7024);
  padding: 100px 0;
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-section p {
  font-size: 18px;
}


.page-section{
  padding: 40px 0;
}

.we-represent {
    background: #f8f9fa;
}

.we-represent h2{
    font-size: 36px;
}


.represent-box {
    background: #fff;
    padding: 20px 20px 10px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.represent-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.represent-logo {
    max-width: 260px;

    height: auto;
    margin-bottom: 15px;
}

.represent-years {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

/* Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .represent-logo {
        max-width: 140px;
    }
}

/* Medium Mobile (361px – 576px) */
@media (min-width: 361px) and (max-width: 576px) {
    .represent-logo {
        max-width: 150px;
    }
}

/* Tablet (577px – 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .represent-logo {
        max-width: 160px;
    }
}

/* Laptop / PC (769px – 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .represent-logo {
        max-width: 180px;
    }
}

/* Large PC / Wide Screen (1201px and above) */
@media (min-width: 1201px) {
    .represent-logo {
        max-width: 260px;
    }
}


.section-even{
    margin:0;
    padding:10px 0;
}

.section-even img{
    margin:0;
    padding:0;
    border-radius:6px;
}

.section-odd{
    margin:30px 0;
    padding:40px 0;
    background:#fbfbfb;
}

.section-odd img{
    margin:0;
    padding:0;
    border-radius:6px;
}

/* Service Cards */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.services-section {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  font-size: 36px;
}

.section-subtitle {
  font-size: 18px;
  color: #6c757d;
}

.service-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-icon {
  min-width: 60px;
  height: 60px;
  background: #5a8c41;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 
        background-color 0.5s ease-in-out,
        transform 0.5s ease-in-out,
        box-shadow 0.5s ease-in-out;
}
.service-box:hover .service-icon {
    background: #8bcf6a;
    transform: scale(1.05);
}

.service-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-content ul {
  padding-left: 18px;
}

.service-content ul li {
  margin-bottom: 6px;
  color: #555;
}

.two-column {
  column-count: 2;
}

@media (max-width: 768px) {
    .service-icon {
        min-width: 45px;
        max-width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
  }

  .two-column {
    column-count: 1;
  }
}
   


.footer {
  background-color: #5a8c41;
  color: white;
}

.letter-spacing {
  letter-spacing: 8px;
}

.follow-us {
  list-style: none;
  padding-left: 0px;
}

.follow-us li{
  margin-bottom: 10px;
}

.follow-us a{
  text-decoration: none;
  color: white;
}

.divider {
  border-top: 8px solid #bbb;
  border-radius: 5px;
  width: 100%;
}

.service {
  background-color: #5a8c41;
  padding: 20px 20px;
  display:inline-block; 
  width: fit-content;
  border-radius: 50%;
  margin-bottom: 10px;
}

ul.goal li::before {
  content: "\2022";
  color: #5a8c41;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

ul.goal {
  list-style: none;
}

ul.goal li {
  margin-bottom: 20px;
}

ul.goal li::before {
  content: "\2022";
  color: #5a8c41;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

.image-div {
  height: 100%;
}
.copyright {
    background-color: #3e7024;
}


#one-more, #two-more, #three-more, #key1-more, #key2-more, #key3-more, #key4-more, #key5-more {display: none;}
