/*start banner part*/
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .text {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 100%;
       
        overflow-x: hidden;
    }

    .type {
        color: black;
        font-size: 3rem;
        font-weight: 500;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    @media (max-width: 767px) {
        .type {
         font-size: 11px !important;

        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .type {
                      font-size: 26px;
            text-align: center;
            overflow-x: hidden;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    .our-promise {
        font-size: 20px;
        margin-left: 5px;
    }

    .fa-solid {
        color: green;
        margin-right: 5px;
    }

    /*end banner part*/


    /* about page */
    .about-para{
           font-size: 22px;
    }

    /* service page */
     .services-section {
      padding: 60px 8%;
      text-align: center;
    }

    .services-section h2 {
      font-size: 26px;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: #1a1a1a;
      padding: 30px 20px;
      border-radius: 6px;
      transition: all 0.3s ease;
      position: relative;
    }

    .service-card:hover {
      background: linear-gradient(135deg, #ff6600, #ff3300);
      transform: translateY(-5px);
    }

    .service-icon {
      font-size: 40px;
      color: #ff6600;
      margin-bottom: 15px;
    }

    .service-card:hover .service-icon {
      color: #fff;
    }

    .service-card h3 {
            color: white;

        font-size: 20px;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .service-card p {
        font-size: 19px;
      line-height: 1.6;
      color: #ccc;
    }

    .service-card:hover p {
      color: #fff;
    }


    /* choose us page */

    .choose-section {
      padding: 60px 8%;
      text-align: center;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .choose-card {
      display: flex;
      border-radius: 10px;
      overflow: hidden;
    
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .choose-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.4);
    }

    .service-left {
  background: #0a58caab;

      padding: 25px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      min-width: 120px;
    }

    .service-left i {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .service-left span {
      font-size: 22px;
      font-weight: bold;
    }

    .service-right {
      padding: 25px 20px;
      text-align: left;
      flex: 1;
    }

    .service-right h3 {
     font-size: 20px;

      font-weight: bold;
      margin-bottom: 10px;
    }

    .service-right p {
         font-size: 18px;
     color: black;
      line-height: 1.6;
    }



      /* testimonials */
      .testimonial-container {
      position: relative;
      max-width: 700px;
      margin: 50px auto;
      overflow: hidden;
    }

    .testimonial-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial-card {
      min-width: 100%;
      box-sizing: border-box;
      padding: 20px;
      background: #1a1a1a;
     margin: 10px;
      border-radius: 8px;
      text-align: center;
    }

    .testimonial-card p {
      font-size: 16px;
      line-height: 1.5;
      color: #ddd;
    }

    .testimonial-card h4 {
      margin-top: 15px;
      font-size: 18px;
      font-weight: bold;
      color: #ff6600;
    }

    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ff6600;
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

@media (min-width: 768px) {
  .testimonial-card {
    min-width: 50%; 
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 33.33%; 
    max-width: 33.33%;
  }
}


    /*Start FAQ part*/
    :root {
        --primary-text: #4f8f70;
        --secondary-text: #e9fff3;
        --white-text-white: #ffffff;
        --black-text-black: #000000;
    }

    .accordion-body ul li a {
        color: black;
        font-weight: 700;
    }

    .faq-section .accordion {
        width: 100%;
    }

    .accordion-button:not(.collapsed) {

        background-color: var(--secondary-text);
    }

    .accordion-button:not(.collapsed)::after {
        background-image: none;
        transform: none;
        display: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-button:before {
        content: "";
        position: absolute;
        right: 0.75rem;
        top: 1.25rem;
        height: 2px;
        width: 1rem;
        background-color: var(--primary-text);
    }

    .accordion-button.collapsed:after {
        content: "";
        position: absolute;
        right: 1.1875rem;
        top: 0.8125rem;
        height: 1.0625rem;
        width: 0.125rem;
        border-style: none;
        background-color: var(--primary-text);
    }

    .faq-section .accordion-button h5 {
    font-size: 22px;
        color: black;
        margin-right: 13px;
    }

    .accordion-body {
        background-color: var(--secondary-text);
    }

    ul {
        list-style-type: none;
        list-style-type: disc;
        margin-left: 20px;
    }

    ul li {
        margin-bottom: 5px;
    }

    .accordion-body ol {
        counter-reset: step-counter;
        list-style-type: none;
        padding-left: 0;
    }

    .accordion-body ol>li {
        counter-increment: step-counter;
        margin-bottom: 10px;
    }

    .accordion-body ol>li::before {
        content: "Steps "counter(step-counter) ": ";
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .accordion-button:before {
            right: 0.75rem;
        }

        .accordion-button.collapsed:after {
            right: 1.1875rem;
        }

        .faq-section .accordion-button h5 {
            margin-right: 0px;
        }
    }

    /*end  FAQ part*/




   
    /* contact details */
  

.contact-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #222;
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
}


.contact-info {
  flex: 1 1 45%;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
      font-size: 19px;
  color: #444;
}


.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
}

.info-box i {
  font-size: 20px;
  color: #007BFF;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-box strong {
  display: block;
  margin-bottom: 2px;
      font-size: 20px;
}

.info-box a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  margin-left: 4px;
  word-break: break-word;
}

.info-box a:hover {
  color: #007BFF;
}


.contact-map {
  flex: 1 1 50%;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-info, .contact-map {
    flex: 1 1 100%;
  }

  .info-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .info-box i {
    margin-bottom: 6px;
  }

  .phn-no {
    text-align: center;
  }
}