*{
  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;
}

.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;
  padding: 100px 8% 60px;
  background: linear-gradient(
    90deg,
    #eef1ea 0%,
    #ddd6d9 40%,
    #d4ded8 100%
  );
}
@media (max-width: 992px) {

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 8%;
    gap:20px;
    display:none;
  }

  .nav-links.show{
    display:flex;
  }

  .nav-links li{
    width:100%;
  }

  .dropdown-menu{
    position:static;
    background:#111;
    width:100%;
    margin-top:10px;
    display:none;
  }

  .dropdown-menu li{
    padding:10px 0;
  }

}
.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.page-title {
  font-size: 60px;
  font-weight: 600;
  color: #2e314d;
  margin: 0;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}

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

.breadcrumb span {
  color: #69c10f;
}

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

.page-banner{
  position:relative;
  padding:110px 8% 70px;
  background:linear-gradient(135deg,#eef4ea,#e6edf2,#f3ecec);
  overflow:hidden;
}

.banner-content{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
}

.page-title{
  font-size:60px;
  font-weight:700;
  color:#2e314d;
}


.bg-shape{
  position:absolute;
  border-radius:50%;
  opacity:0.25;
  pointer-events:none;
  z-index:1;
}

.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;
}

@media(max-width:768px){
  .page-title{
    font-size:36px;
  }

  .banner-content{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }
}
.contact-cards {
  padding: 80px 8%;
  background: #f7f7f7;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-card {
  position: relative;
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 380px;
  padding: 40px 40px 40px 90px;
  border-radius: 25px;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

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

.contact-card .icon {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

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

.card-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.card-text p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .cards-container {
    gap: 30px;
  }

  .contact-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    flex: 1 1 100%;
    padding: 35px 30px 35px 80px;
  }

  .contact-card .icon {
    left: -25px;
    width: 70px;
    height: 70px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding-left: 70px;
  }

  .contact-card .icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

.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;
}
/* .contact-form-section {
  padding: 100px 8%;
  background: #f7f7f7;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.form-left {
  flex: 1;
}

.form-sub {
  color: #69c10f;
  font-weight: 600;
  font-size: 14px;
}

.form-left h2 {
  font-size: 42px;
  margin: 10px 0 40px;
}
.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

.form-row textarea {
  flex: 1;
  resize: none;
  height: 160px;
}

.send-btn {
  background: #69c10f;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #55a70c;
}
.form-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.form-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.form-left-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-right-field {
  flex: 1;
}

.form-right-field textarea {
  height: 100%;
  min-height: 220px;
  resize: none;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .small-img {
    right: 0;
  }
} */
.contact-section {
  background: #cfe6cf;
  padding: 100px 8%;
}

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

.contact-left {
  flex: 1;
}

.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: #c5dfc5;
  padding: 50px;
  border-radius: 25px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-box {
  width: 110px;
  height: 70px;
  background: #b9d9b9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #38c738;
}

.contact-header h2 {
  margin: 0;
  font-size: 28px;
  color: #2e314d;
}

.contact-header p {
  margin: 5px 0 0;
  color: #5c6b5c;
}

.row {
  display: flex;
  gap: 20px;
}

.input-group {
  width: 100%;
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2e314d;
}

.input-field {
  display: flex;
  align-items: center;
  background: #b9d9b9;
  padding: 15px 18px;
  border-radius: 20px;
}

.input-field span {
  margin-right: 10px;
}

.input-field input,
.input-field textarea {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  outline: none;
}

.textarea-field {
  align-items: flex-start;
}

.textarea-field textarea {
  min-height: 140px;
  resize: none;
}

.send-btn {
  width: 100%;
  background: #39d327;
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #2fb51f;
}

.image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #69c10f20, #69c10f50);
  border-radius: 30px;
  top: 20px;
  left: 20px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 30px;
  position: relative;
}
.image-wrapper{
  position:relative;
  width:100%;
  max-width:520px;
}
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
  }

  .contact-box {
    padding: 30px;
  }

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


.testimonial-cards {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.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{
  position:absolute;
  top:25px;
  left:30px;
  font-size:80px;
  font-weight:900;
  color:rgba(255,255,255,0.8);
  line-height:1;
}

.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-section{
  padding:80px 8%;
  background: linear-gradient(
    90deg,
    #2c1a2e,
    #4a1e2f,
    #5c4a00,
    #003c3c
  );
  color:#fff;
}

.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 {
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  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;
  }
}
