  .react-coverflow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
  }
  
  .react-coverflow-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .react-coverflow-slide {
    position: absolute;
    width: 550px;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-origin: center center;
  }
  
  .react-coverflow-slide:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  }
  
  .react-coverflow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .react-coverflow-slide:hover .react-coverflow-image {
    transform: scale(1.05);
  }

  /* Background slides styling to match reference image */
  .react-coverflow-slide:not(:hover) .react-coverflow-image {
    transform-origin: center center;
  }

  /* Adjust background slides to be more rectangular like reference */
  .react-coverflow-slide[style*="scale(0.85)"] .react-coverflow-image,
  .react-coverflow-slide[style*="scale(0.7)"] .react-coverflow-image {
    /* transform: scaleY(1.2) scaleX(0.9); */
    object-position: center center;
  }
  
  .react-coverflow-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.05); */
    /* transition: opacity 0.7s ease; */
  }
  
  /* Navigation Buttons */
  .react-coverflow-nav {
    position: relative;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 20;
    padding: 0;
    outline: none;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  
  
  .react-coverflow-nav svg {
    display: block;
    flex-shrink: 0;
  }
  
  
  
  
  
  
  /* Navigation and Pagination Container */
  .react-coverflow-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 20;
  }
  
  /* Pagination Dots */
  .react-coverflow-pagination {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
  
  .react-coverflow-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    outline: none;
    flex-shrink: 0;
    display: block;
  }
  
  .react-coverflow-dot:hover {
    background: #9ca3af;
    transform: scale(1.1);
  }
  
  .react-coverflow-dot.active {
    background: #0099b8;
    transform: scale(1.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .react-coverflow-container {
      height: 350px;
    }
  
    .react-coverflow-slide {
      width: 300px;
      height: 225px;
    }
  
    .react-coverflow-nav {
      width: 36px;
      height: 36px;
      min-width: 36px;
      min-height: 36px;
      font-size: 16px;
    }
  
    .react-coverflow-nav-prev {
      left: 12px;
    }
  
    .react-coverflow-nav-next {
      right: 12px;
    }
    
    .react-coverflow-pagination {
      bottom: 20px;
      gap: 10px;
    }
    
    .react-coverflow-dot {
      width: 10px;
      height: 10px;
      min-width: 10px;
      min-height: 10px;
    }
    
  }
  
  @media (max-width: 480px) {
    .react-coverflow-container {
      height: 300px;
    }
  
    .react-coverflow-slide {
      width: 250px;
      height: 190px;
    }
  
    .react-coverflow-pagination {
      bottom: 16px;
      gap: 8px;
    }
  
    .react-coverflow-dot {
      width: 8px;
      height: 8px;
      min-width: 8px;
      min-height: 8px;
    }
    
    .react-coverflow-nav {
      width: 32px;
      height: 32px;
      min-width: 32px;
      min-height: 32px;
      font-size: 14px;
    }
    
  }
  
  
  
  @media only screen and (max-width:768px){
      
           .react-coverflow-slide {
              width: 250px!important;
              height: 190px!important;
            }
      
      
         .react-coverflow-slide img{
        	object-position: center;
        	object-fit: cover !important;
        	height: 100%!important;
        	width: 100%!important;
        }
        
        .mobile-contain {
            height: 300px !important;
        }
        

  }