
   .employees-carousel * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
    }

.employees-carousel {
  max-width: 1360px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 80px 0;
  overflow-x: hidden;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .swiper {
    height: 380px;
    padding: 0 80px;
  }
  .swiper-slide {
    position: relative;
    box-shadow: 0px 8px 32px rgba(33, 150, 243, 0.19);
    border-radius: 45px;
    background: white;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }
  .employee-image {
    flex-shrink: 0;
    height: 300px;
    width: clamp(150px, 20vw, 300px);
    border-radius: 24px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    
  }
  .employee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  
  .employee-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  
  .line-divider {
    width: 100%;
    height: 2px;
    background-color: #dadada;
    margin-bottom: 26px;
  }
  
  .quote-container {
    position: relative;
    display: flex;
  }
  
  .quote-mark {
    font-size: 4rem;
    color: #0039b4;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 16px;
    display: block;
  }
  .review-text {
    font-size: 16px;
  }
  
  .hashtag {
    color: #0039b4;
    font-weight: 600;
  }
  
  @media (max-width:768px)
  {
    .employees-carousel {
      height: auto;
      padding: 0 20px;
    }
  
    .swiper {
      max-width: 100%;
      height: auto;
      padding: 0 20px;
      margin-bottom: 50px;
    }
    .swiper-slide {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      gap: 20px;
      text-align: center;
      height: auto;
    }
    .employee-image {
      border-radius: 16px;
       width: 200px;   
      height: 200px; 
    }
    .employee-image img {
      border-radius: 16px;
    }
  
    .testimonial-content {
      padding-left: 0;
      padding-top: 10px;
      align-items: center;
    }
  
    .employee-name {
      font-size: 1.8rem;
    }
  
    .line-divider {
      width: 100%;
      height: 2px;
      margin: 16px 0;
    }
  
    .quote-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .quote-mark {
      font-size: 3rem;
      margin-bottom: 8px;
    }
    .review-text {
      font-size: 15px;
      line-height: 1.5;
    }
  
    .hashtag {
      color: #0039b4;
      font-weight: 600;
    }
  }
  
  @media (max-width: 425px) {
  
    
    .swiper
    {
      padding: 0 0;
    }
  }
  @media (min-width: 765px) {
    
    
    .swiper
    {
      padding: 0 40px;
    }
    .employees-carousel {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  
  @media (min-width: 1024px) {
    .employees-carousel {
      padding-left: 80px;
      padding-right: 80px;
    }
  }