/*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: 16px !important;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .type {
                   font-size: 30px;
            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*/



    /* service part */

    .services-section {
      text-align: center;
      padding: 60px 20px;
      background: url('https://www.transparenttextures.com/patterns/white-paper.png') no-repeat center;
      background-size: cover;
    }

    .services-section h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .services-section p {
      max-width: 700px;
      margin: 0 auto 40px;
      color: #555;
      font-size: 15px;
      line-height: 1.6;
    }

    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    .service-box {
      background: #fff;
      padding: 25px 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease-in-out;
    }

    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .service-box i {
      font-size: 38px;
      color: #222;
      margin-bottom: 15px;
      transition: color 0.3s;
    }

    .service-box:hover i {
      color: #2e9ca1;
    }

    .service-box h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .service-box p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive Fix */
    @media (max-width: 768px) {
      .services-section {
        padding: 40px 15px;
      }
      .service-box {
        padding: 20px;
      }
    }


    /* choose part */

    .info-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 50px 20px;
      background: #fff;
    }

    .info-boxs {
      color: #fff;
      padding: 30px 20px;
      border-radius: 6px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .info-boxs i {
      font-size: 28px;
      margin-bottom: 15px;
      display: inline-block;
      background: rgba(255,255,255,0.2);
      padding: 12px;
      border-radius: 50%;
    }

    .info-boxs h3 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .info-boxs p {
      font-size: 14px;
      line-height: 1.5;
    }

    
    .info-boxs:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    
    .red {     background: #0087b9d9;}
    .orange {     background: #0087b9d9;}
    .green {     background: #0087b9d9; }
    .blue {     background: #0087b9d9; }

    @media (max-width: 768px) {
      .info-boxs {
        padding: 25px 15px;
      }
    }

    /* testimonials part */

   .testimonial-section {
  padding: 40px 20px;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: auto;
}

button.prev,
button.next {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  color: #333;
  transition: 0.3s;
}

button.prev:hover,
button.next:hover {
  color: #007BFF;
}

.testimonial-wrapper {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.testimonial-card {
     min-width: 45%;
    box-sizing: border-box;
   background: #000;
    margin: 0 10px;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 72%);
    text-align: left;
}

.testimonial-card p {
  font-size: 16px;
     color: white;
  line-height: 1.6;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin: 12px 0;
}

.testimonial-card h4 {
  margin-top: 5px;
  font-weight: bold;
  text-align: right;
  color: white;
}


@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}


    

/* 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: 16px;
  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;
}

.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;
  }
}