
.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;
  }
  
/* Success Stories Section */
.success-stories {
  width: 90%;
  margin: 2rem auto;
  text-align: center;
  background-color: #f9f9f9;
  padding: 2rem 1rem;
  border-radius: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #00798c;
}

.stories-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex-direction: row;
}

.story-box {
  flex: 1 1 calc(25% - 1.5rem);
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.story-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.story-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-caption {
  margin: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stories-container {
    flex-direction: column !important;
    align-items: center;
  }

  .story-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


  /* 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  */
  
  