*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body {
  background-color: #f5f5f5;
}

.navbar{
  background:#000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  position: relative;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px;   
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links li{
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

.nav-links li:hover,
.nav-links .active{
  color:#64d20f;
}

.nav-links li a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

.nav-bottom-line{
  height:4px;
  width:100%;
  background:linear-gradient(
    90deg,
    #64d20f 0%,
    #64d20f 25%,
    #00bcd4 25%,
    #00bcd4 50%,
    #f4a623 50%,
    #f4a623 75%,
    #ff3ca0 75%,
    #ff3ca0 100%
  );
}

.dropdown{
  position: relative;
  cursor: pointer;
}

.arrow{
  font-size:10px;
  margin-left:4px;
}
.service-active:hover{
  color: #fff;
}
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#000;
  padding:10px 0;
  list-style:none;
  display:none;
  min-width:220px;
  border-radius:6px;
  z-index:99999;
}

.show-dropdown{
  display:block;
}

.dropdown-menu li{
  padding:8px 15px;
}

.dropdown-menu li a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
}

.dropdown-menu li:hover{
  background:#64d20f;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 120px 8% 80px;
  background: #f8f9fc;
}
.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;  
  gap: 40px;
  position: relative;
  z-index: 20;
}
.banner-content h1 {
    font-size: 50px;  
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
    color: #2e314d;
}

.page-title {
  font-size: 70px;
  font-weight: 600;
  color: #2e314d;
  margin: 0;
  line-height: 1.15;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.breadcrumb a {
  text-decoration: underline;
  color: #69c10f;
}

.breadcrumb span {
  color: #69c10f;
}

.breadcrumb .active {
  text-transform: uppercase;
}

.bg-shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}
.shape1 {
  width: 180px;
  height: 180px;
  background: #b5d89c;
  left: -60px;
  top: 80px;
}

.shape2 {
  width: 220px;
  height: 220px;
  background: #c7d7e4;
  left: 120px;
  top: -50px;
}

.shape3 {
  width: 200px;
  height: 200px;
  background: #e7c6c6;
  left: 50px;
  bottom: -60px;
}
.overview-section {
  padding: 100px 8%;
  background: #f7f7f7;
}

.overview-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.overview-left {
  flex: 1;
}

.overview-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.overview-left p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
.overview-right {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-img {
  width: 100%;
  border-radius: 25px;
}

.small-img {
  position: absolute;
  top: 40px;
  right: -40px;
  width: 240px;
  border-radius: 20px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.color-shapes{
  position:absolute;
  bottom:-30px;
  left:-40px;
  width:150px;
  height:120px;
}

.why-green{
  position:absolute;
  width:70px;
  height:45px;
  border-radius:50%;
  background:linear-gradient(145deg,#baff2c,#6ecb00);
  left:-5px;
  top:10px;
}

.why-blue{
  position:absolute;
  width:45px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(145deg,#38d0ff,#0076c9);
  left:65px;
  top:-25px;
}

.why-yellow{
  position:absolute;
  width:70px;
  height:45px;
  border-radius:50%;
  background:linear-gradient(145deg,#ffe55c,#ff9f00);
  left:90px;
  top:37px;
}

.why-pink{
  position:absolute;
  width:45px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(145deg,#ff63b5,#e1007a);
  left:45px;
  top:46px;
}
@media (max-width:1024px){

  .why-container{
    flex-direction:column;
    align-items:center;
  }

  .image-wrapper{
    margin-top:40px;
  }

  .small-img{
    right:0;
    top:20px;
    width:160px;
  }

  .color-shapes{
    bottom:-25px;
    left:0;
    transform:scale(0.9);
  }
}
@media (max-width:768px){

  .why-left h2{
    font-size:26px;
  }

  .main-img{
    max-width:100%;
  }

  .small-img{
    width:140px;
    top:10px;
    right:10px;
  }

  .color-shapes{
    bottom:-15px;
    left:10px;
    transform:scale(0.75);
  }
}
@media (max-width:480px){

  .small-img{
    width:120px;
  }

  .color-shapes{
    transform:scale(0.6);
    bottom:-10px;
  }
}
.features-section {
  padding: 120px 8%;
  background: linear-gradient(
    90deg,
    #eef1ea 0%,
    #ddd6d9 35%,
    #d9d2c4 65%,
    #cfdcd6 100%
  );
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  padding: 80px 40px 50px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  min-width: 280px;
}

.green-card { background: #cfe3b4; }
.blue-card  { background: #a9c7db; }
.pink-card  { background: #e7a9bd; }

.icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.green-icon { background: #8bd22a; }
.blue-icon  { background: #4ca8c9; }
.pink-icon  { background: #e95ea9; }

.feature-card h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}


.feature-card p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

@media (max-width: 992px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 500px;
  }
}
.industries-section {
  padding: 100px 8%;
  background: #f5f5f5;
}

.sub-title {
  color: #69c10f;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.industries-list {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.industries-list ul {
  list-style: none;
  padding: 0;
  flex: 1;
}

.industries-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
  font-size: 18px;
}

.industries-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: #c9ceda;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-section {
  background: #000;
  padding: 60px 8%; 
  position: relative;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 60px 40px;
  border-radius: 25px;
  text-align: left;
}

.green-card { background: #cfe3b4; }
.blue-card  { background: #a9c7db; }
.pink-card  { background: #e7a9bd; }

.stat-card h2 {
  font-size: 90px;
  font-weight: 700;
  margin: 0 0 20px;
}

.stat-card p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
}

.footer-section{
  padding:80px 8%;
  background: linear-gradient(
    90deg,
    #2c1a2e,
    #4a1e2f,
    #5c4a00,
    #003c3c
  );
  color:#fff;
}

.testimonial-section{
  padding:90px 8%;
  background:linear-gradient(120deg,#e8f7c6,#f6d9e5,#e0f2d7);
}

.testimonial-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.testimonial-sub{
  color:#64d20f;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
}

.testimonial-header h2{
  font-size:36px;
  color:#2d314d;
  margin-top:10px;
}
.testimonial-arrows{
  display:flex;
  gap:15px;
}

.arrow-btn{
  width:45px;
  height:45px;
  border-radius:50%;
  border:2px solid #64d20f;
  background:transparent;
  cursor:pointer;
  font-size:18px;
  color:#64d20f;
  transition:0.3s;
}

.arrow-btn:hover{
  background:#64d20f;
  color:#fff;
}
.profile{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:25px;
}

.profile img{
  width:50px;
  height:50px;
  border-radius:50%;
  object-fit:cover;
}

.profile span{
  font-weight:600;
}

.testimonial-card {
  min-width: 50%; 
  padding:40px 30px; 
  border-radius:20px;
  box-sizing: border-box;
  position:relative;
}
.testimonial-cards {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  min-width: 50%;
}
.grey-card {
  background: #f0f0f0;
  color: #333;
  transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.grey-card:hover {
  background: #8edb1f;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.quote{
  font-size:50px;
  margin-bottom:15px;
  opacity:0.6;
}

.profile{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:25px;
}

.profile img{
  width:50px;
  height:50px;
  border-radius:50%;
  object-fit:cover;
}

.profile span{
  font-weight:600;
}

.quote-icon::before{
  content:"“";
}
.quote-icon{
  position:absolute;
  top:20px;
  left:30px;
  font-size:90px;
  font-weight:900;
  color:rgba(255,255,255,0.85);
  font-family:Georgia, serif;
  line-height:1;
}

@media (max-width:1024px){
  .testimonial-cards{
    flex-direction:column;
  }
}

@media (max-width: 768px){

  .testimonial-cards{
    flex-direction: row; 
  }

  .testimonial-card{
    min-width: 100%;
  }

}
.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

.footer-col a{
  color: #fff;
  text-decoration: none;
}
.footer-col a:hover{
  color: #8ee000;
  text-decoration: none;
}
.empty-heading {
  visibility: hidden;
  height: 40px;
  margin-bottom: 25px;
}


.footer-col h3{
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.footer-col h3::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #a5d86e;
}

.footer-col h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 80px;
  height: 6px;
  background-color: #8cc63f;
  border-radius: 10px 10px 10px 10px;
}
.footer-col p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
  opacity:0.85;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:12px;
  font-size:14px;
  opacity:0.85;
  cursor:pointer;
  transition:0.3s;
}

.footer-col ul li:hover{
  color:#64d20f;
}

.footer-col ul li::before{
  content:"➜";
  margin-right:10px;
  font-size:14px;
}
.footer-col ul.no-arrow li::before {
  content: none;
}
.company-col ul li::before{
  color:#ff9f1c;
}

.services-col:not(.right-services) ul li::before{
  color:#29b6f6;
}

.right-services ul li::before{
  color:#ff3ca0;
}

.contact-list li{
  margin-bottom:10px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.social-icons{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.social-icons i {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s ease;
}

.social-icons i:hover {
  color:#64d20f;
  transform: translateY(-4px);
}

.footer-section{
  padding:80px 8%;
  background: linear-gradient(
    90deg,
    #2c1a2e,
    #4a1e2f,
    #5c4a00,
    #003c3c
  );
  color:#fff;
  position:relative;
  overflow:hidden;
}

.footer-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:60px;
  align-items:flex-start;
}
.footer-col h3{
  position:relative;
  display:inline-block;
  margin-bottom:30px;
  font-size:22px;
  font-weight:600;
}

.footer-col h3::before{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:120px;
  height:2px;
  background:#a5d86e;
}

.footer-col h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:70px;
  height:6px;
  background:#8cc63f;
  border-radius:6px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:25px;
  opacity:0.85;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:14px;
  font-size:14px;
  opacity:0.85;
  transition:0.3s;
  display:flex;
  align-items:flex-start;
}

.footer-col ul li:hover{
  color:#64d20f;
  transform:translateX(5px);
}

.footer-col ul li::before{
  content:"➜";
  margin-right:10px;
  font-size:13px;
}
.company-col ul li::before{
  color:#ff9f1c;
}

.services-col:not(.right-services) ul li::before{
  color:#29b6f6;
}

.right-services ul li::before{
  color:#ff3ca0;
}

.footer-col ul.no-arrow li::before{
  content:none;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:12px;
}

.social-icons{
  display:flex;
  gap:18px;
  margin-top:0;
}

.social-icons i{
  font-size:18px;
  transition:0.3s;
}

.social-icons i:hover{
  color:#64d20f;
  transform:translateY(-4px);
}

.footer-col a{
  color:#fff;
  text-decoration:none;
}

.footer-col a:hover{
  color:#8ee000;
}
.footer-col ul li{
  white-space: nowrap;
}

.empty-heading{
  visibility:hidden;
  margin-bottom:52px;
}

@media(max-width:1200px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:50px;
  }
}

@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-section{
    padding:60px 6%;
  }

  .empty-heading{
    display:none;
  }
}
