/*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;
    }

    .types {
           color: #208da3;
        font-size: 3rem;
        font-weight: 500;
        overflow: hidden;

        position: relative;
    }

    @media (max-width: 767px) {
        .types {
                            font-size: 18px !important;
        }

        .text {
            height: 100px;
            width: 100%;
        }
        .choose-content h2 {
            font-size: 21px !important;
        }
        .faq-section .accordion-button h5 {
    font-size: 20px !important;
        }
    }

    @media (max-width: 1024px) {
        .types {
                      font-size: 25px !important;

            text-align: center;
            overflow-x: hidden;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    .our-promise {
        font-size: 20px;
        margin-left: 5px;
    }

  

    /*end banner part*/


.clr{
     color: #5f656b;
}






    /* about page */
    .choose-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      flex-wrap: wrap;
    }

   
    .choose-image {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .choose-image img {
      width: 100%;
      border-radius: 6px;
      display: block;
    }

   


    .choose-content {
      flex: 1;
      min-width: 320px;
    }

    .choose-content h5 {
      color: #1b5e20;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .choose-content h2 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
              color: #495057a6;
    }

    .choose-content p {
    font-size: 21px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .choose-section {
        flex-direction: column;
        text-align: center;
      }
      .choose-image::after {
        left: 0;
        bottom: 0;
      }
      .features {
        grid-template-columns: 1fr;
        text-align: left;
      }
    }

    /* service page */

    .process-section {
      padding: 60px 20px;
      text-align: center;
    }
    .process-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      padding: 30px 20px;
      transition: all 0.3s ease;
      position: relative;
    }

    .process-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .step-number {
      position: absolute;
      top: 15px;
      left: 20px;
          background: #208da3;
      color: #fff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 14px;
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      border: 1.5px dashed #0a3d62;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-circle i {
     font-size: 25px;
    }

    .process-card h4 {
      font-size: 1.1em;
      color: #0a3d62;
      margin-bottom: 10px;
    }

    .process-card p {
      font-size: 0.93em;
      color: #333;
    }

    @media (max-width: 768px) {
      .process-card {
        padding: 25px 15px;
      }
      .icon-circle {
        width: 60px;
        height: 60px;
      }
      .icon-circle img {
        width: 35px;
        height: 35px;
      }
    }



    /* choose page */
 
     .feature-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
  }

  .feature-box {
    background: #fff;
    padding: 30px 25px;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  .feature-number {
    position: absolute;
    top: 20px;
    left: 0;
    background: #208da3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  .feature-box h3 {
    color: #208da3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-left: 55px;
  }

  .feature-box p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-left: 55px;
  }

  @media (max-width: 768px) {
    .feature-section {
      grid-template-columns: 1fr;
    }

    .feature-box {
      padding: 25px 20px;
    }

    .feature-box h3,
    .feature-box p {
      margin-left: 50px;
    }

    .feature-number {
      padding: 7px 10px;
      font-size: 13px;
    }
  }


/* 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: #208da3;
   border-radius: 25px 0px 15% 0px;
  padding: 20px;
  margin: 10px;
  text-align: left;
  flex: 0 0 100%;
  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-card p{
color: white;
    font-size: 20px;
}
.testimonial-footer {
  margin-top: 20px;
}

.testimonial-footer h5 {
  margin: 0;
  font-style: italic;
       color: #ffffff;
}

.testimonial-footer span {
  display: block;
  font-size: 0.85rem;
  color: #666;
}


.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;
  color: gray;
}

.nav-btns button:hover {
  background: #ffcc00;
  color: #000;
}


@media (min-width: 769px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}


@media (min-width: 1025px) {
  .testimonial-card {
    flex: 0 0 33.33%;
  }
}


    /*Start FAQ part*/
     .faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .faq-section h2 {
    text-align: center;
        color: #6c757d;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .faq-item {
    background: #f0f7fd;
    border: 1px solid #d9e8f5;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-question {
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
      color: #208da3;
    padding: 15px 10px;
    cursor: pointer;
    position: relative;
  }

  .faq-question:hover {
    background: #e5f2fc;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    color: #333;
    padding: 0 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #d9e8f5;
    transition: all 0.3s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 200px; /* expands smoothly */
    padding: 15px;
  }

  @media (max-width: 768px) {
    .faq-section h2 {
      font-size: 1.5rem;
    }
    .faq-question {
      font-size: 0.95rem;
      padding: 12px 8px;
    }
    .faq-answer {
      font-size: 0.9rem;
    }
  }

    /*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: #222222c7;
}


.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;
      color: #495057;
}

.info-box a {
color: #000000b0;
  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;
  }
}