* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f1f1f;
  overflow-x: hidden;
}

header {
  width: 100%;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
}

.top-bar strong {
  color: #1a6d2d;
}

.top-buttons {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.top-buttons .callback-btn,
.top-buttons .quote-btn {
  border: none;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #7cc242;
}

.callback-btn {
  background-color: #ffffff;
  color: #333;
  padding: 5px 25px;
}

.top-buttons .callback-btn {
  padding: 5px 25px;
}

.quote-btn {
  background-color: #7cc242;
  color: rgb(0, 0, 0);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 30px 20px;
  position: relative;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  width: 70%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  
}

.nav-links li a {
  font-size: 20px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #7cc242;
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  padding-bottom: 80px;
  background: linear-gradient(to right, #2e2e2e, #444);
  color: white;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
  margin-left: 30px;
  line-height: 1.4;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
  margin-left: 30px;
  line-height: 1.6;
}

.get-quote-btn {
  background-color: #7cc242;
  color: white;
  padding: 12px 20px;
  margin-left: 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  max-width: 650px;
  margin-top: 20px;
  border-radius: 20px;
  transition: all linear 0.6s;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* 
.reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #f9f9f9;
}

.review-item {
  text-align: center;
}

.review-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.review-item span {
  display: block;
  color: #ffa500;
  font-size: 18px;
} */

/* Responsive */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
  }

  .get-quote-btn {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1f1f1f;
    padding: 10px 20px;
  }

  #menu-toggle:checked+.menu-icon+.nav-links {
    display: flex;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-bottom: 190px;
    padding-top: 0px;
  }

  .hero-text h1 {
    font-size: 16px;
    text-align: center;
    margin-left: 0px;
    margin-top: 30px;
    width: 100%;
  }

  .hero-text p {
    margin-top: -10px;
    margin-left: 0px;
    font-size: 13px;
  }

  .get-quote-btn {
    margin-left: 0px;
  }

  .hero-image {
    /* margin-top: 20px; */
  }

  .top-bar {
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .top-buttons {
    margin-top: 10px;
  }
}


.reviews-container1 {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  padding-top: 80px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fff;
  /* gap: 30px; */
}

.align1,
.align2 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 50%;
  /* gap: 80px; */
}

.align1 {
  border-right: 1px solid #ccc;
}

.review-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #ccc;
  padding-right: 25px;
}

.review-box:last-child {
  border-right: none;
}

.review-logo {
  width: 100px;
  height: auto;
}

.review-content {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
}

.review-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.review-stars {
  color: gold;
  font-size: 1rem;
  margin: 4px 0;
}

.review-rating {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-container1 {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 140px;
    /* padding: 20px 10px; */
    /* padding-right: 10px; */
  }

  .align1 {
    border: none;
    gap: 20px;

  }

  .align2 {
    /* padding-left: 10px; */
    margin-top: 40px;
    gap: 20px;
  }

  .review-logo {
    width: 60px;
    height: auto;
  }

  .rev4 {
    border-left: 1px solid #ccc;
    /* padding-right: 7px; */
  }

  .rev2 {
    border-left: 1px solid #ccc;
  }

  .rev4,
  .rev2 {
    padding-left: 10px;

  }

  .review-box {
    display: flex;
    justify-content: center;
    border-right: none;
    /* border-bottom: 1px solid #ccc; */
    padding-bottom: 15px;
    padding-right: 0;
    width: 100%;

  }

  .review-box:last-child {
    border-bottom: none;
  }
}




.quote-form {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: flex-end;
  padding: 50px;
  background-color: #ffffff;
  /* margin: auto 100px; */
  width: 80%;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.location-group {
  display: flex;
  flex-direction: column;
  
  align-items: center;
}


.location-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}


.reviews-container1 input {
  background-color: #8BC53F;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  width: 260px;
}

.location-group input::placeholder {
  color: rgb(255, 255, 255);
}

.quote-btn1 {
  background-color: #000;
  color: #fff;
  padding: 14px 48px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background-color: #333;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .quote-form {
    flex-direction: column;
    align-items: center;
    top: -180px;
    padding : 20px 12px;
     height: 280px; 
    width: 90%;
    align-self: center;

  }
.location-group {
    width : 100%;
}
  .location-group label {
    margin-top: -12px;
  }

  /* .quote-btn {
    padding: 14px 0px;
  } */


  .location-group input{
    /* width: 100%; */
    width : 100%;
  }
  
  .quote-btn1 {
     width: 98%;
  }
}


/* 2nd sction */
/* Service Section */


h2 {
  text-align: start;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 600;
  /* margin-left: 50px; */
}

.service {
  margin-left: 50px;
}

p.subheading {
  text-align: start;
  margin-left: 50px;
  font-size: 14px;
  color: #333;
  margin-bottom: 60px;
}

.container1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  /* max-width: 1200px; */
  margin: auto;
}

@media (max-width: 768px) {

  .service {
    margin-left: 0px;
    text-align: center;
  }


  p.subheading {
    margin: 0px 30px;
    text-align: center;
    margin-bottom: 20px;
  }

}

@media (min-width: 768px) {
  .container1 {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1024px) {
  .container1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border: 2px solid #4CAF50;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #8bc53f;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.card a {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.card.highlight {
  background-color: #8bc53f;
  border: none;
}

.card.highlight h3,
.card.highlight p,
.card.highlight a {
  color: #fff;
}

.cta-box {
  margin-top: 40px;
  background-color: #5d9613;
  /* border-radius: 10px; */
  padding: 50px 50px;
  max-width: 100%;
  margin-left: auto;

  /* margin-right: auto; */
  /* text-align: center; */
}

.cta-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.cta-box p {
  width: 50%;
  font-size: 14px;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-actions {
  /* display: flex;
      flex-direction: column; */
  gap: 15px;

}

.cta-actions a {
  text-decoration: none;
  /* font-weight: bold; */
  padding: 10px 20px;
  border-radius: 4px;
}

.cta-actions .quote-btn {
  padding: 10px 50px;
  background-color: #000;
  color: white;
}

.cta-actions .phone-btn {
  color: #000;
  background-color: white;
}

@media (max-width: 600px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cta-box {
    padding: 50px 20px;

  }

  .cta-box p {
    width: 100%;
  }

  .cta-actions .quote-btn {
    padding: 10px 20px;
  }

  .card {
    margin-left: 20px;
    margin-right: 20px;
  }


}

/* 3rd section */
/* .about-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      align-items: flex-start;
    } */

.about-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  /* min-width: 800px; */
  margin: auto;
  align-items: flex-start;
  background-image: url('Images/About\ DCM\ BG.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
  padding: 60px 40px;
}

/* .about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255); 
  z-index: 2;
} */

.about-section>* {
  position: relative;
  z-index: 3;
  flex: 1 1 45%;
  /* responsive width for children */
  min-width: 280px;
}

@media (min-width: 1024px) {
  /* .about-section {
      
      } */
}

/* Responsive media queries */
@media screen and (max-width: 768px) {
  .about-section {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 40px 20px;
  }

  .about-section>* {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 480px) {
  .about-section {
    padding: 30px 15px;
  }
}


.about-text {
  flex: 1 1 480px;
  /* max-width: 470px; */
}

.about-text h4 {
  color: #84c225;
  font-size: 18px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.feature-item img {
  width: 18px;
  height: 18px;
}

.delivery {
  transition: all linear .5s;
}

.delivery:hover {
  transform: scale(1.01);
}

.about-images {
  flex: 1 1 400px;
  margin-top: 40px;
  margin-left: 40px;
  display: flex;
  /* flex-wrap: ; */
  justify-content: center;
  /* flex-direction: column; */
  gap: 20px;
}

.about-images img {
  width: 40%;
  object-fit: cover;
  transition: all linear 0.4s;
}

.about-images img:hover {
  transform: scale(1.01);

}

.contact-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #84c225;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background-color: #74ac20;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    /* margin-left: 10px; */
    margin-right: 10px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 24px;
    text-align: center;

  }

  .about-images {
    margin-left: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    /*flex-direction: column;*/
  }

  .about-images img {
    /*width: 90%;*/
    object-fit: cover;
    height: 500px;
  }
}



/* fourth section */

/* Container1 section */
.how-we-work {
  padding: 0px 20px ;
  max-width: 1200px;
  margin: auto;
}

/* Flex layout */
.how-we-work-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Image section */
.image {
  flex: 1 1 400px;
  text-align: center;
}

.image .delivery {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Content section */
.content {
  flex: 1 1 500px;
}

.section-subtitle {
  color: #78b943;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: start;
}

/* Steps layout */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #78b943;
  max-width: 440px;
}

.step-desc {
  margin-left: 15px;
  ;
}


@media (max-width: 768px) {

  .section-subtitle {
    text-align: center;
  }

  .step-desc {
    margin-left: 14px;
    width: 100%;

  }
  .section-title{
    font-size: 28px;
    text-align: center;
    margin: 0px 0px 10px 0px;
  }



}

.testimonial-section {
  padding: 60px 20px;
  background-color: #333;
  color: #fff;
  max-width: 100%px;
  padding-left: 5%;
  padding-right: 50px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-left {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-left p {
  margin: 0;
  color: #78b943;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-left h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 10px 0;
  color: #fff;
}

.testimonial-left span {
  font-size: 16px;
  color: #ccc;
}

.testimonial-slider-wrapper {
  flex: 1 1 600px;
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
  flex: 0 0 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
}

.testimonial-user-info strong {
  font-size: 16px;
}

.testimonial-user-info span {
  font-size: 14px;
  color: #999;
}

.quote-icon {
  font-size: 26px;
  color: #ddd;
  margin-left: auto;
}

.testimonial-controls {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.testimonial-controls button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 2px solid #fff; */
  margin-right: 5px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.testimonial-controls button:hover {
  background: #78b943;
  color: #fff;
  border-color: #78b943;
}

/* @media (max-width: 768px) {
    .testimonial-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .testimonial-left,
    .testimonial-slider-wrapper {
      max-width: 100%;
      flex: 1 1 100%;
    }

    .testimonial-left h2 {
      font-size: 1.2rem;
      text-align: center;
    }

    .testimonial-slider {
      gap: 10px;
      justify-content: center;
    }

    .testimonial-card {
      flex: 0 0 90%;
      margin: 0 auto;
    }
  } */

/* @media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-left,
  .testimonial-slider-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .testimonial-left h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .testimonial-slider {
    gap: 0; 
    justify-content: flex-start;
  }

  .testimonial-card {
    flex: 0 0 100%;  
    margin: 0 auto;
    max-width: 100%;
  }
} */

/* 
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-left,
  .testimonial-slider-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .testimonial-left h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .testimonial-slider-wrapper {
    overflow: hidden;
  }

  .testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 100vw;  
    max-width: 100vw;
    box-sizing: border-box;
  }
} */


@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-controls {
    display: flex;
    align-items: center;
  }



  .testimonial-left,
  .testimonial-slider-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .testimonial-left h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .testimonial-slider-wrapper {
    overflow: hidden;
    padding: 0 20px;
    /* Padding around the slider */
    box-sizing: border-box;
  }

  .testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 40px);
    /* 100% minus left/right margin */
    /* margin: 0 20px; space on each side */
    max-width: 100%;
    box-sizing: border-box;
  }
}





/* 6th section  */
/* #8bc53f */
.cta-section {
  margin-top: 60px;
  background-color: #5d9613;
  padding: 30px 20px;
  /* text-align: center; */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.cta-section h2 {
  font-size: 2.5rem;
  max-width: 700px;
  /* margin: 0 auto 30px; */
  margin-left: 30px;
  font-weight: bold;
  text-align: start;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 30px;
}

.cta-buttons button {
  padding: 10px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-white {
  background: white;
  color: black;
}

.btn-white:hover {
  background: #e6e6e6;
}

.btn-black {
  background: black;
  color: white;
}

.btn-black:hover {
  background: #333;
}

@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 1.4rem;
    margin-left: 0px;
    text-align: center;
  }

  .cta-buttons button {
    width: 100%;
    font-size: 1rem;
  }

  .cta-buttons {
    margin-left: 0px;
  }
}

/* 7th section */

.blog-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.blog-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: start;
}

.blogs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card-content {
  padding: 15px;
}

.blog-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.blog-button {
  background-color: #9bd043;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  padding: 8px 12px;
  display: inline-block;
}

@media (max-width: 600px) {
  .blog-section {
    padding: 20px 10px;
  }

  .blog-section h2 {
    font-size: 22px;
    text-align: center;
  }
}


/* 8th section  */

.faq-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1;
  min-width: 280px;
}

.faq-left h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-left p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

.faq-left button {
  background-color: #9cd64b;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-style: italic;
}

.faq-right {
  flex: 2;
  min-width: 280px;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.accordion-header {
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding-top: 10px;
  color: #333;
  font-size: 15px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header span {
  transform: rotate(45deg);
}

.accordion-header span {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 24px;
}

@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

  .faq-left h2,
  .faq-right h2 {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -20px;
  }

  .faq-left p,
  .faq-left button {
    text-align: center;
    display: block;
    margin: 0 auto 20px auto;
  }
}

/* 9th section */

.contact-section {
  background-image: url('Images/truck-bg.jpeg');
  /* Replace with your truck image URL */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  display: flex;
  justify-content: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.contact-form-container1 {
  background-color: #9cd64b;
  padding: 30px 25px;
  max-width: 500px;
  width: 100%;
  border-radius: 0;
  /* margin-bottom:-150px ; */
}

.contact-form-container1 h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

.contact-form-container1 p {
  margin: 0 0 20px;
  font-size: 14px;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: 14px;
  background-color: transparent;
  color: #000;
}

.contact-form-container1 input::placeholder,
.contact-form-container1 textarea::placeholder {
  color: #000;

}

.half-width {
  width: calc(50% - 7.5px);
}

textarea {
  resize: vertical;
  height: 80px;
}

.btnn {
  align-self: center;
  width: 40%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .half-width {
    width: 100%;
  }

  .contact-section {
    justify-content: center;
    padding: 40px 10px;
  }

  .contact-form-container1 {
    max-width: 100%;
  }

  .contactFormImg img {
    max-width: 100%;

  }

  ;
}

/* 10th sction  */
.container11 {
  max-width: 100%;
  margin-top: 60px;
}

.map iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.contact-section1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 20px 10px;
  background-color: #f8fdf3;
  color: #1b3e1b;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 2px solid #d7e8d0;
}

.contact-item1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.contact-item i {
  color: #74b416;
}

.contact-item a {
  color: #1b3e1b;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }
}

/* footer */

a {
  color: white;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #a4e253;
}

/* CTA Banner */
.cta-banner {
  background-color: #a4e253;
  color: #000;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 10px;
  color: white;
}

.cta-text p {
  color: white;
}


.cta-button .quote-btn {
  background-color: #000;
  color: #fff;
  padding: 12px 18px;
  border: none;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

/* Footer Main */
.footer {
  background-color: #000;
  padding: 40px 20px 20px;
  border-top: 1px solid #333;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1 1 250px;
  margin-left: 100px;

}

.column-1,
.column-2 {
  border-right: 1px solid grey;
}

.footer-column ul li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  /* margin-left: 500px; */
  border-bottom: 2px solid grey;
  /* padding-bottom: 10px; */

}

.footer-logo img {
  width: 160px;
  height: auto;

}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.footer-social p {
  font-size: large;
  font-weight: 600;
  color: white;
}

.footer-social i {
  font-size: 1.4rem;
  color: #a4e253;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-text h2 {
    text-align: center;
  }

  .footer-column {
    flex: 1 1 250px;
    margin-left: 0px;

  }

  .column-1,
  .column-2 {
    border-right: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
}


.why-choose-us {
  background: #f9fafb;
  padding: 0px 20px 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.icon {
  width: 50px;
  height: 50px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .cards {
    gap: 15px;
  }

  .card {
    padding: 15px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.85rem;
  }
}
