:root{
    --primary-color: #88c542;
    --secondary-color: #4bbc5a;
    --button-background: #39b54a;
    --head-color: #2d6e36;
    --cra-bg-color:#ebf7ed;
    --section-bg-color:#ecf8ed;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Roboto', sans-serif;
}
body{
    margin: 0;
    padding: 0;
   
}
.custom-container{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
   
}
.top-section{
    margin-top: 60px;
}
.head-text{
    font-size:20px ;
    font-family: var(--body-font) ;
    font-weight:600 ;
    color: var(--head-color);
}
.sub-text{
    font-size: 40px;
    font-family: var(--heading-font);
    font-weight: 400;
    color: #606060;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 0px;
}
/* Navbar */
.main-navbar {
  background-color:transparent;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
  position: relative;
  z-index: 10;
}
.main-navbar.navbar-scrolled {
  background-color: #242323;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 160px;
  height: auto;
}
.logo img {
  max-width: 100%;
  height: auto;
}


/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li {
  position: relative;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  /* padding: 8px 12px; */
  font-size: 17px;
  font-family: var(--body-font);
}
.nav-links li a:hover {
  color: #62b120;
}

/* Dropdown container */

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  width: 220px;
  border-top: 2px solid #62b120;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  z-index: 1000;
}


.has-dropdown:hover .dropdown {
  display: block;
}


.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-family: var(--heading-font);
  color: #383737;
  text-decoration: none;
  
  border-bottom: 1px solid #606060; 
  transition: all 0.3s ease;
}


.dropdown li:last-child a {
  border-bottom: none;
}


.dropdown li a:hover {
  background-color: #fff;
  color: #62b120;
 
  border-bottom: 1px solid #62b120; 
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Hero Section */

.hero-section {
  /* background: url('./assets/hero-bg.jpg') no-repeat center center/cover; */
  height: 85vh;
  margin-top: -100px; 
  position: relative;
}
.hero-section .container{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);

}
.hero-text {
  color: white;
  font-family: var(--heading-font);
  /* max-width: 600px; */
}
.hero-text h1 {
  /* font-size: 48px; */
  line-height: 1;
}
.hero-text .bold {
  font-weight: 700;
  font-size: 85px;
}
.hero-text .thin {
  font-weight: 300;
  font-size: 70px;
}
.hero-text .green {
  font-weight: 700;
  color: #62b120;
   font-size: 50px;
}
.hero-text p {
 font-size: 18px;
    margin-top: 40px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* aboutsection */

.about-section {
  background-color: #ffffff;
  padding: 20px 50px 40px;
}


.about-content .abt-img img {
      object-fit: cover;
    width: 100%;
    max-width: 420px;
    height: 385px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.custom-button{
  border-radius: 50px!important;
  font-size: 18px!important;
  font-weight: 500!important;
  padding: 16px 40px!important;
  transition: 0.3s ease-in-out!important;
  background-color: var(--button-background)!important;
  color: #fff!important;
}

.custom-button i {
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}
/* Right content */
.right-abt p {
  font-size: 19px;
  color: #606060;
  letter-spacing: 0.8px;
  line-height: 28px;
  font-weight: 400;
 font-family: var(--body-font);
 
 
}

.right-abt .btn {
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.right-abt .btn i {
  transition: transform 0.3s ease;
}

.right-abt .btn:hover i {
  transform: translateX(4px);
}
.industries-section {
  background-color: #111;
  padding: 60px 20px;
  color: #fff;
}

    .industries-section {
      padding: 50px 20px;
      text-align: center;
    }

    .industries-section h5 {
      color: #267644;
      font-weight: 500;
      margin-bottom: 10px;
    }
    .industry-swiper-2 {
  padding: 50px 0;
  max-width : 1100px;
  margin: 0 auto;
}

.industry-swiper-2 .industry-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.industry-swiper-2 .industry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.industry-swiper-2 .industry-card h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}


.industry-pagination-2 {
  position: static !important; 
  margin-top: 20px;
  padding: 10px 0;
  text-align: center; 
}
.industry-pagination-2 {
  position: static !important;
  margin-top: 40px;
  padding: 10px 0;
  text-align: center;
}

.industry-pagination-2 .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #444;
  opacity: 1;
  margin: 0 6px !important;
}

.industry-pagination-2 .swiper-pagination-bullet-active {
  background: #3bb54a;
}


    /* Hide scrollbar */
    .slider-container::-webkit-scrollbar {
      display: none;
    }

    
  .stats-bar {
    background: #2d6e36;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px 10px;
  }

  .stats-bar .stat {
    font-size: 24px;
    font-weight: 700;
  }

  .stats-bar .label {
    font-size: 14px;
    margin-top: 5px;
  }

  /* @media (max-width: 768px) {
    .swiper-slide {
      width: 80% !important;
    }
  } */
/* counter section */
.counter-section {
  background-color: #39b54a;
  padding: 40px 0;
  color: #fff;
}

.counter-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  gap: 10px;
  padding: 0 20px;
}

.counter-box h2 {
 font-size: 54px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins';
}

.counter-box p {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.counter-wrap .unit {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}
/* why section */
.why-choose{
  margin-top: 20px;
  padding: 60px 30px;
  background-color: var(--section-bg-color);
}
.why-img {
  width: 100%;
  max-width: 500px;
  height: 500px;
  border-radius: 25px;
  margin: 0 auto; 
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.why-content p{
  font-size: 18px;
  color: #606060;
  letter-spacing: 0.8px;
  line-height: 28px;
  font-weight: 400;
 font-family: var(--body-font);
}

.why-card{
  margin-top: 10%;
}
.featured-card{
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  background-color: #fff;
 max-width: 500px;
 width: 100%;
 height: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.why-card-img  {
  width: 80px!important;
  height: 80px!important;
  object-fit: cover!important;
  margin-right: 1rem!important;
}
.why-card-img  img {
  width: 80px!important;
  height: 80px!important;
  
}

.featured-card h6 {
  font-size: 16px;
  font-weight: 500;
  color: #606060;
  font-family: var(--heading-font);
  line-height: 20px;
  letter-spacing: 0.8px;
}

.featured-card p {
 font-family: var(--heading-font);
  font-size: 16px;
   line-height: 160%;
  color: #878787;
}

.desc-text {
   font-family: var(--heading-font);
  font-size: 16px;
   line-height: 160%;
  color: #878787;

}

.project-count {
  font-size: 90px;
  color: #39b54a;
  font-weight: 700;
  margin: 20px 0 0;
}

.project-label {
  font-family: var(--heading-font);
  font-size: 18px;
   line-height: 160%;
  color: #606060;

  margin-bottom: 20px;
}

.custom-img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
}



/* Container Styling */
.how-we-work {
  background-color: var(--section-bg-color);
  padding: 60px 20px;
  
}
.how-containers {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;

}

.how-left {
 width: 100%;
  max-width: 60%!important;
}


.how-right {
  width: 100%;
  max-width: 40%!important;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-card {
  max-width: 450px;
  width: 100%;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.step-badge {
  background-color: var(--button-background);
  color: white;
  font-size: 18px;
  padding: 13px 16px;
  font-weight: 300;
  font-family: var(--heading-font);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.step-content {
  padding: 20px;
}

.step-number {
  font-size: 18px;
  color: #606060;
  margin-bottom: 3px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.step-title {
  font-size: 18px;
    font-weight: 700;
  color: var(--button-background);
   font-family: var(--heading-font);
  margin-bottom: 10px;
}
.step-card .step-badge,
.step-card .step-content {
  display: none;
  transition: all 0.3s ease;
}

.step-card.show-content .step-badge,
.step-card.show-content .step-content {
  display: block;
}

/* Logo Slider */
.client-logo-slider {
  background-color:#f3f1f1;
  padding: 40px 0;
  overflow: hidden;
}

.logo-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 20s linear infinite;
  gap: 60px;
}

.logo-slide img {
  height: 70px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: 0.3s;
}

.logo-slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .logo-slider-track {
    gap: 30px;
    animation-duration: 15s;
  }

  .logo-slide img {
    height: 40px;
  }
  .featured-card{
    height: auto!important;
  }
}

/* Footer Styling */
footer {
  background-color: #212020;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0 40px;
  gap: 0;
}

.footer-col {
  box-sizing: border-box;
  padding: 0 20px;
}

.col-logo {
  width: 30%;
}

.footer-left{
  width: 70%;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col p{
   color: #c7c5c5;
  font-size: 16px;
  font-family: var(--heading-font);
}
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #c7c5c5;
  font-size: 15px;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.footer-col ul li a:hover {
  color:#fff;
}


.footer-logo {
  width: 130px;
  margin-bottom: 20px;
}


.latest-news .news-item {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.news-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.news-cat {
  color: var(--head-color);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.news-title {
  font-size: 14px;
  margin: 2px 0;
  font-weight: 500;
  color: #fff;
}

.news-date {
  font-size: 12px;
  color: #999;
}

.footer-bottom {
  background: #000;
  padding: 10px 10px;
 font-family: var(--heading-font);
  font-size: 14px;
  color: #c5c3c3;
}
.social-icons {
  display: flex;
  gap: 12px;
   flex-wrap: wrap;
}

.social-link {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.social-link i {
  color: #000; 
  font-size: 18px;
  transition: color 0.3s ease;
}


.social-link:hover {
  background-color: #000;
}

.social-link:hover i {
  color: #fff;
}

@media (max-width: 768px) {
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .social-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    padding: 40px 0 30px;
  }

  .footer-col {
    width: 100% !important;
    border: none;
    padding: 20px 0;
  }

  .col-border {
    padding-left: 0;
    border: none;
  }
  .scroll-to-top{
    padding: 15px 20px!important;
    font-size: 20px!important;
  }
}



.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: #2d6e36;
  color: #fff;
  border: none;
  padding: 20px 25px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1000;
  font-size: 22px;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-to-top:hover {
  background-color: #359944;
  transform: translateY(-3px);
}




































/* Responsive Styles */
@media (max-width: 1400px){
  .banner-head{
    margin-top: 20px;
    font-size: 40px!important;
  }
  .hero-text .bold {
  font-weight: 700;
  font-size: 50px;
}
.hero-text .thin {
  font-weight: 300;
  font-size: 40px;
}
.hero-text .green {
  font-weight: 700;
  color: #62b120;
  font-size: 30px;
}
.hero-text p {
  font-size: 13px;
  margin-top: 50px;
  letter-spacing: 1px;
  font-weight: 600;
}
  
}
@media (max-width: 1200px){
  .nav-links {
   gap: 15px;
  }
} 
@media (max-width: 1200px) and (min-width: 992px){
  .nav-container{
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1080px){
  .purpose-btn{
    max-width: 200px;
    width: 100%;
  }
} 

@media (max-width: 991px) {
   .menu-toggle {
    display: block;
    color: #fff;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
  
    background:#fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .has-dropdown .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .has-dropdown .dropdown.open {
    display: block;
  }

  .nav-links li a {
    color: var(--head-color);
  }
  .nav-links li {
    margin-bottom: 10px;
    
  }
  .logo{
   width: 110px; 
  }
  .about-content h2 {
    font-size: 20px;
  }

  .right-abt p {
    font-size: 15px!important;
  }

  .about-content .abt-img img {
    max-width: 100%;
  }
  .industry-container{
    flex-wrap: wrap!important;
  }
  
.industry-list li:hover h4{
  font-size: 30px;
}
.industries-left{
  width: 100%!important;
}
/* .counter-grid{
  gap: 30px;
} */
.counter-box h2 {
  font-size: 40px;
}

.counter-box p {
  font-size: 15px;
  font-weight: 500;
}
 .main-heading {
    font-size: 26px;
  }
  .project-count {
    font-size: 48px;
  }
  .footer-section{
  padding-left: 50px;
  }
.footer-content {
    flex-direction: column;
    padding: 40px 0 30px;
  }

  .footer-left{
    width: 100% !important;
    border: none;
    display: flex;
    flex-direction: column;
  }

  .col-border {
    padding-left: 0;
    border: none;
  }
}



@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #fff;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
  
    background:#fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
   .hero-swiper2-prev,
.hero-swiper2-next {
  width: 20px!important;
  height: 20px!important;
  background-color: #8bc540!important;
  color: #fff;
  margin-top : 40px;
  border-radius: 20%;
}


.hero-swiper2-prev::after,
.hero-swiper2-next::after {
  font-size: 13px;  
}
  .has-dropdown .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .has-dropdown .dropdown.open {
    display: block;
  }

  .nav-links li a {
    color: var(--head-color);
  }
  .nav-links li {
    margin-bottom: 10px;
    
  }
  .sub-text{
    font-size: 30px;
   
  }
  .about-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .about-content .abt-img img {
    margin: 0 auto;
  }
  .industries-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .industry-heading {
    font-size: 24px;
  }

  .industry-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-list li .preview-img {
    margin-top: 10px;
    margin-left: 0;
  }
  
.counter-box h2 {
  font-size: 30px;
}

.counter-box p {
  font-size: 10px;
  font-weight: 400;
}
 .counter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .counter-box h2 {
    font-size: 32px;
  }

   .counter-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .counter-box h2 {
    font-size: 32px;
  }

  .counter-box p {
    font-size: 15px;
  }
  .custom-img{
    max-width: 45%;
    margin: 0 auto;
  }
  .how-container {
    flex-direction: column;
    gap: 40px;
  }

  .how-left,
  .how-right {

    max-width: 100% !important;
    width: 100% !important;
  }

  .step-card {
    max-width: 100%;
  }
  .custom-button {
    font-size: 15px;
    padding: 12px 30px;
    margin-bottom: 20px;
  }
   .why-img {
    max-width: 50%; 
    height: auto;    
  }

  .why-img img {
    height: fit-content;    
  }
  .scroll-to-top{
    padding: 16px 20px;
    font-size: 16px;
  }
}



@media (max-width: 500px){
.hero-text .bold {
  font-weight: 700;
  font-size: 30px;
}
.hero-text .thin {
  font-weight: 300;
  font-size: 20px;
}
.hero-text .green {
  font-weight: 700;
  color: #62b120;
  font-size: 25px;
}
.hero-text p {
  font-size: 13px;
  margin-top: 50px;
  letter-spacing: 1px;
  font-weight: 600;
}

}

