/* Should you need to overwrite any of our SCSS or LESS or SASS code need to add any custom code, We recommend that you add your code into this file, so whenever theme update is available and you update the theme, You will not lose your hard work :) */


.brands .stream-wrapper .stream-img {
    background-color: #fff;
    height: 5rem; /* Smaller height for mobile */
    width: 100%; /* Full width of parent */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.brands .stream-wrapper .stream-img img {
    max-width: 100%;
    /* max-height: 100%; */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover effects */
.brands .stream-wrapper .stream-img:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.brands .stream-wrapper .stream-img:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments with different heights for different screen sizes */
@media (min-width: 576px) {
    .brands .stream-wrapper .stream-img {
        height: 6rem;
        border-radius: 18px;
        padding: 0.85rem;
    }
}

@media (min-width: 768px) {
    .brands .stream-wrapper .stream-img {
        height: 6rem;
        border-radius: 20px;
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .brands .stream-wrapper .stream-img {
        height: 7rem;
        border-radius: 22px;
        padding: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .brands .stream-wrapper .stream-img {
        height: 5rem;
        border-radius: 24px;
        padding: 1.5rem;
    }
}

/* Optional: Add a subtle gradient background for more visual interest */
.brands .stream-wrapper .stream-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brands .stream-wrapper .stream-img:hover::before {
    opacity: 1;
}

.brands .stream-wrapper .stream-img img {
    position: relative;
    z-index: 2;
}




/* General Styles */
.infinity-scroller-section {
    background-color: #ffffff;
    padding: 40px 0;
  }
  
  .infinity-scroller-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .infinity-scroller {
    display: flex;
    /* gap: 2rem; */
    gap: 0.2rem;
    animation: infinityScroll 30s linear infinite;
    width: max-content;
  }
  
  .infinity-scroller:hover {
    animation-play-state: paused;
  }
  
  .infinity-brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 10px;
    transition: transform 0.3s ease;
  }
  
  .infinity-brand-item:hover {
    transform: scale(1.05);
  }
  
  .infinity-brand-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
  }
  
  /* Infinite Scroll Animation */
  @keyframes infinityScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 18 - 2rem * 18));
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .infinity-brand-item {
        min-width: 120px;
    }
  
    .infinity-brand-logo {
        max-width: 100px;
    }
  
    @keyframes infinityScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 18 - 2rem * 18));
        }
    }
  }
  
  @media (max-width: 480px) {
    .infinity-brand-item {
        min-width: 100px;
    }
  
    .infinity-brand-logo {
        max-width: 80px;
    }
  
    @keyframes infinityScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 18 - 2rem * 18));
        }
    }
  }

  
  /****  Review section *****/
  .rs-slider::before,
.rs-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Left fade (white to transparent right) */
.rs-slider::before {
  left: 0;
  background: linear-gradient(to right, white 10%, transparent);
}

/* Right fade (white to transparent left) */
.rs-slider::after {
  right: 0;
  background: linear-gradient(to left, white 10%, transparent);
}
  .rs-wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 5rem 2rem; */
    /* padding: 0 1rem;  */
}

.rs-section {
    position: relative;
    padding: 0;
}

.rs-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.rs-heading-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.rs-heading-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.rs-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.rs-track {
    display: flex;
    gap: 2rem; /**/
    transition: transform 0.5s ease-in-out;
}

.rs-slide {
    flex: 0 0 100%;
    /* padding: 0 1rem; */
    padding: 0;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .rs-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .rs-slide {
        flex: 0 0 33.333%;
    }
}

.rs-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rs-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.rs-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rs-card:hover .rs-img-container img {
    transform: scale(1.05);
}

.rs-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rs-review-text {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.rs-review-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.rs-stars {
    display: flex;
    margin-bottom: 1rem;
}

.rs-star {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 2px;
}

.rs-author {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.rs-platform {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.rs-platform-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.rs-platform-name {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.rs-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.rs-arrow {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rs-arrow:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.rs-arrow:active {
    transform: translateY(0);
}

.rs-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.rs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rs-dot.rs-active {
    background: #666;
    transform: scale(1.2);
}

  /**** End Review section *****/

  /****Footer payment section *****/


  .payment-methods {
    margin-bottom: 1.5rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
    width: 100%;
}

.payment-card {
    background-color: #ffffff;
    border-radius: 8px;
    /* padding: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/10;
    max-width: 100%;
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.payment-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.payment-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 320px;
        /* margin: 0 auto; */
    }
}

@media (max-width: 480px) {
    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
        /* max-width: 180px; */
    }
}



  /****End Footer payment section *****/



  /*Sections responsive style*/
  .full-screen {
    min-height: 100vh;
  }
  
  .min-hs-vh {
    min-height: 100vh;
  }
  .section-hsm-2{

  }
  .section-hsm-3{

  }
  .section-hsm-4{
    padding: 70px 0 0px 0;
  }
  .section-hsm-4 .section-heading{
    margin-bottom: 68px;
  }
  .section-hsm-5{
      padding: 0px 0 70px 0;
  }
  .section-hsm-6{

  }
  .section-hsm-5{

  }
  
  /* Large desktop view */
  @media (max-width: 1440px) {
    .min-hs-vh { 
        min-height: 100vh !important;
  }
  .full-screen {
    min-height: 100vh !important; 
  }
  .section-hsm-2{

  }
  .section-hsm-3{

  }
  .section-hsm-4{
    padding: 70px 0 0px 0;
  }
  .section-hsm-4 .section-heading{
    margin-bottom: 68px;
  }
  .section-hsm-5{
      padding: 0px 0 70px 0;
  }
  .section-hsm-6{

  }
  .section-hsm-5{

  }
  }
   /* Desktop view */
   @media (max-width: 1025px) {
    .min-hs-vh { 
        min-height: 100vh !important;
  }
   .full-screen {
    min-height: 100vh !important; /* fallback */
  }
  .section-hsm-2{

  }
  .section-hsm-3{

  }
  .section-hsm-4{
    padding: 70px 0 0px 0;
  }
  .section-hsm-5{
      padding: 0px 0 70px 0;
  }
  .section-hsm-6{

  }
  .section-hsm-5{

  }
  }
 
  @media (max-width: 768px) {
    .min-hs-vh { 
          min-height: 55vh !important;
          
    }
    .full-screen {
        min-height: 55vh !important; /* fallback */
      }
    .section-hsm-2{

    }
    .section-hsm-3{

    }
    .section-hsm-4{

    }
    .section-hsm-5{
        padding: 0px 0 70px 0;
    }
    .section-hsm-6{

    }
    .section-hsm-5{

    }
  }
  @media (max-width: 376px) {
    .min-hs-vh { 
          min-height: 71vh !important;
          
    }
    .full-screen {
        min-height: 71vh !important; /* fallback */
      }
    .section-hsm-2{

    }
    .section-hsm-3{

    }
    .section-hsm-4{

    }
    .section-hsm-5{
        padding: 0px 0 70px 0;
    }
    .section-hsm-6{

    }
    .section-hsm-5{

    }
  }
 