/*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: 15px !important;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .type {
         font-size: 28px;

            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: 18px;
    }


    /* service page */

 .features-section {
      max-width: 1100px;
      margin: auto;
      padding: 50px 20px;
      text-align: center;
    }

    .features-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      align-items: start;
    }

    .feature-box {
      padding: 20px;
    }

    .icon-box {
      width: 120px;
      height: 120px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    
    .icon-box::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      border: 1px dashed #bbb;
      pointer-events: none;
    }

    .icon-box i {
      font-size: 40px;
         color: #0a58ca;
      z-index: 1;
    }

    .feature-box h3 {
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .feature-box p {
      font-size: 0.9rem;
      line-height: 1.5;
      color: #666;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .icon-box {
        width: 100px;
        height: 100px;
      }
      .icon-box i {
        font-size: 32px;
      }
    }


    /* choose page */
        .choose-section {
      max-width: 1100px;
      margin: auto;
      padding: 50px 20px;
    }

    .choose-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .choose-box {
            border: 1px solid black;
      display: flex;
      align-items: center;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      border-radius: 4px;
      overflow: hidden;
    }


    .text-section {
      padding: 20px;
    }

    .text-section h3 {
      font-size: 1rem;
      font-weight: bold;
      margin: 0 0 6px;
      color: #000;
    }

    .text-section p {
      font-size: 0.9rem;
      color: #666;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .choose-container {
        grid-template-columns: 1fr;
      }
    }


/* testimonials */

.testimonial-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background: #fff;
  color: #333;
  border-radius: 6px;
  padding: 20px;
  margin: 10px;
  text-align: left;
  flex: 0 0 100%; /* Mobile default */
  box-sizing: border-box;
  position: relative;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
}

.testimonial-card h4 {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-footer {
  margin-top: 20px;
}

.testimonial-footer h5 {
  margin: 0;
  font-style: italic;
  color: #0a57a3;
}

.testimonial-footer span {
  display: block;
  font-size: 0.85rem;
  color: #666;
}

.stars {
  margin-top: 5px;
  color: #ffcc00;
}

.nav-btns {
  margin-top: 20px;
}

.nav-btns button {
  background: #fff;
  border: none;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.nav-btns button:hover {
  background: #ffcc00;
  color: #000;
}

/* Tablet (2 cards per slide) */
@media (min-width: 769px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* Laptop/Desktop (3 cards per slide) */
@media (min-width: 1025px) {
  .testimonial-card {
    flex: 0 0 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;
  }
}