/* ==========================================================================================================
   ISOLATED TESTIMONIALS SECTION - CLEAN IMPLEMENTATION
   ============================================================================================================ */
   *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html{
    scroll-behavior: smooth;
  }
  body{
    margin: 0;
    padding: 0;
  }
  /* Main Testimonials Section - Isolated */
  .testimonials-section {
    margin-top: 5rem;
      min-height: 100vh;
      width: 100%;
      background: linear-gradient(135deg, #f5f1eb 0%, #ebe3da 100%);
      padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
  }
  
  /* Isolated Container for testimonials-section only */
  .testimonials-section .testimonials-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      background: url(clinic.jpg) center/cover;
      border-radius: clamp(1.5rem, 3vw, 2.5rem);
      box-shadow: 0 30px 80px rgba(0,0,0,0.3);
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(10px);
      isolation: isolate;
  }
  
  /* Isolated Header for testimonials-section only */
  .testimonials-section .testimonials-header {
      text-align: center;
      padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
      /* background: rgba(0,0,0,0.3); */
  }
  
  .testimonials-section .rating-stars {
      display: flex;
      justify-content: center;
      gap: clamp(0.3rem, 1vw, 0.6rem);
  }
  
  .testimonials-section .rating-stars i {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: #FFD700;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
      transition: transform 0.3s ease;
  }
  
  .testimonials-section .rating-stars i:hover {
      transform: scale(1.1);
  }
    
    
    
    
  /* Isolated Slider Wrapper for testimonials-section only */
  .testimonials-section .testimonials-slider-wrapper {
      position: relative;
      height: clamp(25rem, 55vh, 35rem);
      overflow: hidden;
      padding: clamp(1rem, 3vw, 2rem);
  }
  
  .testimonials-section .testimonials-slider {
      position: relative;
      height: 100%;
      width: 100%;
  }
  
  /* Isolated Individual Slide for testimonials-section only */
  .testimonials-section .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin-left: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(2rem, 5vw, 4rem);
      box-sizing: border-box;
      opacity: 0;
      transition: all 0.5s ease-in-out;
      z-index: 1;
  }
  
  .testimonials-section .testimonial-slide.active {
      opacity: 1;
      z-index: 10;
  }
  
  /* Isolated Slide Card for testimonials-section only */
  .testimonials-section .slide-card {
      width: 100%;
      max-width: 900px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: clamp(1.5rem, 3vw, 2.5rem);
      padding: clamp(2rem, 5vw, 3.5rem);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      gap: clamp(1.5rem, 4vw, 3rem);
      align-items: center;
      box-sizing: border-box;
  }
    
  /* Isolated Patient Media for testimonials-section only */
  .testimonials-section .patient-media {
      width: clamp(10rem, 25vw, 14rem);
      height: clamp(9rem, 22vw, 13rem);
      flex-shrink: 0;
      border-radius: clamp(1.2rem, 3vw, 2rem);
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
      position: relative;
  }
  
  .testimonials-section .patient-media img,
  .testimonials-section .patient-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
  }
  
  .testimonials-section .patient-media video {
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonials-section .patient-media video:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .testimonials-section .patient-media video:focus {
      outline: 3px solid #8B4513;
      outline-offset: 2px;
  }
  
  /* Isolated Patient Information for testimonials-section only */
  .testimonials-section .patient-info {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: clamp(12rem, 25vh, 16rem);
      overflow: hidden;
  }
  
  .testimonials-section .patient-name {
      font-size: var(--font-size-2xl);
      font-family: var(--font-heading);
      font-weight: var(--font-weight-bold);
      color: #1a1a1a;
      margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
      line-height: var(--line-height-tight);
  }
  
  .testimonials-section .patient-testimonial {
      font-size: var(--font-size-base);
      font-family: var(--font-primary);
      color: #555;
      line-height: var(--line-height-relaxed);
      margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
      font-style: italic;
      max-height: clamp(8rem, 20vh, 12rem);
      overflow-y: auto;
      overflow-x: hidden;
      word-wrap: break-word;
      hyphens: auto;
      padding-right: clamp(0.5rem, 1vw, 1rem);
      scrollbar-width: thin;
      scrollbar-color: rgba(139, 69, 19, 0.3) transparent;
  }
  
  /* Custom scrollbar for webkit browsers */
  .testimonials-section .patient-testimonial::-webkit-scrollbar {
      width: 4px;
  }
  
  .testimonials-section .patient-testimonial::-webkit-scrollbar-track {
      background: transparent;
  }
  
  .testimonials-section .patient-testimonial::-webkit-scrollbar-thumb {
      background: rgba(139, 69, 19, 0.3);
      border-radius: 2px;
  }
  
  .testimonials-section .patient-testimonial::-webkit-scrollbar-thumb:hover {
      background: rgba(139, 69, 19, 0.5);
  }
  
  /* Add fade effect at bottom when content overflows */
  .testimonials-section .patient-testimonial {
      position: relative;
  }
  
  .testimonials-section .patient-testimonial::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1rem;
      background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
  }
  
  /* Show fade when scrollable */
  .testimonials-section .patient-testimonial:hover::after {
      opacity: 1;
  }
  
  .testimonials-section .patient-location {
      font-size: var(--font-size-sm);
      font-family: var(--font-primary);
      font-weight: var(--font-weight-semibold);
      color: #8B4513;
      margin-top: auto;
  }
    
  /* Isolated Navigation Controls for testimonials-section only */
  .testimonials-section .slider-controls {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 clamp(1rem, 3vw, 2rem);
      pointer-events: none;
      z-index: 100;
  }
  
  .testimonials-section .control-btn {
      width: clamp(3rem, 8vw, 4rem);
      height: clamp(3rem, 8vw, 4rem);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: 2px solid rgba(139, 69, 19, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      pointer-events: auto;
      backdrop-filter: blur(15px);
  }
  
  .testimonials-section .control-btn:hover {
      background: #8B4513;
      color: white;
      transform: scale(1.1);
      box-shadow: 0 12px 35px rgba(139, 69, 19, 0.25);
      border-color: #8B4513;
  }
  
  .testimonials-section .control-btn:active {
      transform: scale(0.95);
  }
  
  .testimonials-section .control-btn i {
      font-size: clamp(1.2rem, 3vw, 1.6rem);
      color: #8B4513;
      transition: color 0.3s ease;
  }
  
  .testimonials-section .control-btn:hover i {
      color: white;
  }
  
  /* Isolated Dots Indicator for testimonials-section only */
  .testimonials-section .slider-dots {
      display: flex;
      justify-content: center;
      gap: clamp(0.5rem, 1.5vw, 0.8rem);
      padding: clamp(1.5rem, 4vw, 2.5rem);
      /* background: rgba(0,0,0,0.2); */
  }
  
  .testimonials-section .dot {
      width: clamp(10px, 2.5vw, 14px);
      height: clamp(10px, 2.5vw, 14px);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .testimonials-section .dot.active {
      background: #FFD700;
      transform: scale(1.3);
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  
  .testimonials-section .dot:hover {
      background: rgba(255, 215, 0, 0.8);
      transform: scale(1.1);
  }
  
  /* ===== ISOLATED RESPONSIVE DESIGN FOR TESTIMONIALS-SECTION ===== */
  
  /* Tablet and Small Desktop */
  @media (max-width: 1024px) {
      .testimonials-section {
          padding: clamp(2rem, 6vw, 4rem) clamp(0.8rem, 2vw, 1.5rem);
      }
      
      .testimonials-section .slide-card {
          max-width: 800px;
          padding: clamp(1.5rem, 4vw, 2.5rem);
          gap: clamp(1.2rem, 3vw, 2rem);
      }
      
      .testimonials-section .patient-media {
          width: clamp(9rem, 28vw, 12rem);
          height: clamp(8rem, 25vw, 11rem);
      }
  }
  
  /* Mobile Devices */
  @media (max-width: 768px) {
      .testimonials-section {
          min-height: 100vh;
          padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.8rem, 2vw, 1.2rem);
      }
      
      .testimonials-section .testimonials-container {
          max-width: none;
          margin: 0;
          border-radius: clamp(1rem, 2.5vw, 1.5rem);
      }
      
      .testimonials-section .testimonials-header {
          padding: clamp(1.5rem, 4vw, 2rem);
      }
      
      .testimonials-section .rating-stars i {
          font-size: clamp(1.5rem, 5vw, 2rem);
      }
      
      .testimonials-section .testimonials-slider-wrapper {
          height: clamp(28rem, 70vh, 40rem);
      }
      
      .testimonials-section .slide-card {
        margin-left: -3rem;
          flex-direction: column;
          text-align: center;
          padding: clamp(1.5rem, 4vw, 2.5rem);
          gap: clamp(1.2rem, 4vw, 2rem);
          max-width: none;
      }
      
      .patient-media {
          width: clamp(10rem, 35vw, 14rem);
          height: clamp(9rem, 32vw, 13rem);
          margin: 0 auto;
      }
      
      .patient-info {
          width: 100%;
      }
      
      .patient-name {
          font-size: clamp(1.3rem, 5vw, 1.8rem);
          margin-bottom: clamp(0.6rem, 2vw, 1rem);
      }
      
      .testimonials-section .patient-testimonial {
          font-size: clamp(0.95rem, 3.8vw, 1.2rem);
          margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
          text-align: center;
          max-height: clamp(6rem, 15vh, 8rem);
          line-height: 1.5;
      }
      
      .patient-location {
          font-size: clamp(0.85rem, 3.5vw, 1.05rem);
      }
      
      .control-btn {
          width: clamp(2.5rem, 10vw, 3.5rem);
          height: clamp(2.5rem, 10vw, 3.5rem);
      }
      
      .control-btn i {
          font-size: clamp(1rem, 4vw, 1.3rem);
      }
      
      .slider-dots {
          padding: clamp(1.2rem, 3vw, 1.8rem);
      }
      
      .dot {
          width: clamp(8px, 3vw, 12px);
          height: clamp(8px, 3vw, 12px);
      }
  }
  
  /* Small Mobile Devices */
  @media (max-width: 480px) {
      .testimonials-section {
          padding: clamp(1rem, 3vw, 1.8rem) clamp(0.5rem, 1.5vw, 1rem);
      }
      
      .testimonials-header {
          padding: clamp(1rem, 3vw, 1.5rem);
      }
      
      .rating-stars i {
          font-size: clamp(1.3rem, 4.5vw, 1.7rem);
          gap: clamp(0.2rem, 0.8vw, 0.4rem);
      }
      
      .testimonials-slider-wrapper {
          height: clamp(25rem, 80vh, 35rem);
      }
      
      .slide-card {
          padding: clamp(1.2rem, 3.5vw, 2rem);
          gap: clamp(1rem, 3vw, 1.5rem);
      }
      
      .patient-media {
          width: clamp(8rem, 32vw, 11rem);
          height: clamp(7rem, 30vw, 10rem);
      }
      
      .patient-name {
          font-size: clamp(1.2rem, 4.5vw, 1.5rem);
          margin-bottom: clamp(0.5rem, 1.5vw, 0.8rem);
      }
      
      .testimonials-section .patient-testimonial {
          font-size: clamp(0.9rem, 3.5vw, 1.1rem);
          margin-bottom: clamp(0.7rem, 2vw, 1rem);
          line-height: 1.5;
          max-height: clamp(5rem, 12vh, 7rem);
      }
      
      .patient-location {
          font-size: clamp(0.8rem, 3.2vw, 1rem);
      }
      
      .control-btn {
          width: clamp(2.2rem, 9vw, 3rem);
          height: clamp(2.2rem, 9vw, 3rem);
      }
      
      .control-btn i {
          font-size: clamp(0.9rem, 3.5vw, 1.2rem);
      }
      
      .slider-controls {
          padding: 0 clamp(0.5rem, 1.5vw, 1rem);
      }
      
      .slider-dots {
          padding: clamp(1rem, 2.5vw, 1.5rem);
          gap: clamp(0.4rem, 1.2vw, 0.6rem);
      }
      
      .dot {
          width: clamp(7px, 2.5vw, 10px);
          height: clamp(7px, 2.5vw, 10px);
      }
  }
  
  /* Very Small Mobile */
  @media (max-width: 360px) {
      .slide-card {
          padding: 1rem;
          gap: 0.8rem;
      }
      
      .patient-media {
          width: 7rem;
          height: 6rem;
      }
      
      .patient-name {
          font-size: 1.1rem;
          margin-bottom: 0.4rem;
      }
      
      .testimonials-section .patient-testimonial {
          font-size: 0.85rem;
          margin-bottom: 0.6rem;
          max-height: 4rem;
          line-height: 1.4;
      }
      
      .patient-location {
          font-size: 0.75rem;
      }
  }
  
    #ravichandran, #kunaldasgupta{
      margin-top: 10%;
    }
  
    #ravi-destination, #kunal-dest{
      margin-top: -5%;
    }
    
    .patients-testimonials-slide{
      width: 100%;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(2rem, 4vw, 3rem);
      box-sizing: border-box;
      height: 100%;
    }
    
    .slide-bg{
      width: 88%;
      height: 85%;
      background-color: rgba(131, 93, 6, 0.7);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotateZ(-3deg);
      border-radius: clamp(1.5rem, 3vw, 2.5rem);
      opacity: 0.8;
      z-index: 1;
    }
    
    .slide-content{
      width: 85%;
      height: 80%;
      background-color: rgba(255, 255, 255, 0.98);
      position: relative;
      border-radius: clamp(1.5rem, 3vw, 2.5rem);
      display: flex;
      align-items: center;
      gap: clamp(1.5rem, 4vw, 2.5rem);
      padding: clamp(2rem, 5vw, 3.5rem);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      z-index: 2;
      box-sizing: border-box;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    .patients-testimonials-slide i{
      font-size: clamp(2.5rem, 6vw, 4rem);
      color: rgb(131, 93, 6);
      position: absolute;
      opacity: 0.8;
    }
    
    .patients-testimonials-slide i:nth-child(1){
      top: clamp(-8%, -2vw, -5%);
      left: clamp(1%, 2vw, 3%);
    }
    
    .patients-testimonials-slide i:nth-child(2){
      bottom: clamp(-8%, -2vw, -5%);
      right: clamp(1%, 2vw, 3%);
    }
    
    .patients-slide-img{
      width: clamp(9rem, 25vw, 14rem);
      height: clamp(8rem, 22vw, 13rem);
      position: relative;
      flex-shrink: 0;
      border-radius: clamp(1.8rem, 4vw, 2.5rem);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .patients-slide-img::after,
    .patients-slide-img::before{
      content: "";
      height: 100%;
      width: 100%;
      position: absolute;
      border: 0.2rem solid rgba(0, 0, 0, 0.4);
      border-radius: 3rem 0 3rem 0;
      z-index: -1;
    }
    
    .patients-slide-img::after{
      top: -1rem;
      left: -0.5rem;
    }
    
    .patients-slide-img::before{
      bottom: -1rem;
      right: -0.5rem;
    }
    
    .patients-slide-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 3rem 0 3rem 0;
    }
    
    .patients-slide-img iframe{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 3rem 0 3rem 0;
    }
  
    .patients-slide-img video{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 3rem 0 3rem 0;
    }
  
    .patients-slide-img #shilpa-agnihotri{
      object-position: 50% 82%; 
    }
  
    .patients-slide-img #Mushtaq-Khan{
      object-position: 50% 15%; 
    }
    
    .patients-slide-text{
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .patients-slide-text h3{
      font-size: var(--font-size-2xl);
      font-family: var(--font-heading);
      font-weight: var(--font-weight-semibold);
      color: #1a1a1a;
      margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
      letter-spacing: var(--letter-spacing-wide);
      line-height: var(--line-height-tight);
    }
    
    .patients-slide-text p{
      font-size: var(--font-size-base);
      font-family: var(--font-primary);
      color: #555;
      font-weight: var(--font-weight-normal);
      margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
      line-height: var(--line-height-relaxed);
      overflow-y: auto;
      max-height: clamp(4rem, 12vh, 8rem);
      scrollbar-width: thin;
      scrollbar-color: rgba(131, 93, 6, 0.3) transparent;
    }
    
    .patients-slide-text p::-webkit-scrollbar {
      width: 4px;
    }
    
    .patients-slide-text p::-webkit-scrollbar-track {
      background: transparent;
    }
    
    .patients-slide-text p::-webkit-scrollbar-thumb {
      background: rgba(131, 93, 6, 0.3);
      border-radius: 2px;
    }
    
    .patients-slide-text p::-webkit-scrollbar-thumb:hover {
      background: rgba(131, 93, 6, 0.5);
    }
    
    .patients-slide-text .patients-destination{
      font-size: var(--font-size-sm);
      font-family: var(--font-primary);
      color: rgb(131, 93, 6);
      font-weight: var(--font-weight-semibold);
      margin-top: auto;
    }
    
    .testimonials-controls {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 clamp(1rem, 3vw, 2rem);
      pointer-events: none;
      z-index: 30;
    }
    
    .testimonials-controls i{
      width: clamp(2.5rem, 6vw, 3.5rem);
      height: clamp(2.5rem, 6vw, 3.5rem);
      background-color: rgba(255, 255, 255, 0.95);
      opacity: 0.9;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: rgb(131, 93, 6);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 2px solid rgba(131, 93, 6, 0.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      pointer-events: auto;
      backdrop-filter: blur(10px);
    }
    
    .testimonials-controls i:hover{
      opacity: 1;
      background-color: rgb(131, 93, 6);
      color: white;
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(131, 93, 6, 0.4);
    }
    
    .testimonials-controls i:active{
      transform: scale(0.95);
    }
    
    
    /* Mobile and Tablet Responsiveness */
    @media (max-width: 768px) {
      .patients-testimonials-section {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(0.8rem, 1.5vw, 1rem);
        min-height: 100vh;
      }
      
      .patients-testimonials-wrapper {
        background-attachment: scroll;
        border-radius: clamp(1rem, 2vw, 1.5rem);
        height: clamp(32rem, 80vh, 45rem);
        flex-direction: column;
      }
      
      .patients-testimonials-header {
        padding: clamp(1rem, 3vw, 1.5rem);
        flex-shrink: 0;
      }
      
      .patients-testimonials-header i {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin: 0 clamp(0.1rem, 0.5vw, 0.3rem);
      }
      
      .patients-testimonials {
        flex: 1;
        padding: 0 clamp(0.5rem, 1.5vw, 1rem);
      }
      
      .slide-content {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 3vw, 1.8rem);
        padding: clamp(1.5rem, 4vw, 2.5rem);
        width: 92%;
        height: 85%;
        justify-content: center;
      }
      
      .patients-slide-img {
        width: clamp(8rem, 25vw, 12rem);
        height: clamp(7rem, 22vw, 11rem);
        margin: 0 auto;
        flex-shrink: 0;
      }
      
      .patients-slide-text {
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: clamp(0.5rem, 2vw, 1rem);
      }
      
      .patients-slide-text h3 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: clamp(0.5rem, 1.5vw, 0.8rem);
        line-height: 1.3;
      }
      
      .patients-slide-text p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
        max-height: clamp(4.5rem, 15vh, 8rem);
        overflow-y: auto;
        line-height: 1.6;
        text-align: center;
      }
      
      .patients-slide-text .patients-destination {
        font-size: clamp(0.9rem, 4.2vw, 1.2rem);
        margin-top: auto;
        font-weight: 600;
      }
      
      .testimonials-controls {
        padding: 0 clamp(0.8rem, 2vw, 1.2rem);
      }
      
      .testimonials-controls i {
        width: clamp(2.5rem, 9vw, 3.2rem);
        height: clamp(2.5rem, 9vw, 3.2rem);
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
      }
    }
    
    @media (max-width: 480px) {
      .patients-testimonials-section {
        padding: clamp(1rem, 2.5vw, 1.5rem) clamp(0.5rem, 1vw, 0.8rem);
        min-height: 100vh;
      }
      
      .patients-testimonials-wrapper {
        height: clamp(28rem, 75vh, 40rem);
      }
      
      .patients-testimonials-header {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
      }
      
      .patients-testimonials-header i {
        font-size: clamp(1.2rem, 4.5vw, 1.6rem);
        margin: 0 clamp(0.05rem, 0.3vw, 0.2rem);
      }
      
      .slide-content {
        gap: clamp(0.8rem, 2.5vw, 1.2rem);
        padding: clamp(1.2rem, 3.5vw, 2rem);
        width: 95%;
        height: 90%;
      }
      
      .patients-slide-img {
        width: clamp(7rem, 23vw, 9rem);
        height: clamp(6rem, 20vw, 8rem);
      }
      
      .patients-slide-text h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
        margin-bottom: clamp(0.4rem, 1.2vw, 0.6rem);
      }
      
      .patients-slide-text p {
        font-size: clamp(0.85rem, 3.8vw, 1rem);
        max-height: clamp(3.5rem, 12vh, 6rem);
        line-height: 1.5;
        margin-bottom: clamp(0.6rem, 1.8vw, 1rem);
      }
      
      .patients-slide-text .patients-destination {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
      }
      
      .testimonials-controls i {
        width: clamp(2.2rem, 8vw, 2.8rem);
        height: clamp(2.2rem, 8vw, 2.8rem);
        font-size: clamp(1rem, 4vw, 1.3rem);
      }
    }
    
    @media (max-width: 360px) {
      .patients-testimonials-section {
        padding: 1rem 0.5rem;
        min-height: 80vh;
      }
      
      .patients-testimonials {
        width: 98%;
        height: clamp(15rem, 32vh, 18rem);
      }
      
      .slide-content {
        gap: 0.5rem;
        padding: 1rem;
      }
      
      .patients-slide-img {
        width: clamp(5.5rem, 18vw, 7rem);
        height: clamp(4.5rem, 16vw, 6rem);
      }
      
      .patients-slide-text h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
      }
      
      .patients-slide-text p {
        font-size: 0.8rem;
        max-height: 2.8rem;
        line-height: 1.3;
      }
      
      .patients-slide-text .patients-destination {
        font-size: 0.8rem;
      }
      
      .testimonials-controls i {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.9rem;
      }
    }
    
    @media (min-width: 1286px) {
      .patients-testimonials-header h3{
        font-size: 1.8rem;
      }
      
      .patients-testimonials-header h1{
        font-size: 2.5rem;
        margin-top: 2%;
      }
    }
    
    
     /* ---------------------------------------------------------------------------2------------------------------------------------------------------------------------- */
    
     .you-tube-videos-main-section{
      min-height: 95vh;
      width: 100%;
      background-color: #ebe3da;
      padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .videos-section-header {
      text-align: center;
      margin-bottom: clamp(2rem, 4vw, 3rem);
      padding: 0 clamp(1rem, 3vw, 2rem);
    }
    
    .videos-section-header h2 {
      font-size: var(--font-size-4xl);
      font-family: var(--font-heading);
      font-weight: var(--font-weight-bold);
      color: #8B4513;
      margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
      letter-spacing: var(--letter-spacing-wide);
    }
    
    .videos-section-header h2::after {
      content: '';
      display: block;
      width: clamp(4rem, 10vw, 8rem);
      height: 3px;
      background: linear-gradient(90deg, #8B4513, #D2691E, #8B4513);
      margin: clamp(0.8rem, 2vw, 1.2rem) auto 0;
      border-radius: 2px;
    }
    
    .videos-section-header p {
      font-size: var(--font-size-lg);
      font-family: var(--font-primary);
      color: #666;
      font-weight: var(--font-weight-normal);
      line-height: var(--line-height-relaxed);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .video-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(1rem, 3vw, 2rem);
      padding: clamp(1rem, 4vw, 2rem);
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .video-container iframe {
      width: 100%;
      height: clamp(180px, 25vw, 200px);
      border-radius: clamp(0.5rem, 1vw, 1rem);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Video wrapper for better control */
    .video-wrapper {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      border-radius: clamp(0.5rem, 1vw, 1rem);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .video-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    .video-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: inherit;
    }
    
    /* Video loading state */
    .video-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.9);
      padding: 1rem 2rem;
      border-radius: 0.5rem;
      color: #8B4513;
      font-weight: 600;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
    }
    
    .video-loading i {
      margin-right: 0.5rem;
      font-size: 1.2rem;
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .video-container iframe:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    .pagination {
      text-align: center;
      margin: clamp(1.5rem, 4vw, 2rem);
      padding: 0 1rem;
    }
    
    .pagination button {
      background-color: #8B4513;
      color: white;
      border: none;
      padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 18px);
      margin: clamp(0.2rem, 1vw, 0.5rem);
      cursor: pointer;
      border-radius: clamp(0.3rem, 1vw, 0.5rem);
      font-size: clamp(0.9rem, 2vw, 1rem);
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
      font-weight: 600;
    }
    
    .pagination button:hover {
      background-color: #A0522D;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
    }
    
    .pagination button.active {
      background-color: #D2691E;
      box-shadow: 0 4px 12px rgba(210, 105, 30, 0.5);
    }
    
    .pagination button:active {
      transform: translateY(0);
    }
    
    /* YouTube Videos Responsive Design */
    @media (max-width: 768px) {
      .videos-section-header {
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
        padding: 0 clamp(0.8rem, 2vw, 1.5rem);
      }
      
      .videos-section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
      }
      
      .videos-section-header p {
        font-size: clamp(1rem, 3vw, 1.2rem);
      }
      
      .video-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
      }
      
      .video-container iframe {
        height: clamp(160px, 30vw, 180px);
      }
      
      .pagination {
        margin: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
      }
      
      .pagination button {
        padding: 8px 12px;
        font-size: 0.9rem;
        background-color: #8B4513;
      }
    }
    
    @media (max-width: 480px) {
      .videos-section-header {
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
        padding: 0 clamp(0.5rem, 1.5vw, 1rem);
      }
      
      .videos-section-header h2 {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
        margin-bottom: clamp(0.5rem, 1.2vw, 0.8rem);
      }
      
      .videos-section-header p {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
      }
      
      .video-container {
        grid-template-columns: 1fr;
        padding: 0.5rem;
      }
      
      .video-container iframe {
        height: clamp(140px, 35vw, 160px);
      }
      
      .pagination button {
        padding: 6px 10px;
        font-size: 0.8rem;
        background-color: #8B4513;
      }
    }
    
    @media (min-width: 1300px) {
      .video-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    
    /* --------------------------------------------------textual testimonial---------------------------------------------------------------- */
  
    
  /* Enhanced Textual Testimonials Section */
  .img-sec-testi {
    min-height: 100vh;
    background: linear-gradient(135deg, #c7c0b9 0%, #b8b0a8 50%, #c7c0b9 100%);
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .img-sec-testi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
  }
  
  .img-testi-container {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }
  
  .img-sec-testi .img-testi-container h2 {
    font-size: var(--font-size-4xl);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    color: #1a1a1a;
    letter-spacing: var(--letter-spacing-wide);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  .img-sec-testi .img-testi-container h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(4rem, 10vw, 8rem);
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #D2691E, #8B4513);
    border-radius: 2px;
  }
  
  /* Enhanced Swiper Container */
  .swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
  }
  
  /* Modern Card-Based Testimonial Slides */
  .swiper-slide {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.95));
    border-radius: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 
      0 20px 60px rgba(0,0,0,0.08),
      0 8px 25px rgba(139, 69, 19, 0.06);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 69, 19, 0.08);
    height: auto; /* Allow natural height */
    min-height: clamp(28rem, 55vh, 35rem);
    display: grid;
    grid-template-rows: auto 1fr auto; /* Header, content, footer */
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(2rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
  }
  
  /* Remove hover effects since no interaction is allowed */
  
  .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(4rem, 20%, 8rem);
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E, #8B4513);
    border-radius: 0 0 4px 4px;
  }
  
  /* Modern Testimonial Content Area */
  .swiper-client-msg {
    grid-row: 2; /* Middle section in grid */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1rem, 3vw, 2rem);
    position: relative;
    min-height: clamp(8rem, 25vh, 12rem);
  }
  
  /* Removed hover effects - auto-play only mode */
  
  .swiper-client-msg p {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: #555;
    margin: 0;
    padding: 0;
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
    word-wrap: break-word;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
  
  /* Modern Client Profile Section */
  .swiper-client-data {
    grid-row: 3; /* Bottom section in grid */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.2rem, 3vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(139, 69, 19, 0.03);
    border-radius: clamp(0.8rem, 2vw, 1.2rem);
    margin: 0 -0.5rem -0.5rem -0.5rem;
  }
  
  .swiper-client-data figure {
    margin: 0;
    flex-shrink: 0;
    position: relative;
  }
  
  .swiper-slide img {
    width: clamp(5rem, 15vw, 8rem);
    height: clamp(5rem, 15vw, 8rem);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 
      0 8px 30px rgba(0,0,0,0.1),
      0 2px 8px rgba(139, 69, 19, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
    outline: 2px solid rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
  }
  
  /* Removed image hover effects - auto-play only mode */
  
  .client-data-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.3rem, 1vw, 0.5rem);
  }
  
  .client-data-details p {
    font-family: 'Inter', 'Georgia', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #4a3f36;
    margin: 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
  }
  
  .client-data-details img {
    width: clamp(1.5rem, 4vw, 2rem);
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  
  /* No navigation buttons - auto-play only mode */
  
  /* Simple Swiper Pagination */
  .swiper-pagination {
    position: relative;
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(139, 69, 19, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 5px;
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background: #8B4513;
    transform: scale(1.2);
  }
  
  /* Responsive Design for Textual Testimonials */
  @media (max-width: 768px) {
    .img-sec-testi {
      padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
    }
    
    .swiper {
      padding: clamp(1rem, 3vw, 2rem);
    }
    
    .swiper-slide {
      min-height: clamp(32rem, 70vh, 42rem);
      padding: clamp(1.5rem, 4vw, 2.5rem);
      gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .swiper-client-msg {
      min-height: clamp(10rem, 25vh, 15rem);
      padding: clamp(0.8rem, 2vw, 1.5rem);
    }
    
    .swiper-client-msg p {
      font-size: clamp(1rem, 3.5vw, 1.3rem);
      line-height: 1.6;
    }
    
    .swiper-client-data {
      flex-direction: column;
      text-align: center;
      gap: clamp(1rem, 3vw, 1.5rem);
      align-items: center;
      padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .swiper-slide img {
      width: clamp(4rem, 18vw, 6rem);
      height: clamp(4rem, 18vw, 6rem);
    }
    
    .client-data-details p {
      font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
  }
  
  @media (max-width: 480px) {
    .swiper-slide {
      min-height: clamp(30rem, 75vh, 38rem);
      padding: clamp(1.2rem, 4vw, 2rem);
      gap: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .swiper-client-msg {
      padding: clamp(1rem, 3vw, 1.5rem);
      min-height: clamp(8rem, 20vh, 12rem);
    }
    
    .swiper-client-msg p {
      font-size: clamp(0.95rem, 4vw, 1.2rem);
      line-height: 1.5;
    }
    
    .swiper-client-data {
      padding: clamp(0.8rem, 2vw, 1.2rem);
      gap: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .swiper-slide img {
      width: clamp(3.5rem, 15vw, 5rem);
      height: clamp(3.5rem, 15vw, 5rem);
    }
    
    .client-data-details p {
      font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
  }
  
  @media (min-width: 1024px) {
    .swiper-slide {
      margin: 0 clamp(0.5rem, 1vw, 1rem);
      min-height: clamp(30rem, 55vh, 38rem);
      max-width: 90%;
    }
    
    .swiper-client-msg {
      min-height: clamp(8rem, 25vh, 12rem);
    }
    
    .swiper-client-msg p {
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
    
    .swiper-slide img {
      width: clamp(5rem, 12vw, 7rem);
      height: clamp(5rem, 12vw, 7rem);
    }
    
    .client-data-details p {
      font-size: clamp(1rem, 2vw, 1.1rem);
    }
  }
  
  /* Removed gray arrow - clean design */
  
  /* Removed quote icon for cleaner look */
  
  /* Removed closing quote icon for cleaner look */
  
  .swiper-client-data{
    align-items: center;
    display: flex;
    margin-top: clamp(2rem, 5vw, 3.2rem);
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .client-data-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
  }
  
  .client-data-details p{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.05rem;
    margin: 0;
    text-align: center;
    margin-bottom: 0.8rem;
  }
  
  .client-data-details img{
    height: 50px;
    width: 70px;
    object-fit: cover;
    margin-left: 1rem;
    /* border: 2px solid brown; */
  }
  
  .swiper-pagination{
    margin-bottom: 15rem;
  }
  
  /* --- Comprehensive Responsive Design --- */
  
  /* Large Desktop (1200px+) */
  @media (max-width: 1200px) {
    .patients-testimonials {
      width: 70%;
    }
    
    .slide-content {
      padding: 0 4rem;
    }
    
    .patients-slide-img {
      width: 13rem;
      height: 12rem;
    }
    
    .patients-slide-text h3 {
      font-size: 1.8rem;
    }
    
    .patients-slide-text p {
      font-size: 1.1rem;
    }
  }
  
  /* Medium Desktop (1024px - 1199px) */
  @media (max-width: 1199px) {
    .patients-testimonials {
      width: 75%;
    }
    
    .slide-content {
      padding: 0 3.5rem;
    }
    
    .patients-slide-img {
      width: 12rem;
      height: 11rem;
    }
    
    .patients-slide-text h3 {
      font-size: 1.7rem;
    }
    
    .patients-slide-text p {
      font-size: 1rem;
    }
  }
  
  /* Small Desktop (854px - 1023px) */
  @media (max-width: 1023px) {
    .patients-testimonials {
      width: 80%;
    }
    
    .slide-content {
      padding: 0 3rem;
    }
    
    .patients-slide-img {
      width: 11rem;
      height: 10rem;
    }
    
    .patients-slide-text h3 {
      font-size: 1.6rem;
    }
    
    .patients-slide-text p {
      font-size: 0.95rem;
    }
  }
  
  /* --- Complete Mobile-First Redesign --- */
  
  /* Mobile-First Approach - Start with Mobile */
  @media (max-width: 768px) {
    /* Top Testimonials Section - Mobile Redesign */
    .patients-testimonials-section {
      height: auto;
      min-height: 80vh;
      padding: 1rem;
      background-color: #ebe3da;
    }
    
    .patients-testimonials-wrapper {
      height: auto;
      min-height: 80vh;
      top: 0;
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url(StockCake-Dental\ Clinic\ Interior_1735830181.jpg) center no-repeat;
      background-size: cover;
      border-radius: 1rem;
      margin: 0.5rem;
      position: relative;
      overflow: hidden;
    }
    
    .patients-testimonials-header {
      position: relative;
      top: 0;
      padding: 2rem 0;
      text-align: center;
    }
    
    .patients-testimonials-header i {
      font-size: 2rem;
      color: rgb(255,220,62);
      margin: 0 0.3rem;
    }
    
    .patients-testimonials {
      width: 100%;
      height: auto;
      position: relative;
      top: 0;
      transform: none;
      padding: 0.5rem;
      overflow: hidden;
    }
    
    .patients-testimonials-slide {
      width: 100%;
      padding: 0.25rem;
    }
    
    .slide-content {
      width: 90%;
      max-width: 400px;
      height: auto;
      min-height: auto;
      position: relative;
      top: 0;
      transform: none;
      padding: 1rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 1rem;
      margin: 0 auto;
    }
    
    .patients-slide-img {
      width: 80px;
      height: 80px;
      margin: 0 auto;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .patients-slide-img img,
    .patients-slide-img video,
    .patients-slide-img iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    
    .patients-slide-text {
      width: 100%;
      margin-left: 0;
      text-align: center;
    }
    
    .patients-slide-text h3 {
      font-size: 1.2rem;
      color: #000;
      margin-bottom: 0.5rem;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text p {
      font-size: 0.9rem;
      color: #222;
      margin-bottom: 0.5rem;
      line-height: 1.4;
      font-weight: 500;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text .patients-destination {
      font-size: 1rem;
      color: #8B4513;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    /* Enhanced Navigation Controls */
    .testimonials-controls {
      position: relative;
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      pointer-events: auto;
      padding-bottom: 1rem;
    }
    
    .testimonials-controls i {
      position: static;
      transform: none;
      font-size: 1.2rem;
      width: 3rem;
      height: 3rem;
      background-color: rgba(255, 255, 255, 0.95);
      opacity: 1;
      border: 2px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      color: #333;
      z-index: 10;
      transition: all 0.3s ease;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
    }
    
    .testimonials-controls i:hover {
      background-color: rgba(255, 255, 255, 1);
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Remove slide background for mobile */
    .slide-bg {
      display: none;
    }
    
    /* YouTube Videos Section - Mobile Redesign */
    .you-tube-videos-main-section {
      padding: 2rem 1rem;
      height: auto;
      min-height: auto;
      background-color: #ebe3da;
    }
    
    .video-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1rem;
    }
    
    .video-container iframe {
      width: 100%;
      height: 200px;
      border-radius: 0.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .pagination {
      margin: 1.5rem 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .pagination button {
      padding: 0.8rem 1.2rem;
      font-size: 0.9rem;
      border-radius: 0.5rem;
      border: none;
      background-color: #007BFF;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .pagination button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Textual Testimonials Section - Mobile Redesign */
    .img-sec-testi {
      padding: 2rem 1rem;
      height: auto;
      min-height: auto;
      background-color: #c7c0b9;
    }
    
    .img-sec-testi .img-testi-container h2 {
      font-size: 1.8rem;
      padding: 1rem;
      text-align: center;
      color: #333;
      margin-bottom: 2rem;
    }
    
    .swiper {
      width: 100%;
      height: auto;
    }
    
    .swiper-slide {
      padding: 1rem;
      height: auto;
      min-height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    
    .swiper-client-msg {
      width: 100%;
      max-width: 400px;
      padding: 1.5rem;
      border-radius: 1rem;
      text-align: center;
      position: relative;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .swiper-client-msg p {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      letter-spacing: 0.1rem;
      line-height: 1.6;
      color: #333;
      font-size: 1rem;
      margin: 0;
    }
    
    /* Removed arrow for clean design */
    
    /* Removed quote icon for clean design */
    
    /* Removed closing quote icon for clean design */
    
    .swiper-client-data {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .client-data-details {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .client-data-details p {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.1rem;
      margin: 0;
      color: #333;
      font-weight: 500;
    }
    
    .client-data-details img {
      height: 30px;
      width: 40px;
      object-fit: cover;
      border-radius: 0.3rem;
    }
    
    .swiper-pagination {
      margin: 2rem 0;
    }
    
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #007BFF;
      opacity: 0.5;
      margin: 0 0.3rem;
    }
    
    .swiper-pagination-bullet-active {
      opacity: 1;
      background-color: #0056b3;
    }
    
    /* Additional Mobile Enhancements */
    .patients-testimonials-slider {
      touch-action: pan-y pinch-zoom;
    }
    
    .slide-content {
      touch-action: manipulation;
    }
    
    /* Improve touch targets */
    .testimonials-controls i {
      min-width: 44px;
      min-height: 44px;
    }
    
    .pagination button {
      min-width: 44px;
      min-height: 44px;
    }
    
    /* Better mobile spacing */
    .patients-testimonials-section {
      scroll-margin-top: 2rem;
    }
    
    .you-tube-videos-main-section {
      scroll-margin-top: 2rem;
    }
    
    .img-sec-testi {
      scroll-margin-top: 2rem;
    }
  }
  
  /* Mobile (700px - 767px) */
  @media (max-width: 767px) {
    .patients-testimonials-section {
      height: 100vh;
      padding-top: 8%;
    }
    
    .patients-testimonials-wrapper {
      height: 100vh;
      top: -10%;
    }
    
    .patients-testimonials-header {
      top: 12%;
    }
    
    .patients-testimonials-header i {
      font-size: 2rem;
      margin-top: 8%;
    }
    
    .patients-testimonials {
      width: 90%;
      height: 18rem;
      top: 55%;
    }
    
    .patients-testimonials-slide {
      padding: 0.5rem;
    }
    
    .slide-content {
      padding: 0 2rem;
      flex-direction: row;
      text-align: left;
      gap: 1rem;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .patients-slide-img {
      width: 10rem;
      height: 9rem;
      margin: 0;
    }
    
    .patients-slide-text {
      width: 70%;
      margin-left: 4%;
      text-align: left;
    }
    
    .patients-slide-text h3 {
      font-size: 1.3rem;
      color: #000;
      margin-bottom: 0.5rem;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text p {
      font-size: 0.95rem;
      color: #222;
      margin-bottom: 1rem;
      line-height: 1.4;
      font-weight: 500;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text .patients-destination {
      font-size: 1rem;
      color: #8B4513;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    /* YouTube videos section */
    .you-tube-videos-main-section {
      padding: 1.5rem 0.5rem;
    }
    
    .video-container {
      gap: 1.5rem;
      padding: 0.5rem;
    }
    
    .video-container iframe {
      height: 180px;
    }
    
    .pagination button {
      padding: 6px 12px;
      font-size: 0.8rem;
      margin: 0 3px;
    }
    
    /* Image testimonials section */
    .img-sec-testi {
      padding: 1.5rem 0.5rem;
    }
    
    .img-sec-testi .img-testi-container h2 {
      font-size: 1.6rem;
      padding: 1.5rem 0.5rem 1rem;
    }
    
    .swiper-slide {
      padding: 0.5rem;
      height: auto;
      min-height: 50vh;
    }
    
    .swiper-client-msg {
      padding: 0.5rem;
      font-size: 0.85rem;
    }
    
    .client-data-details p {
      font-size: 0.85rem;
    }
    
    /* Testimonials controls */
    .testimonials-controls i {
      font-size: 1.3rem;
      padding: 0.4rem;
    }
  }
  
  /* Small Mobile (500px - 699px) */
  @media (max-width: 699px) {
    .patients-testimonials-section {
      height: 100vh;
      padding-top: 10%;
    }
    
    .patients-testimonials-wrapper {
      height: 100vh;
      top: -10%;
    }
    
    .patients-testimonials-header {
      top: 10%;
    }
    
    .patients-testimonials-header i {
      font-size: 1.8rem;
      margin-top: 5%;
    }
    
    .patients-testimonials {
      width: 95%;
      height: 16rem;
      top: 60%;
    }
    
    .patients-testimonials-slide {
      padding: 0.5rem;
    }
    
    .slide-content {
      padding: 0 1.5rem;
      flex-direction: row;
      text-align: left;
      gap: 0.8rem;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .patients-slide-img {
      width: 8rem;
      height: 7rem;
      margin: 0;
    }
    
    .patients-slide-text {
      width: 70%;
      margin-left: 4%;
      text-align: left;
    }
    
    .patients-slide-text h3 {
      font-size: 1.3rem;
      color: #000;
      margin-bottom: 0.5rem;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text p {
      font-size: 0.95rem;
      color: #222;
      margin-bottom: 1rem;
      line-height: 1.4;
      font-weight: 500;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text .patients-destination {
      font-size: 1rem;
      color: #8B4513;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    /* YouTube videos section */
    .you-tube-videos-main-section {
      padding: 1.5rem 0.5rem;
    }
    
    .video-container {
      gap: 1.5rem;
      padding: 0.5rem;
    }
    
    .video-container iframe {
      height: 180px;
    }
    
    .pagination button {
      padding: 6px 12px;
      font-size: 0.8rem;
      margin: 0 3px;
    }
    
    /* Image testimonials section */
    .img-sec-testi {
      padding: 1.5rem 0.5rem;
    }
    
    .img-sec-testi .img-testi-container h2 {
      font-size: 1.6rem;
      padding: 1.5rem 0.5rem 1rem;
    }
    
    .swiper-slide {
      padding: 0.5rem;
      height: auto;
      min-height: 50vh;
    }
    
    .swiper-client-msg {
      padding: 0.5rem;
      font-size: 0.85rem;
    }
    
    .client-data-details p {
      font-size: 0.85rem;
    }
    
    /* Testimonials controls */
    .testimonials-controls i {
      font-size: 1.3rem;
      padding: 0.4rem;
    }
  }
  
  /* Extra Small Mobile (500px and below) */
  @media (max-width: 500px) {
    .patients-testimonials-section {
      height: 100vh;
      padding-top: 12%;
    }
    
    .patients-testimonials-wrapper {
      height: 100vh;
      top: -10%;
    }
    
    .patients-testimonials-header {
      top: 8%;
    }
    
    .patients-testimonials-header i {
      font-size: 1.5rem;
      margin-top: 3%;
    }
    
    .patients-testimonials {
      width: 98%;
      height: 14rem;
      top: 65%;
    }
    
    .patients-testimonials-slide {
      padding: 0.5rem;
    }
    
    .slide-content {
      padding: 0 1rem;
      flex-direction: row;
      text-align: left;
      gap: 0.6rem;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .patients-slide-img {
      width: 6rem;
      height: 5rem;
      margin: 0;
    }
    
    .patients-slide-text {
      width: 70%;
      margin-left: 4%;
      text-align: left;
    }
    
    .patients-slide-text h3 {
      font-size: 1.2rem;
      color: #000;
      margin-bottom: 0.5rem;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text p {
      font-size: 0.9rem;
      color: #222;
      margin-bottom: 0.8rem;
      line-height: 1.4;
      font-weight: 500;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .patients-slide-text .patients-destination {
      font-size: 0.95rem;
      color: #8B4513;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .you-tube-videos-main-section {
      padding: 1rem 0.5rem;
      height: auto;
      min-height: 70vh;
    }
    
    .video-container {
      gap: 1rem;
      padding: 0.5rem;
    }
    
    .video-container iframe {
      height: 150px;
    }
    
    .pagination {
      margin: 0.5rem;
    }
    
    .pagination button {
      padding: 5px 10px;
      font-size: 0.75rem;
      margin: 0 2px;
    }
    
    .img-sec-testi {
      padding: 1rem 0.5rem;
      height: auto;
      min-height: 70vh;
    }
    
    .img-sec-testi .img-testi-container h2 {
      font-size: 1.4rem;
    }
    
    .swiper-slide {
      padding: 0.5rem;
    }
    
    .swiper-client-msg {
      padding: 0.5rem;
      font-size: 0.7rem;
    }
    
    .client-data-details p {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 400px) {
    .patients-testimonials-section {
      height: 100vh;
      padding-top: 15%;
    }
    
    .patients-testimonials-wrapper {
      height: 100vh;
      top: -10%;
    }
    
    .patients-testimonials-header {
      top: 5%;
    }
    
    .patients-testimonials-header i {
      font-size: 1.3rem;
      margin-top: 2%;
    }
    
    .patients-testimonials {
      width: 98%;
      height: 12rem;
      top: 70%;
    }
    
    .slide-content {
      padding: 0 0.8rem;
      flex-direction: row;
      text-align: left;
      gap: 0.5rem;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .patients-slide-img {
      width: 5rem;
      height: 4rem;
      margin: 0;
    }
    
    .patients-slide-text {
      width: 70%;
      margin-left: 4%;
      text-align: left;
    }
    
    .patients-slide-text h3 {
      font-size: 1.1rem;
      color: #111;
      margin-bottom: 0.4rem;
    }
    
    .patients-slide-text p {
      font-size: 0.85rem;
      color: rgb(30, 40, 50);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }
    
    .patients-slide-text .patients-destination {
      font-size: 0.9rem;
      color: rgb(102, 74, 8);
      font-weight: 500;
    }
    
    /* YouTube videos section */
    .you-tube-videos-main-section {
      padding: 0.5rem;
      height: auto;
      min-height: 60vh;
    }
    
    .video-container {
      gap: 0.5rem;
      padding: 0.5rem;
    }
    
    .video-container iframe {
      height: 140px;
    }
    
    .pagination button {
      padding: 4px 8px;
      font-size: 0.7rem;
      margin: 0 1px;
    }
    
    /* Image testimonials section */
    .img-sec-testi {
      padding: 0.5rem;
      height: auto;
      min-height: 60vh;
    }
    
    .img-sec-testi .img-testi-container h2 {
      font-size: 1.2rem;
      padding: 0.5rem;
    }
    
    .swiper-slide {
      padding: 0.5rem;
      height: auto;
      min-height: 40vh;
    }
    
    .swiper-client-msg {
      font-size: 0.6rem;
      padding: 0.5rem;
    }
    
    .client-data-details p {
      font-size: 0.6rem;
    }
    
    /* Testimonials controls */
    .testimonials-controls i {
      font-size: 1.2rem;
      width: 3rem;
      height: 3rem;
      background-color: rgba(255, 255, 255, 0.9);
      opacity: 0.8;
      border: 2px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .testimonials-controls i:nth-child(1) {
      left: 3%;
    }
    
    .testimonials-controls i:nth-child(2) {
      right: 3%;
    }
    
    .client-data-details p {
      font-size: 0.6rem;
    }
  }
  
  @media (max-width: 360px) {
    .patients-testimonials-section {
      height: 100vh;
      padding-top: 18%;
    }
    
    .patients-testimonials-wrapper {
      height: 100vh;
      top: -10%;
    }
    
    .patients-testimonials-header {
      top: 3%;
    }
    
    .patients-testimonials-header i {
      font-size: 1.1rem;
      margin-top: 1%;
    }
    
    .patients-testimonials {
      width: 98%;
      height: 10rem;
      top: 75%;
    }
    
    .slide-content {
      padding: 0 0.6rem;
      flex-direction: row;
      text-align: left;
      gap: 0.4rem;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .patients-slide-img {
      width: 4rem;
      height: 3rem;
      margin: 0;
    }
    
    .patients-slide-text {
      width: 70%;
      margin-left: 4%;
      text-align: left;
    }
    
    .patients-slide-text h3 {
      font-size: 1rem;
      color: #111;
      margin-bottom: 0.3rem;
    }
    
    .patients-slide-text p {
      font-size: 0.8rem;
      color: rgb(30, 40, 50);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    
    .patients-slide-text .patients-destination {
      font-size: 0.85rem;
      color: rgb(102, 74, 8);
      font-weight: 500;
    }
    
    /* YouTube videos section */
    .you-tube-videos-main-section {
      padding: 0.5rem;
      height: auto;
      min-height: 50vh;
    }
    
    .video-container {
      gap: 0.5rem;
      padding: 0.5rem;
    }
    
    .video-container iframe {
      height: 120px;
    }
    
    .pagination button {
      padding: 3px 6px;
      font-size: 0.65rem;
      margin: 0 1px;
    }
    
    /* Image testimonials section */
    .img-sec-testi {
      padding: 0.5rem;
      height: auto;
      min-height: 50vh;
    }
    
    .img-sec-testi .img-testi-container h2 {
      font-size: 1.1rem;
      padding: 0.5rem;
    }
    
    .swiper-slide {
      padding: 0.5rem;
      height: auto;
      min-height: 35vh;
    }
    
    .swiper-client-msg {
      font-size: 0.5rem;
      padding: 0.5rem;
    }
    
    .client-data-details p {
      font-size: 0.5rem;
    }
    
    /* Testimonials controls */
    .testimonials-controls i {
      font-size: 0.9rem;
      padding: 0.2rem;
    }
  }
  
  /* ============================================================================= Floating Elements & Mobile Optimizations =========================================================================== */
  
  /* Floating phone and WhatsApp buttons */
  #contact-btn .phn-no {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 15px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  #contact-btn .phn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #A0522D, #8B4513);
  }
  
  .whatsapp-no {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
  }
  
  .whatsapp-no a {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: #25D366;
    transition: all 0.3s ease;
  }
  
  
  .whatsapp-no a:hover {
    transform: scale(1.1);
  }
  
  /* Footer Responsive Adjustments */
  footer {
    background: #333;
    color: white;
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
  }
  
  .last-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .first-footer-section {
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 2rem);
  }
  
  .first-footer-section p {
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  
  .second-footer-section {
    text-align: center;
  }
  
  .second-footer-section p {
    margin: 1rem 0;
    line-height: 1.6;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
  }
  
  #add1 {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    opacity: 0.8;
  }
  
  #address span {
    font-weight: bold;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
  }
  
  /* Mobile Specific Adjustments */
  @media (max-width: 768px) {
    /* Adjust floating buttons for mobile */
    #contact-btn .phn-no {
      bottom: 15px;
      right: 15px;
      padding: 8px 12px;
    }
    
    .whatsapp-no {
      bottom: 65px;
      right: 15px;
    }
    
    /* Hide background attachment on mobile for better performance */
    .patients-testimonials-wrapper {
      background-attachment: scroll;
    }
    
    /* Ensure no horizontal scrolling */
    body {
      max-width: 100vw;
      overflow-x: hidden;
    }
    
    /* Footer adjustments */
    .first-footer-section {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    /* Adjust floating buttons for very small screens */
    #contact-btn .phn-no {
      font-size: 0.7rem;
      padding: 6px 10px;
    }
  }
  
  /* Performance optimization - reduce animations on mobile */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .patients-testimonials-header i,
    .swiper-client-msg {
      filter: contrast(1.5);
    }
  }
  
  /* Print styles */
  @media print {
    .whatsapp-no,
    #contact-btn {
      display: none !important;
    }
    
    body {
      background: white !important;
      color: black !important;
    }
    
    .patients-testimonials-wrapper {
      background: none !important;
    }
  }
  
  /* ==========================================
     SIMPLE & RELIABLE TEXTUAL TESTIMONIALS SLIDER
     ========================================== */
  
  .testimonials-text-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
  }
  
  .testimonials-text-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonials-text-title {
    font-size: var(--font-size-5xl);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 60px;
    color: #8B4513;
  }
  
  .testimonials-text-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    margin: 20px auto 0;
    border-radius: 2px;
  }
  
  .testimonials-slider-wrapper {
    position: relative;
    /* background: white; */
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
  }
  
  .testimonials-slider-container {
    overflow: hidden;
    width: 100%;
  }
  
  .testimonials-slides-track {
    display: flex;
    width: 500%; /* 5 slides */
    transition: transform 0.8s ease-in-out;
  }
  
  .testimonial-text-slide {
    width: 20%; /* 100% / 5 slides = 20% */
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-quote {
    margin-bottom: 40px;
    max-width: 600px;
  }
  
  .testimonial-quote p {
    font-size: var(--font-size-lg);
    font-family: var(--font-primary);
    line-height: var(--line-height-loose);
    color: #555;
    font-weight: var(--font-weight-normal);
    font-style: italic;
    position: relative;
    margin: 0;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #8B4513;
    flex-shrink: 0;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .testimonial-text-slide:hover .author-image img {
    transform: scale(1.1);
  }
  
  .author-info h4 {
    font-size: var(--font-size-lg);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    color: #8B4513;
    margin: 0 0 8px 0;
  }
  
  .author-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }
  
  .author-info img {
    width: 20px;
    height: auto;
    border-radius: 2px;
  }
  
  /* Simple Progress Bar */
  .slider-progress {
    width: 100%;
    height: 6px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 3px;
    transition: width 0.8s ease-in-out;
    width: 20%; /* Start at 20% (first slide) */
  }
  
  /* Simple Dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dot:hover {
    background: rgba(139, 69, 19, 0.6);
    transform: scale(1.2);
  }
  
  .slider-dot.active {
    background: #8B4513;
    transform: scale(1.3);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .testimonials-text-section {
      padding: 60px 15px;
    }
    
    .testimonial-text-slide {
      padding: 40px 20px;
    }
    
    .testimonial-author {
      flex-direction: column;
      gap: 15px;
    }
    
    .author-image {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-text-slide {
      padding: 30px 15px;
    }
    
    .author-image {
      width: 50px;
      height: 50px;
    }
    
    .author-info h4 {
      font-size: 1.1rem;
    }
    
    .author-info p {
      font-size: 0.9rem;
    }
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .testimonials-slides-track,
    .progress-fill,
    .slider-dot,
    .author-image img {
      transition: none !important;
    }
  }