/**
* Template Name: Green
* Template URL: https://bootstrapmade.com/green-free-one-page-bootstrap-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #5cb874;
}

a:hover {
  color: #80c792;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #090909;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #78c48c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  font-size: 15px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #5cb874;
}

#topbar .contact-info i {
  color: #5cb874;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #6f6f6f;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #5cb874;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #5cb874;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #5cb874;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #5cb874;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #5cb874;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #5cb874;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5cb874;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5cb874;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5cb874;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  max-width: 100%;
  max-height: 87vh;
  overflow: hidden;
  position: relative;
}


#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
height: 100%;
}

@media (max-width: 480px) {
    #hero{
    max-height: 300px;
     width: 100%;
     overflow: hidden;
  position: relative;
 background-color: #28a745; 
  }
   #hero .carousel,
 #hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before  {
    background-size: contain; /* Resize background image to fit within viewport */
    background-position: center; /* Center image */
    height: 70vh;
  }
 #hero .carousel-text {
    position: absolute;
  top:20%;
  
  z-index: 2;
  text-align: center;
  color: white;
  width: 90%;
  }
  

  #hero .carousel-text h2 {
     
    font-size: 20px; /* Smaller heading */
    line-height: 1.0; /* Closer line spacing */
  }

  #hero .carousel-text p {
    font-size: 12px; /* Smaller paragraph */
    margin-bottom: 15px; /* Adjust margin */
  }

  #hero .carousel-text .btn-get-started {
    font-size: 12px;
    padding: 8px 20px;
  }
  
  
}


.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  width: 80%;
}

.carousel-text h2 {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-text p {
  font-size: 20px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.carousel-text .btn-get-started {
  margin-top: 20px;
  font-size: 16px;
}

#hero .carousel-item::before {
  content: "";

}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #5cb874;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #5cb874;
}

#hero .btn-get-started:hover {
  background: #6ec083;
}




#hero2 {
  width: 100%;
  height: 70vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}




#hero2 .carousel,
#hero2 .carousel-inner,
#hero2 .carousel-item,
#hero2 .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero2 .carousel-item::before {
  content: "";
  background-color: rgba(45, 103, 60, 0.8);
}

#hero2 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero2 .container {
  text-align: center;
}

#hero2 h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero2 p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero2 .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero2 .carousel-inner .carousel-item,
#hero2 .carousel-inner .active.carousel-item-start,
#hero2 .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero2 .carousel-inner .active,
#hero2 .carousel-inner .carousel-item-next.carousel-item-start,
#hero2 .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero2 .carousel-control-next-icon,
#hero2 .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero2 .carousel-control-next-icon:hover,
#hero2 .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero2.carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero2 .carousel-indicators li.active {
  opacity: 1;
  background: #5cb874;
}

#hero2 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #5cb874;
}

#hero2 .btn-get-started:hover {
  background: #6ec083;
}


@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 66px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 480px) {
  #hero {
    height: 70vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f8fcf9;
}
.section-title3 {
  text-align: center;
  padding-bottom: 10px;

}



.section-title3 h2 {
  font-size: 32px;
  font-weight: bold;

  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color:#5cb874;
}

.section-title3 h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background:#ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title3 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title3 p {
  margin-bottom: 0;
  font-size: 20px;
  color: #919191;
}

.section-title2 {
  text-align: center;
  padding-bottom: 30px;

}

.section-title2 h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
}

.section-title2 h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title2 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title2 p {
  margin-bottom: 0;
  font-size: 20px;
  color: #919191;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

.section-title3 {
  text-align: center;
  padding-bottom: 0px;
  padding-top: 30px;
}

.section-title3 h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title3 h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title3 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title3 p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #5cb874;
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: #5cb874;
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5cb874;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}
.clients .swiper-slide a {
  position: relative;
  display: block;
  z-index: 1; /* Ensure the anchor is clickable and above any other elements */
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  pointer-events: auto; /* Make sure pointer events are enabled for images */
}

.clients .swiper-slide a:hover img {
  opacity: 1; /* Hover effect */
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}








.training .icon-box {
  text-align: center;
  max-width: 500px;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.training .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.training .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.training .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.training .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.training .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.training .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.training .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}


.training .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2B8B27;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5cb874;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 991px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 10px;
  }
}
@media  (min-width: 480px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .cta h3 {
    color: #fff;
    font-size: 10px;
    font-weight: 800;
  }
  
  .cta p {
    color: #fff;
    font-size: 15px;
  }
  
}
@media (max-width: 480px) {
  #cta {
    padding: 20px 10px; /* Reduce padding for mobile */
  }

  #cta .section-title2 h2 {
    font-size: 24px; /* Smaller title for mobile */
  }

  #cta p {
    font-size: 14px; /* Smaller text size */
    padding: 10px 5px; /* Minimal padding */
  }

  #cta .divider {
    margin: 8px 0; /* Smaller margin for divider */
  }
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5cb874;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6ec083;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #5cb874;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
@media (max-width: 991px) {
  /* Two-column layout for medium screens */
   .member {
 
  
  }

  
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #5cb874;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #5cb874;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #5cb874;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5cb874;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #5cb874;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6ec083;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*#footer {
  background:  #5cb874;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #090909;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}
*/

#footer {
  background: #28a745;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3, #footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}

#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 20px 0;
}

#footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

#footer .footer-address, 
#footer .social-links, 
#footer .footer-explore {
  flex: 1;
  max-width: 500px;
}

#footer .social-links {
  text-align: center;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #090909;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .footer-explore .explore-links a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  transition: color 0.3s;
}

#footer .footer-explore .explore-links a:hover {
  color: #090909;
}

#footer .copyright {
  margin-top: 20px;
  font-size: 10px;
}

#footer .credits {
  font-size: 13px;
}
#footer .footer-address{

  font-size: 12px;
  color: #222222;
}
@media (max-width: 768px) {
  #footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #footer h3, #footer h4 {
    font-size: 14px;
  }

  #footer p, #footer .footer-address, #footer .credits {
    font-size: 12px;
  }

  #footer .footer-address, 
  #footer .footer-explore, 
  #footer .social-links {
    max-width: 100%;
    margin-bottom: 20px;
  }

  #footer .social-links a {
    margin-right: 8px;
    width: 32px;
    height: 32px;
  }

  #footer .footer-explore .explore-links a {
    font-size: 12px;
    margin-right: 10px;
  }
}
/*
.stats-section {
            background-color: #f8f8f8;
            padding: 50px 0;
            text-align: center;
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            max-width: 1000px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .stat-box {
            flex: 1;
            margin: 10px;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #339933;
        }
        .stat-label {
            font-size: 18px;
            color: #00000;
            margin-top: 10px;
        }
            */


            /* Stats Section Styling */
            .stats-section {
              padding: 50px 0;
              background-color: #fff;
              text-align: center;
            }
            
            .stats-container {
              display: flex;
              justify-content: space-around;
              flex-wrap: wrap;
            }
            
            .stat-box {
              position: relative; /* Needed for absolute positioning of the line */
              flex: 1 1 22%;
              margin: 0px;
              padding: 10px;
              background-color: #fff;
              border-radius: 5px;
              box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
            }
            
            .stat-number {
              font-size: 48px;
              font-weight: bold;
              color: #000;
              position: relative; /* For positioning the plus sign */
            }
            
            .stat-label {
              font-size: 18px;
              color: #000;
              margin-top: 10px;
            }
            
            /* Vertical Line Animation */
            .stat-line {
              position: absolute;
              top: 50%;
              right: 5px; /* Start off-screen */
              width: 6px; /* Line width */
              height: 80%;
              background-color: green;
              transform: translateY(30%);
              animation: rollIn 0.5s forwards; /* Animation to roll in */
            }
            
            @media (max-width: 768px) {
              .stats-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
              }
            
              .stat-box {
                flex: 1 1 24%; /* Each stat box takes up half of the row */
                margin: 10px 0;
              }
            
              .stat-number {
                font-size: 36px;
              }
            
              .stat-label {
                font-size: 16px;
              }
            
              .stat-line {
                right: 10px;
                height: 50%;
              }
            }
            
            /* For extra small screens like phones */
            @media (max-width: 480px) {
              .stat-box {
                flex: 1 1 24%; /* Stat boxes take up full width */
                margin: 2px 0;
              }
            
              .stat-number {
                font-size: 5px;
              }
            
              .stat-label {
                font-size: 7px;
              }
            
              .stat-line {
                height: 65%;
                bottom: 5px;
              }
            }
            
            /* Keyframes for the line animation */
            @keyframes rollIn {
              0% {
                height: 0; /* Start with height 0 */
              }
              50% {
                height: 100%; /* Rise to full height */
              }
              100% {
                top: 0; /* Position it at the top */
              }
            }
            
            /* Animation delay for each line */
            .stat-line:nth-child(3) {
              animation-delay: 0.2s; /* Adjust delays for staggered effect */
            }
            .stat-line:nth-child(5) {
              animation-delay: 0.4s;
            }
            .stat-line:nth-child(7) {
              animation-delay: 0.6s;
            }
            
.services-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.service-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px; /* Set a fixed height for the frame */
    background-color: #ddd; /* Grey background for the frame */
    overflow: hidden;

    
}

.service-text {
    position: relative;
    flex: 1.5; /* Make the text block wider */
    background-color: rgba(255, 255, 255, 0.9); /* Grey background with slight transparency */
    color: #000;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%; /* Slightly shorter than the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add a shadow for more visual depth */
    max-width: 50%;
}
.service-slide img{

  max-width: 50%; 
    height: auto; /* Maintains aspect ratio */
}

.service-text h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-text a {
    background-color: #FF7D30;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    align-self: flex-start;
}

.service-image {
    position: relative;
    flex: 1; /* The image will be smaller in width compared to the text */
    height: 95%; /* The image is taller than the text */
    object-fit: cover;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: -20px; /* Create an overlap effect */
}

@media (max-width: 430px) {
  .service-slide {
      flex-direction:column; /* Stack items vertically */
      height: auto; /* Allow height to adjust based on content */
    
  }

  .service-text {
      max-width: 100%; /* Take full width */
      padding: 20px; /* Reduced padding for smaller screens */
      height: auto; /* Allow height to adjust with content */
      margin-bottom: 20px; /* Add spacing between text and image */
  }

  .service-image {
      max-width: 100%; /* Full width for image */
      height: auto; /* Allow height to adjust */
      margin-left: 0; /* Remove overlap */
      box-shadow: none; /* Remove shadow for a cleaner look */
  }

  .service-text h3 {
      font-size: 22px; /* Smaller font for headings */
  }

  .service-text p {
      font-size: 15px; /* Smaller font for paragraph */
  }

  .service-text a {
      font-size: 11px; /* Smaller button font size */
  }
}

#our-products {
  padding: 60px 0;
}

.product-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
	height: 600px;
}

.product-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.separator {
  height: 4px; /* Thickness of the line */
  background: #339933; /* Line color */
  margin: 15px 0; /* Space around the line */
}

.product-info {
  margin-top: 15px;
}

.product-info h4 {
  font-size: 25px;
  font-weight: 700;
	color: #339933;
}

.product-info p {
  font-size: 17px;
  color: black;
}
.product-box2 {
  background: #339933;
  border-radius: 8px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
	height: 600px;
}

.product-box2 img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.separator2 {
  height: 4px; /* Thickness of the line */
  background: white; /* Line color */
  margin: 15px 0; /* Space around the line */
}

.product-info2 {
  margin-top: 15px;
}

.product-info2 h4 {
  font-size: 25px;
  font-weight: 700;
	color: white;
}

.product-info2 p {
  font-size: 17px;
  color: white;
}

.news {
  padding: 50px 0;
  background-color: #f5f5f5; /* Light grey background */
  border: 5px solid #339933; /* Green border */
  border-radius: 15px;
  position: relative;
  overflow: hidden;
	max-width: 1300px;
	margin: 0 auto;
}

.oservice {
  padding: 50px 0;
  background-color: #f5f5f5; /* Light grey background */
 
  border-radius: 15px;
  position: relative;
  overflow: hidden;
	max-width: 1300px;
	margin: 0 auto;
}

.news .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.news-item-container {
  background-color: #fff; /* White background for items */
  padding: 20px;
}
/*
.news-item {
  margin-bottom: 30px;
}
*/
.news-image img {
  border-radius: 8px;
  max-height: 300px; /* Adjust as needed */
  object-fit: cover;
}

.news-content {
  padding: 20px;
  
}

.news-content h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 14px;
  color: #555;
}

.news-column {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-item.active .news-column {
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  display: none; /* Hide arrows */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}




/* Contact Us Section: Align Addresses Side by Side */
.footer-contact-container {
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
  justify-content: space-between;
  gap: 20px; /* Provides spacing between items instead of using margin */
  padding: 10px; /* Adds padding to ensure content doesn’t touch the edges */
}

.footer-contact {
  flex: 1 1 calc(50% - 20px); /* Takes up 50% width minus gap for two columns on medium+ screens */
  min-width: 220px; /* Ensures the blocks don’t shrink too small */
  margin: 0; /* Removes margin since gap handles spacing */
}

/* Add media queries for smaller screen adjustments */
@media (max-width: 576px) {
  .footer-contact {
    flex: 1 1 100%; /* Stacks elements on small screens */
    min-width: 100%; /* Ensure full width on mobile */
  }

  .footer-contact-container {
    padding: 5px; /* Reduces padding for very small screens */
  }
}




.footer-section {
  position: relative;
  padding: 30px 0 0px;
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	margin-top: 90px;
  height: 400px;;
	
}

.footer-overlay {

  padding: 60px 20px ;
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.footer-overlay2 {

  padding: 60px 20px ;
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}


.footer-column {
  color: #fff; /* White text */
}

.footer-logo img {
  max-height: 100px;
  max-width: 200px; /* Adjust logo size */
  width: 100%; /* Ensures it scales down proportionally */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 20px;
}

/* Add media queries for smaller screens */
@media (max-width: 768px) {
  .footer-logo img {
    max-height: 80px; /* Reduce logo size for medium/small screens */
    max-width: 150px; /* Slightly smaller max width */
    margin-bottom: 15px; /* Reduce margin for better spacing on smaller screens */
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    max-height: 60px; /* Further reduce logo size for very small screens */
    max-width: 100px;
    margin-bottom: 10px; /* Reduce margin for tight spaces */
  }
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column p, .footer-column ul {
  font-size: 14px;
  color: #fff;
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 5px;
  list-style: none;

}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #28a745; /* Change to green on hover */
  text-decoration: underline;
}

/* Adjust padding for mobile devices */
@media (max-width: 768px) {
  .footer-column {
    margin-bottom: 30px;
  }
}
.cta2 {
  background: #f7f7f7;
  padding: 50px 0;
	margin: 30px 0 0px 0;
}

.cta2 h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.cta2 p {
  color: #666;
  font-size: 16px;
}

.cta2 .cta2-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta2 .subscribe-form {
  display: flex;
  align-items: center;
}

.cta2 .form-control {
  padding: 10px;
  font-size: 14px;
  width: 70%;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 10px;
}

.cta2 .cta2-btn {
  background-color: #FF7D30;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
}

.cta2 .cta2-btn:hover {
  background-color: #EF5F0A;
}

@media (max-width: 768px) {
  .cta2 .form-control {
    width: 100%;
    margin-bottom: 10px;
  }

  .cta2 .cta2-btn {
    width: 100%;
  }

  .cta2-btn-container {
    margin-top: 15px;
  }
}

.technical-support-section {
  background-color: #28a745; /* Green background */
  padding: 50px 0;
  color: #fff;
	margin-top: 50px;
}

.technical-support-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.technical-support-section p {
  font-size: 16px;
  margin-bottom: 30px;
}

.technical-support-section .btn-contact-us {
  background-color: #FF7D30;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.technical-support-section .btn-contact-us:hover {
  background-color: #EF5F0A;
}

.technical-support-section .img-fluid {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .technical-support-section .row {
    text-align: center;
  }
  .technical-support-section .btn-contact-us {
    display: inline-block;
    margin-top: 20px;
  }
}
.our-story-section {
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  height: 75vh;

}


.our-story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  Max-width: 100%;
  height: 100%;
  z-index: 1;
}

.our-story-section .container {
  position: relative;
  z-index: 2;
}

.our-story-section h2 {
  font-size: 42px;
  font-weight: bold;
  
}

.our-story-section p {
  font-size: 18px;
  margin: 20px 0;
  
}

@media (max-width: 991px) {
    .our-story-section {
    
    height: 100%;
  
  }
  .our-story-section h2 {
    font-size: 20px; /* Reduced font size for mobile */
    text-align: center;
  }

  .our-story-section p {
    font-size: 15px; /* Smaller font size for readability */
    text-align: justify; /* Optional for a cleaner look */
    margin: 5px 0;
  }

  .our-story-section .container {
    padding: 10px 15px; /* Adjusts padding to fit mobile screens */
  }
}

@media (max-width: 480px) {
    #our-story-section {
        height:300px;
    background-size: contain; /* Scale image to fit smaller screens */
   
  }
  .our-story-section h2 {
    font-size: 20px; /* Further reduce for very small screens */
  }

  .our-story-section p {
    font-size: 12px; /* Further reduced for readability */
  }
}

.btn-get-started {
  padding: 10px 25px;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.4s ease;
}
.vision {
  padding: 60px 0;
  background: #f9f9f9;
}

.vision .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.vision .vision-box {
  display: flex;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.vision .vision-box:before,
.vision .vision-box:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 50px;
  height: 50px;
  z-index: 1;
}

.vision .vision-box:before {
  top: -25px;
  left: -25px;
  border-top: 5px solid #28a745; /* Opposite corner border color */
  border-left: 5px solid #28a745;
}

.vision .vision-box:after {
  bottom: -25px;
  right: -25px;
  border-bottom: 5px solid #28a745;
  border-right: 5px solid #28a745;
}

.vision .icon {
  flex: 1;
  max-width: 80px;
  color: #28a745;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.1);
  margin-right: 20px;
}

.vision .vision-text {
  flex: 4;
}

.vision .vision-text h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.vision .vision-text p {
  font-size: 16px;
  color: #666;
}
.mission {
  padding: 60px 0;
}

.mission .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.mission .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission .section-title p {
  font-size: 16px;
  color: #555;
}

.mission-box {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.mission-box .icon {
  flex: 0 0 80px;
  max-width: 80px;
  height: 80px;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 40px;
  margin-right: 20px;
}

.mission-box .mission-text {
  flex: 1;
}

.mission-box .mission-text h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.mission-box .mission-text ul {
  list-style: none;
  padding: 0;
}

.mission-box .mission-text ul li {
  margin-bottom: 15px;
  font-size: 16px;
}

.mission-box .mission-text ul li strong {
  color: #28a745;
}

.team {
  padding: 60px 0;
  background: #f9f9f9;
}

.team .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.team .section-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.team .section-title p {
  font-size: 16px;
  color: #555;
}

.team .member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  position: relative;
}

.team .member img {
  width: 100%;
  border-radius: 10px;
}

.team .member h4 {
  font-weight: 700;
  margin: 10px 0 5px 0;
  font-size: 22px;
  color: #333;
}

.team .member span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #777;
}

.team .member p {
  font-size: 14px;
  color: #555;
  margin: 15px 0 20px 0;
}

.team .social {
  margin-top: 15px;
}

.team .social a {
  color: #555;
  transition: 0.3s;
  margin: 0 10px;
}

.team .social a:hover {
  color: #28a745;
}
#services-carousel-indicators {
  position: absolute;
    bottom: -50px; /* Position the indicators below the content */
    left: 36%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px; /* Space */
}
#services-carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background:gray;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#services-carousel-indicators li.active {
  opacity: 1;
  background: #5cb874;
}
#core-values .row {
  display: flex;
  justify-content: center; /* Center the core values */
  flex-wrap: wrap; /* Wrap items to the next line if needed */
}

.icon-box {
  position: relative;
  margin: 20px;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer; /* Change cursor to pointer on hover */
}

.icon-box:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Optional: Connecting lines (add pseudo-elements) */
.icon-box::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 50%;
  background: green;
  top: 100%; /* Position at the bottom */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
}

.icon-box:last-child::after {
  display: none; /* Hide the line after the last item */
}

/* General member section */
/* Green link for viewing full bio (without underline) */



.view-bio-link {
  color: black;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;  /* Removes underline */
}

.view-bio-link:hover {
  text-decoration: none;  /* Ensures no underline on hover */
}

.bio-line {
  width: 15%;
  height: 3px;
  background-color: #339933;
  margin:3px auto;
}

/* Modal Styling */
.bio-modal {
  display: none;  /* Hidden by default */
  position: absolute;  /* Stays in the current section */
  z-index: 10;
  width: 100%;
  padding: 20px;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.bio-modal-content {
  background-color: white;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.close {
  color: #aaa;
  float: right;
  font-size: 100px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

.bio-header {
  text-align: left;
  margin-bottom: 20px;
  
}

.bio-header h3 {
  margin: 0;
  font-size: 24px;
  color: #000;
}

.bio-header span {
  display: block;
  font-size: 16px;
  color: #000;
}

.bio-body {
  overflow: hidden; /* Ensure content flows nicely */
}

.bio-text {
  width: 100%; /* Ensures text spans the entire width */
  overflow: hidden; /* Prevents text from flowing under the image */

}

.bio-text p {
  line-height: 1.5;
  font-size: 16px;
  text-align: justify; /* Optional: for justified text */
}

.bio-image {
  float: right; /* Float the image to the right */
    width: 20%; /* Adjust based on your preferred image size */
    /* Adds space between image and text */
    margin-bottom: 15px;
}

.bio-image img {
  width: 50%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.bio-content {
  overflow: hidden; /* To clear floats */
}
.bio-content p {
  text-align: justify; /* Optional: to make the text look neater */
}
/* Styles for the Geoservices Section */
/* Styles for the Geoservices Section */
.geoservices-section {
  background-color: #339933; /* Green background */
  padding: 80px 0;
  position: relative;
  text-align: center;
  overflow: hidden; /* Ensures the lines don't overflow the section */
}

.geoservices-section h2 {
  font-size: 48px;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 2; /* Keeps text above decorative elements */
}

.geoservices-section:before,
.geoservices-section:after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2); /* Faded grey/white color */
  height: 2px;
  width: 60%;
}

.geoservices-section:before {
  top: 25%;
  left: 10%;
}

.geoservices-section:after {
  bottom: 20%;
  right: 10%;
}

/* Additional scattered lines */
.geoservices-section .line-1,
.geoservices-section .line-2,
.geoservices-section .line-3 {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2); /* Faded white/grey */
  height: 2px;
  width: 40%;
}

.geoservices-section .line-1 {
  top: 40%;
  left: 20%;
}

.geoservices-section .line-2 {
  bottom: 30%;
  left: 30%;
  transform: rotate(45deg); /* Diagonal line */
}

.geoservices-section .line-3 {
  top: 70%;
  right: 20%;
  transform: rotate(-45deg); /* Diagonal line in the opposite direction */
}
/* General Styles */
.services-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.service-item {
  margin-bottom: 60px;
  position: relative;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

/* Text Area Styling */
.service-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-get-in-touch {
  background-color: #FF7D30;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.btn-get-in-touch:hover {
  background-color: #287328;
  color: white;
}

/* Gallery Styling */
.service-gallery {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.service-gallery .gallery-img {
  width: 23%;
  height: auto;
  border-radius: 5px;
}

/* Service Styles */
.service-style-1 img {
  max-width: 100%;
}

.service-style-2 {
  background-color: #339933;
  color: white;
  padding: 40px;
}

.service-style-2 h3, .service-style-2 p {
  color: white;
}


.service-style-3 img {
  max-width: 100%;
}
.service-style-3 {
  background-color: #fff;
  padding: 40px;
}

.img-overlay {
  position: relative;
  z-index: 1;
  max-width: 110%;
  transform: translateX(-30px);
}

.service-content {
  z-index: 2;
}

.service-style-4 {
  background-color: #339933;
  color: white;
  padding: 40px;
}

.service-style-4 h3, .service-style-4 p {
  color: white;
}

.service-style-5 {
  background-color: #339933;
  color: white;
  padding: 40px;
}



/* Responsive */
@media (max-width: 768px) {
  .service-item .row {
    flex-direction: column;
  }

  .service-gallery .gallery-img {
    width: 23%;
    margin-bottom: 15px;
  }

  .img-overlay {
    transform: none;
  }
}
#products .icon-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

#products .icon {
  margin-bottom: 15px;
}

#products .icon i {
  font-size: 80px;
  color: #007bff; /* Default color for icons */
}

#products .iconbox-blue .icon i {
  color: #1f77b4; /* Equipment icon color */
}

#products .iconbox-orange .icon i {
  color: #ff7f0e; /* Software icon color */
}

#products .iconbox-teal .icon i {
  color: #2ca02c; /* Multiclient Data icon color */
}

#products h4 a {
  color: #333;
  transition: color 0.3s ease-in-out;
}

#products h4 a:hover {
  color: #007bff;
}

#products p {
  margin-bottom: 0;
  font-size: 15px;
  color: #777;
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}


#text-image-section {
  margin: 40px 0;
}
#text-image-section .text-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}
#text-image-section ul {
  padding-left: 20px;
  list-style-type: disc;
}
#text-image-section li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
}
#text-image-section img {
  border-radius: 10px;
}
.icon-box {
  cursor: pointer;
}

.modal-dialog {
  transition: all 0.3s ease;
}

.modal-backdrop {
  display: none; /* This ensures the hover effect doesn't create a backdrop */
}
/* Hide the popup by default */
.popup-content {
  display: none;
  position: absolute;
  top: 100%; /* Adjust depending on your layout */
  left: 0;
  background-color: #fff;
  padding: 20px;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* When hovering over the parent box, show the popup */
.training-box:hover .popup-content {
  display: block;
}

/* Additional styling for better visual presentation */
.training-box {
  position: relative;
  cursor: pointer;
  padding: 20px;
  margin-bottom: 30px;
}

.icon-box h4 a, .icon-box h5 a {
  color: #333;
  text-decoration: none;
}

.icon-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-content h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

.popup-content p {
  margin-bottom: 0;
}
/* Hide the hover-details by default */


.styled-section {
  background-color: white; /* White background */
  border: 2px solid #28a745; /* Green border */
  border-radius: 10px; /* Rounded corners for modern look */
  padding: 20px; /* Padding inside the box */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-size: 14px; /* Adjusting font size */
  line-height: 1.6; /* Increased line height for readability */
}

.styled-section ul {
  list-style-type: none; /* Remove default bullet points */
  padding-left: 0; /* No left padding */
}

.styled-section ul li {
  margin-bottom: 10px; /* Space between list items */
}

.styled-section ul ul {
  margin-top: 10px; /* Space between nested list */
  margin-bottom: 10px; /* Space after nested list */
  padding-left: 20px; /* Indent nested list */
}

.styled-section ul ul li {
  list-style-type: disc; /* Disc bullets for sub-list */
}

.styled-section strong {
  color: #28a745; /* Green color for strong emphasis */
}
.green-section {
  background-color: #28a745; /* Green background */
  color: white; /* White text */
  border: 2px solid #1e7e34; /* Slightly darker green border for contrast */
  border-radius: 10px; /* Rounded corners for modern look */
  padding: 15px; /* Padding inside the box */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
  font-size: 14px; /* Adjust font size */
  height: 100%;
}

.green-section h3 {
  font-size: 20px;
  margin-bottom: 10px; /* Spacing below heading */
}

.green-section h5 {
  color: #000; /* White text for h5 */
  font-size: 17px;
  margin-bottom: 10px; /* Spacing below subheading */
}

.green-section p {
  font-size: 13px;
  margin-bottom: 0; /* No extra space below the paragraph */
  color: white;
}

.green-section strong {
  color: #fff; /* White text for strong elements */
}

.local-content-section {
  background-color: #fff; /* White background for the section */
  padding: 20px 0; /* Padding for the section */
  
}
.text-content{
  background-color: #28a745; /* Green background */
  color: white; /* White text */
  border: 2px solid #1e7e34; /* Slightly darker green border for contrast */
  border-radius: 10px; /* Rounded corners for modern look */
  padding: 15px; /* Padding inside the box */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
  font-size: 14px; /* Adjust font size */
  height: 100%;
}
.text-content5{
  
  color: black; /* White text */
  
  padding: 15px; /* Padding inside the box */
 
  font-size: 15.5px; /* Adjust font size */
  height: 100%;
}

.text-content2{
  background-color: #28a745; /* Green background */
  color: white; /* White text */
  border: 2px solid #1e7e34; /* Slightly darker green border for contrast */
  border-radius: 10px; /* Rounded corners for modern look */
  padding: 15px; /* Padding inside the box */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
  font-size: 12px; /* Adjust font size */
  max-height: 650px;
  position: relative;
  flex-direction: column;
}
.text-content2 h3 {
  color: white; /* Green for subsection titles */
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
}
.text-content2 h5 {
  color: white; /* Green for subsection titles */
  font-size: 13px;
  margin-bottom: 15px;
  text-align: center;
}

.text-content2 p {
  font-size: 16px;
  color: #fff; /* Dark gray for paragraph text */
  text-align: center;
}
@media (max-width: 991px) {
  .text-content2 {
    padding: 10px;
    font-size: 11px;
    max-height: 500px;
    overflow-y: auto;
  }

  .text-content2 h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .text-content2 h5 {
    font-size: 12px;
  }

  .text-content2 p {
    font-size: 14px;
    text-align: left; /* Align text to left for readability */
  }
  
 .text-content2 .read-more-btn4 {
    width: 100%;
    height: auto;
    font-size: 12px;
    padding: 10px 0;
    margin-left: 0; /* Center alignment on smaller screens */
  }
}

@media (max-width: 480px) {
  .text-content2 {
    padding: 8px;
    font-size: 10px;
    max-height: 400px;
    border-radius: 8px;
    margin-bottom: 8px;
    max-width: 80%;
    margin: 0 auto 8px auto; 
  }

  .text-content2 h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .text-content2 h5 {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .text-content2 p {
    font-size: 13px;
  }
.text-content2 .read-more-btn4 {
    font-size: 12px;
    padding: 8px 0;
    width: 100%;
    margin-left: 0; /* Ensure full-width on the smallest screens */
  }
}
.section-title h2 {
  text-align: center;
  color: #28a745; /* Green text for the section title */
  margin-bottom: 40px;
}

.text-content h3 {
  color: white; /* Green for subsection titles */
  font-size: 24px;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 16px;
  color: #333; /* Dark gray for paragraph text */
}

.image-stack {
  position: relative;
}

.stacked-image {
  border: 3px solid #28a745; /* Green border for images */
  border-radius: 10px; /* Rounded corners for images */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow for images */
width: 100%;
}

.mb-3 {
  margin-bottom: 20px; /* Spacing between stacked images */
}

@media (max-width: 768px) {
  .local-content-section .row {
    flex-direction: column-reverse;
  }
}
.careers-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.section-title h2 {
  color: #28a745;
  text-align: center;
  margin-bottom: 40px;
}

.job-listing {
  border: 1px solid #28a745;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-listing h4 {
  color: #28a745;
  font-size: 20px;
}

.company-culture {
  background-color: #28a745;
  color: white;
  padding: 40px;
  border-radius: 10px;
}

.php-email-form {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.php-email-form label {
  font-weight: bold;
}

.php-email-form button {
  background-color: #28a745;
  color: white;
  border: none;
}
.no-jobs-message {
  background-color: #f8f9fa;
  border: 2px solid #28a745;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin-top: 30px;
 
}

.no-jobs-message h3 {
  color: #6c757d; /* Muted color for the message */
}

.no-jobs-message p {
  font-size: 18px;
  color: #343a40; /* Slightly darker text */
}

.no-jobs-message .btn-success {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 20px;
}
.equipment-section {
  background-color: #fff;
  padding: 50px 0;
}

.equipment-text h2 {
  color: #28a745; /* Green heading */
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 25px;
}

.equipment-text p {
  font-size: 16px;
  color: #343a40; /* Darker text for readability */
  margin-bottom: 20px;
}

.equipment-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between image items */
}

.equipment-item {
  display: flex;
  flex-direction: column;
  width: 31%; /* Two items per row */
  margin-bottom: 20px;
  background-color: #f8f9fa;
  padding: 10px;
 
  border-radius: 8px; /* Modern rounded corners */
}
@media (max-width: 480px) {
  .equipment-text h2 {
    font-size: 20px; /* Smaller heading */
  }

  .equipment-text p {
    font-size: 14px; /* Further reduction in text size */
  }

  .equipment-item {
    width: 33%; /* Stack items in a single column */
    padding: 2px; /* Reduced padding for smaller screens */
    margin-bottom: 10px;
  }

  
}

  .equipment-images {
   padding:0px;
  }
}

.logo-container {
  width: 100%;
  height: 50px; /* Adjust height as needed for logos */
  margin-bottom: 10px;
}

.logo-img {
  width: 60%;
  height: 60%;
  object-fit: contain; /* Keep the logo inside the container */
}

.equipment-img {
  width: 100%;
  height: 150px; /* Adjust height as needed for equipment images */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.description {
  text-align: left;
}

.description p {
  font-size: 14px;
  color: #6c757d; /* Muted text color for descriptions */
  margin: 0;
}

.description strong {
  color: #343a40; /* Bold description title */
}
.equipment-item2 {
  display: flex;
  flex-direction: column;
  width: 40%; /* Two items per row */
  margin-bottom: 20px;
  background-color: #f8f9fa;
  padding: 10px;
 
  border-radius: 8px; /* Modern rounded corners */
}
.equipment-img2 {
  width: 100%;
  height: fit-content;/* Adjust height as needed for equipment images */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.equipment-item3{
  display: flex;
  flex-direction: column;
  width: 25%; /* Two items per row */
  margin-bottom: 20px;
  background-color: #f8f9fa;
  padding: 10px;
 
  border-radius: 8px; /* Modern rounded corners */
}
/* Core Values Section */
.services2 {
  position: relative;
  padding: 50px 0;
  background-color: #fff;
}

.core-values2-container {
  position: relative;
  z-index: 1;
}

.core-value2 {
  position: relative;
  width: 400px;
  text-align: center;
  background-color: #f8f9fa;
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid #28a745; /* Green border */
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.core-value2:hover {
  transform: scale(1.05);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #28a745; /* Green icon */
}

h4 a {
  font-size: 22px;
  font-weight: bold;
  color: #343a40;
  text-decoration: none;
}

p {
  font-size: 14px;
  color: #6c757d;
}

/* Connecting Line with Arrow Animation */
.connecting-line {
  position: absolute;
  top: 70%;
  left: 5%;
  width: 90%;
  height: 5px;
  background: linear-gradient(to right, #28a745 50%, transparent 50%) 0 0 / 200% 100%;
  background-image: linear-gradient(90deg, #28a745 50%, transparent 50%);
  z-index: 0;
  animation: moveArrow 10s infinite linear;
}

/* Arrow Movement Animation */
@keyframes moveArrow {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

/* Dashed Curved Connections */
.core-values2-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 5px;
  border-top: 2px dashed #28a745;
  z-index: -1;
}

/* Individual Core Value Line Animation */
.core-value2:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 150%;
  height: 5px;
  border-top: 2px dashed #28a745;
  transform: rotate(20deg);
}

.core-value2:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 150%;
  height: 5px;
  border-top: 2px dashed #28a745;
  transform: rotate(-20deg);
}
.news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}



.news-content2 {
  position: relative;
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}

.read-more-btn2 {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.read-more-btn2:hover {
  background-color: #218838;
}
.read-more-btn3 {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  width: 200px;
  height: 50px;
}

.read-more-btn3:hover {
  background-color: #FF7D30;
}
.read-more-btn4 {
  background-color: white;
  color:#28a745;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  width: 150px;
  height: 50px;
  margin-left: 60px;
  position: relative;
 
}

.read-more-btn5 {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  width: 200px;
  height: 50px;
}

.read-more-btn5:hover {
  background-color: #FF7D30;
}


.read-more-btn4:hover {
  background-color: #FF7D30;
  color: white;
}

.more-text {
  margin-top: 10px;
  transition: max-height 0.3s ease-in-out;
}

.more-text p {
  margin: 0;
}
.news-image {
  width: 100%; /* Make the image container responsive */
  height: 250px; /* Set a fixed height for all images */
  overflow: hidden; /* Hide overflow to ensure no part of the image goes outside the container */
  border-radius: 10px; /* Optional: Add rounded corners for a modern look */
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container, maintaining aspect ratio */
  object-position: center; /* Center the image inside the container */
}
.divider4 {
  height: 4px; /* Thickness of the border */
  background-color: green; /* Color of the divider */
  width: 100%; /* Divider should span the full width */
  margin: 20px 0; /* Space between sections */
  
}

/* Section Styling */
.local-content-section {
  padding: 0px 0;
  background-color: #f4f4f4;
  position: relative;
  width: 100vw;
}

/* Header and Arrows */
.content-header {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

.navigation-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrow-btn {
  background-color: #28a745;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.arrow-btn:hover {
  background-color: #218838;
}

/* Slider Content */
.content-slider {
  padding: auto;
  overflow: hidden;
  position: relative;
  height: auto;
 max-width: 100vhw;
}


.content-item {
  max-width: 100vhw;
  display: none;
  padding: 0px 0;
  margin-bottom: 50px;

}
.content-item .our-story-section{
  margin-bottom: 50px;
}
.content-item.active {
  display: block;
}
.content-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #090909;
  
}

.content-item h4 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #1e7e34;
}

.content-item p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* Image Row */
.image-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.content-img {
  width: 32%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content-img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
/* Mobile Adjustments */
@media (max-width: 480px) {
  .content-slider {
    padding: 15px;
    max-width: 100%;
  }

  .content-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .content-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .content-item p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .image-row {
    display: block; /* Stack images vertically */
    gap: 10px;
  }

  .content-img {
    width: 100%; /* Full width for images */
    margin-bottom: 10px;
  }
}

/* General container adjustments */
@media (max-width: 991px) {
  .content-slider {
    padding: 10px;
    overflow: hidden;
    position: relative;
    height: auto;
    max-width: 95vw; /* Slightly reduced max width for padding */
  }

  /* Content items adjustments */
  .content-item {
    max-width: 100%;
    padding: 10px 0; /* Reduced padding */
    margin-bottom: 40px; /* Reduced space between items */
  }

  /* Title and subtitle adjustments for better readability */
  .content-item h3 {
    font-size: 20px; /* Slightly smaller font size */
    margin-bottom: 12px;
  }

  .content-item h4 {
    font-size: 16px; /* Slightly smaller font size */
    margin-bottom: 10px;
  }

  .content-item p {
    font-size: 15px; /* Slightly smaller font size */
    color: #555;
    margin-bottom: 20px;
  }

  /* Image row adjustments for 780px screens */
  .image-row {
    display: flex;
    
  }

  /* Image adjustments */
  .content-img {
    width: 33%; /* Full width for each image */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    
  }

  .content-img:hover {
    transform: scale(1.02); /* Subtle hover effect */
  }
}

.green-underline {
  text-decoration: none; /* Remove default underline */
  border-bottom: 3px solid green; /* Add green underline */
  display: inline-block; /* Make the border fit the text width */
  padding-bottom: 5px; /* Space between text and underline */
 margin-bottom: 20px;
}

/* General font size */
body {
  font-size: 16px; /* Fallback for non-responsive devices */
  font-size: calc(12px + 0.5vw); /* Scales font size with the viewport width */
}

h1 {
  font-size: 2.5rem; /* Adjusted for large screens */
  font-size: calc(24px + 2vw); /* Responsive font size */
}

h2 {
  font-size: 2rem;
  font-size: calc(20px + 1.5vw);
}

h3 {
  font-size: 1.5rem;
  font-size: calc(18px + 1vw);
}
/* Small devices (phones) */

@media (max-width: 480px) {
 

  #hero h2 {
    font-size: 1.2rem; /* Smaller heading for mobile */
  }

  .service-text {
    padding: 10px;
  }

  .services .icon-box {
    padding: 20px 10px;
  }

  .portfolio .portfolio-item {
    margin-bottom: 15px;
  }

  .team .member {
    padding: 15px;
  }
  

  #footer {
    padding: 20px 0;
    font-size: 12px;
  }

  .stat-number {
    font-size: 36px; /* Adjust stats font for smaller screens */
  }
}

/* Medium devices (tablets) */
@media (max-width: 991px) {
  .navbar ul {
    flex-direction: column;
  }

  .service-slide img {
    width: 100%;
    height: auto;
  }

  .service-text {
    width: 100%;
  }
  
  .team .member {
    width: 100%; /* Full-width team member section on tablets */
    padding: 15px;
  }
  .team .col-lg-5 {
     width:100%;
     
  }

  .about .content h3 {
    font-size: 24px;
  }

  #hero h2 {
    font-size: 2rem;
  }
}

/* Large devices (desktops) */
@media (min-width: 1024px) {
  #hero {
    height: 100vh; /* Full height hero section for large screens */
  }

  .navbar {
    justify-content: space-between;
  }

  .services .icon-box {
    padding: 70px 20px;
  }
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.service-slide img {
  width: 100%;
  height: auto;
}
.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.service-slide {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .service-slide {
    flex-direction: column;
  }
}
section {
  padding: 60px 5%;
}

@media (max-width: 768px) {
  section {
    padding: 40px 10px;
  }
}

#hero h2 {
  margin-bottom: 20px;
  padding: 10px 0;
}

#services-carousel-indicators {
  bottom: -30px;
}

.portfolio .portfolio-wrap {
  padding: 10px;
}
@media (hover: none) {
  .navbar a:hover,
  .services .icon-box:hover {
    background-color: transparent;
    color: #5cb874;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
    padding: 20px;
  }

  #hero h2 {
    font-size: 1.8rem;
    padding: 10px;
  }

  #hero .carousel-control-prev-icon,
  #hero .carousel-control-next-icon {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  #footer {
    padding: 20px 10px;
    font-size: 12px;
  }

  #footer h3 {
    font-size: 24px;
  }

  #footer .social-links a {
    margin-right: 5px;
    width: 30px;
    height: 30px;
  }
}

.news-content4 {
  padding: 10px;
  
}
#extraContent {
  display: flex; /* Ensure content aligns side by side */
  flex-wrap: wrap; /* Allow wrapping on smaller screens if needed */
  margin-top: 20px; /* Add some spacing when the content appears */
}

#extraContent .col-lg-6 {
  flex: 1; /* Ensure the columns take up equal space */
}
.footer-contact-container {
  word-wrap: break-word; /* Ensure long text wraps properly */
}
.footer-logo img {
  max-width: 100%; /* Make the logo responsive */
}
.footer-links{
  word-wrap: break-word; /* Ensure long text wraps properly */
}
@media (max-width: 480px) {
    
        .service-item .col-lg-7 img {
        width: 50%; /* Make image full-width on very small screens */
        margin-left: 0; /* Center the image */
    
  }
}

