
  /* about page css start  */
  .about-banner {
    position: relative;
    height: 50vh; /* Full screen height */
    background: url('../img/testimonial/bg.webp');
    background-size: cover;
    background-position: center;
  }
  
  .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 98, 127, 0.7); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .banner-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
  }
  
  .home-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
  }
  
  .home-icon {
    width: 30px;
    margin-right: 10px;
  }
  
  .home-text {
    font-size: 20px;
  }
  
  .about-heading {
    font-size: 50px;
    font-weight: bold;
  }
  
  .about-text {
    font-size: 18px;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .about-heading {
      font-size: 30px;
    }
  
    .home-text {
      font-size: 16px;
    }
  }
  .two-column-section-1,.two-column-section-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Left Content Styling */
  .content {
    flex: 1;
  }
  
  .subheading {
    font-size: 14px;
    color: var(--tp-theme-2);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .bold-heading {
    font-size: 36px;
    font-weight: 600;
    /* margin-bottom: 5px; */
    color: var(--tp-theme-1);
  }
  .subheading1{
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--tp-theme-1);
    color: #fff;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s all;
  }
  
  .btn:hover {
    background-color: var(--tp-theme-2);
  }
  .btn a{
    text-decoration: none;
    color: #fff;
  }
  
  /* Right Image Styling */
  .image {
    flex: 1;
    text-align: right;
  }
  
  .image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .two-column-section-1 {
      flex-direction: column;
      /* text-align: center; */
    }
    .two-column-section-2 {
        flex-direction: column-reverse;
        /* text-align: center; */
      }
  
    .image {
      text-align: center;
      margin-top: 20px;
    }
    .description{
        margin-right: 0px;
    }
  }



  /* iconbox css  */
  .icon-banner {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 20px;
    /* background-color: #f8f8f8; */
  }
  
  .icon-container {
    width: 100px;
    height: 50px;
    background-color: var(--tp-theme-1); /* Circle background color */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px; /* Space between the icon and the text */
  }
  .icon-container2 {
    width: 80px;
    height: 50px;
    background-color: var(--tp-theme-1); /* Circle background color */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px; /* Space between the icon and the text */
  }
  .icon-container2 i {
    color: #fff;
    font-size: 30px;
  
  }
  .icon-container i {
    color: #fff;
    font-size: 30px;
  
  }
  
  .text-container {
    text-align: left;
  }
  
  .heading {
    font-size: 30px;
    font-weight: bold;
    color: #333;
  }
  
  .description {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .icon-container {
      width: 60px;
      height: 60px;
    }
  
    .icon {
      width: 40%;
      height: 40%;
    }
  
    .heading {
      font-size: 24px;
    }
  
    .description {
      font-size: 14px;
    }
  }
  


/* counter section start  */
.counter-section {
  position: relative;
  padding: 50px 0;
  min-height: 30vh;
  background-color: #f8f8f8;
  background: url('../img/testimonial/bg.webp');
}

.counter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 98, 127, 0.7); /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 90%; /* Adjust width */
  max-width: 1200px;
}

.counter-item {
  display: flex;
  /* background-color: #ffffff; */
  gap: 5px;
  color: #fff;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 calc(25% - 20px); /* 4 items per row */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.counter-icon-container {
  width: 60px;
  height: 60px;
  background-color: #fff; /* Circle background color */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.counter-icon-container i{
  color: var(--tp-theme-1);
  font-size: 22px;
}

.icon-img {
  width: 40px;
  height: 40px;
}

.text-container {
  text-align: left;

}

.counter {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 2px;
}

.plus-sign {
  font-size: 24px;
  margin-left: 10px;
}

.counter-description {
  font-size: 14px;
}

@media (max-width: 768px) {
  .counter-section {
height: 70vh;
  }
  .counter-container {
    flex-direction: column;
    align-items: center;
  }

  .counter-item {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .counter {
    font-size: 30px;
  }

  .plus-sign {
    font-size: 20px;
  }

  .counter-description {
    font-size: 12px;
  }
}


/* counter section end  */



  /* our procedure start  */
  .procedure-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .procedure-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
  }
  
  .procedure-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  
  .procedure-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 335px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }
  
  .box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .box-content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
    /* color: #fff; */
    /* background: rgba(0, 0, 0, 0.6); Added background for readability */
    transition: transform 0.3s ease-out; /* For smooth scaling effect */
  }
  .two-and-four{
    margin-bottom: 100px;
  }
  
  /* Added scaling for smaller screens */
 
  @media (max-width: 1024px) {
    .procedure-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .two-and-four{
      margin-bottom: 70px;
    }
  }
  @media (max-width: 768px) {
    .procedure-grid {
      grid-template-columns: 1fr;
    }
  
    .procedure-box {
      height: auto; /* Allow the height to adjust based on content */
      /* padding-top: 56.25%; 16:9 aspect ratio (or adjust as needed) */
      position: relative;
    }
  
    .box-image {
      width: 100%;
      height: auto;
      margin-bottom: 40px;
      object-fit: cover;
    }
  
    .box-content {
      bottom: 25%;
      left: 5%;
      width: 90%;
      padding: 30px;
      font-size: 0.8rem; /* Smaller font size for mobile */
    }
  
  
  }
  
  
  
  /* Animation for Sliding Down */
  @keyframes slideDown {
    0% {
      transform: translateY(-50%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Animation for Sliding Up */
  @keyframes slideUp {
    0% {
      transform: translateY(50%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Apply Animation */
  .animate-slide-down {
    animation: slideDown 1s ease-out forwards;
  }
  
  .animate-slide-up {
    animation: slideUp 1s ease-out forwards;
  }
  
  .small-heading {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 5px;
    color: var(--tp-theme-2);
  }
  
  .bold-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .procedure-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #000;
  }
  
  

  /* our procedure end  */

  /* testimonial start  */

  /* Testimonial Section */
/* Testimonial Section */
.testimonial-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../img/testimonial/bg.webp') no-repeat center center/cover;
}

.testimonial-overlay {
  /* 7, 98, 127 */
  background-color: rgba(7, 98, 127, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.testimonial-heading {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Carousel Wrapper */
.carousel-wrapper {
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: calc(33.333% - 20px); /* 3 cards per row */
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}

.quote {
  position: absolute;
  top: 10px;
  left: 48%;
  font-size: 2rem; /* Larger quote */
  color: #009D9E;
  font-style: italic;
  z-index: 1;
}

.testimonial-body {
  position: relative;
  padding-top: 40px; /* To avoid overlap with the quote */
}

.description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.rating {
  font-size: 1.2rem;
  color: #FFD700; /* Gold color for stars */
  margin-bottom: 15px;
}



.author-name {
  font-weight: bold;
  color: #555;
  margin-right: 15px;
}



/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-section{
    min-height: 60vh;
  }
  .testimonial-card {
    min-width: calc(100% - 20px); /* 2 cards per row on smaller screens */
  }

  .testimonial-heading {
    font-size: 2rem;
  }

  .quote {
    font-size: 1.5rem; /* Smaller quote on mobile */
  }

  .author-name {
    margin-right: 10px;
  }
}
      
  

  /* testimonial end  */

    /* about page css end  */