
/* team page 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;
  }


/* Team Section */
.team-section {
    padding: 2rem;
    text-align: center;
  }
  
  .team-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  /* Team Container */
  .team-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .team-box {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 300px;
  }
  
  .team-box:hover {
    transform: translateY(-10px);
  }
  
  /* Image and Overlay */
  .team-img {
    position: relative;
    overflow: hidden;
  }
  
  .team-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .team-box:hover .team-img img {
    transform: scale(1.1);
  }
  
  .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 98, 127, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .team-box:hover .team-overlay {
    opacity: 1;
  }
  
  /* Social Icons */
  .team-overlay .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background: var(--tp-theme-1);
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .team-overlay .social-icon i{
    color: #ffffff;
  }
  
  .team-overlay .social-icon:hover {
    background: var(--tp-theme-2);
  }
  
  /* Team Details */
  .team-name {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #333;
  }
  
  .team-designation {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
  }
  
  
  
  /* team page end  */
  