* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

body {
    font-family: "Roboto", sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0055ff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #0055ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0055ff, #ff00aa);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

/* .animated-text:hover{
    background-image: linear-gradient(to right, #f3ec78, #af4261);
    background-clip: text;
    -webkit-background-clip: text; 
    color: transparent;
    -webkit-text-fill-color: transparent;
} */

.animated-text{
    position: relative;
    
}

.animated-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-text span.visible {
    opacity: 1;
    transform: translateY(0);
    color: black !important;
}
.animated-text sup.visible {
    opacity: 1;
    transform: translateY(0);
    color: black !important;
}


.animated-text2 span {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-text2 span.visible {
    opacity: 1;
    transform: translateY(0);
    color: black !important;
}

.hero .p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #555;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero .p.visible {
    opacity: 1;
    transform: translateY(0);
}



.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #0055ff, #ff00aa);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 85, 255, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.1), rgba(255, 0, 170, 0.1));
    filter: blur(50px);
    z-index: 1;
    animation: gradientPulse 5s ease infinite alternate;
}

@keyframes gradientPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.features {
    padding: 80px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.features.visible {
    opacity: 1;
    transform: translateY(0);
}

.features h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, opacity 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 85, 255, 0.15);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 20px;
    font-weight: 400;
    color: #666;
}

.about {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 150%;
    background: url('https://via.placeholder.com/1920x1080?text=Parallax+Background') center/cover no-repeat fixed;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.common-tb-padding{
    padding: 7px 0;
}


.align-content-left{
    text-align: left;
}

.last{
    position: relative;
    top: -16px;
    left: -20px;
    font-size: 24px;
}

.common-spacing-box{
    padding: 10px;
}

.about-content {
    max-width: 1000px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 18px;
    color: #555;
}

.signup {
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.signup.visible {
    opacity: 1;
    transform: translateY(0);
}

.signup h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.signup p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #666;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.app-button {
    padding: 15px 30px;
     background: linear-gradient(90deg, #a8e063, #56ab2f);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 85, 255, 0.3);
}

footer {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 14px;
    font-weight: 300;
    color: #666;
}

.social-links a {
    color: #0055ff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff00aa;
}

.animate-on-scroll {
    transition: all 1s ease-out;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .features h2, .about h2, .signup h2, .features-section h2 {
        font-size: 32px;
    }
    .h2{
        font-size: 32px;
    }

    .feature-card, .about-content {
        padding: 20px;
    }
}






.products {
    background: #f8f9fa;
    padding-bottom: 100px;
    padding-top: 100px;
}

/* .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
} */

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, opacity 0.5s ease;
    transform: translateY(50px);
    width: 25%;
    margin: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* 
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 85, 255, 0.15);
} */

/* .product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 85, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.1), rgba(255, 0, 170, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 1;
} */


.products h2{
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.product-card .product-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #0055ff;
    transition: transform 0.3s ease;
}



.product-card:hover .product-icon {
    transform: scale(1.1);
}

.percent-off{
    background: #d90429;
    font-weight: 500;
    color: white !important;
    padding: 5px 10px;
    width: max-content;
    border-radius: 5px;
}

.product-card h5 {
    text-align: start;
}
.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    z-index: 1;
    text-align: start;
    margin-bottom: 0;
}

.product-card p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    /* margin-bottom: 25px; */
    position: relative;
    z-index: 1;
}

.buy-now-button {
    display: flex;
    justify-content: center;
    /* width: max-content; */
    /* display: inline-block; */
    padding: 12px 35px;
    background: linear-gradient(90deg, #56ab2f, #a8e063);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
}

.buy-now-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 85, 255, 0.4);
    background: linear-gradient(90deg, #a8e063, #56ab2f);
}



@media screen and (min-width: 1400px) {
  /* CSS rules for screens wider than 768px */
  .product-card {
    width: 25%;
  }

  .product-grid{
    width: 100% !important;
  }

}



@media screen and (max-width: 1400px) {
  /* CSS rules for screens wider than 768px */
  .product-card {
    width: 40%;
  }

  .product-grid{
    width: 100% !important;
  }

}




@media screen and (max-width: 745px) {
  /* CSS rules for screens wider than 768px */
  .product-card {
    width: 90%;
  }

  .product-grid{
    width: 100% !important;
  }

}


.container {
            text-align: center;
            position: relative;
        }
        .word {
            /* font-size: 2.5em; */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
            display: inline-block;
            margin: 0 5px;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .cursor {
            position: absolute;
            width: 10px;
            height: 40px;
            background-color: #000;
            animation: blink 0.7s infinite;
            top: 50%;
            transform: translateY(-50%);
            display: none;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }


.carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.carousel img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    position: absolute;
    top: 0;
    left: 100%;
    transition: left 0.5s ease;
}
.carousel img.active {
    left: 0;
}
.carousel img.prev {
    left: -100%;
}






.features-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      text-align: center;
      position: relative;
    }

    .features-section h2 {
      /* font-size: 2.7rem;
      margin-bottom: 20px;
      color: #111827;
      animation: fadeInDown 1s ease forwards; */
      font-size: 48px;
        margin-bottom: 20px;
        color: #333;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    .feature-card {
      background: #fff;
      border-radius: 20px;
      padding: 35px 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(60px) scale(0.95);
      position: relative;
      overflow: hidden;
      animation: float 5s ease-in-out infinite;
      animation-play-state: paused; /* paused until reveal */
    }

    .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(37, 99, 235, 0.1), transparent);
      transition: all 0.6s ease;
    }

    .feature-card.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      animation-play-state: running; /* start floating once revealed */
    }

    .feature-card:hover::before {
      left: 100%;
    }

    .feature-card:hover {
      transform: translateY(-12px) scale(1.05);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .icon {
      font-size: 2.8rem;
      color: #2563eb;
      margin-bottom: 15px;
      display: inline-block;
      transition: transform 0.5s ease;
    }

    .feature-card:hover .icon {
      transform: rotate(15deg) scale(1.2);
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: #111827;
      position: relative;
    }

    .feature-card h3::after {
      content: "";
      display: block;
      width: 40px;
      height: 3px;
      /* background: #2563eb; */
      background: white;
      margin: 10px auto 0;
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .feature-card:hover h3::after {
      transform: scaleX(1);
    }

    .feature-card p {
      font-size: 0.95rem;
      color: #6b7280;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      /* .features-section h2 {
        font-size: 2.2rem;
      } */

        .h2{
            font-size: 2.2rem;
        }
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-10px) scale(1.01); }
      100% { transform: translateY(0) scale(1); }
    }


.feature-card img{
    height: 75px !important;
    width: auto;
}





 .contact-cards {
    margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .contact-cards .card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      width: 280px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      opacity: 0;
      transform: translateY(40px);
    }

     .contact-cards .card.show {
      opacity: 1;
      transform: translateY(0);
      transition: 0.6s ease;
    }

     .contact-cards .card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

     .contact-cards .card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: black;
    }

     .contact-cards .card p {
      font-size: 1rem;
      margin-bottom: 0;
      color: black;
    }




    /* Banner Section Styles */
.banner-section {
    margin: 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    max-width: 1200px; /* Optional: limits max width */
    height: auto; /* Maintains aspect ratio */
    display: block;
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Optional: subtle shadow */
    object-fit: cover; /* Ensures image covers the container */
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-image {
        max-width: 95%;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        max-width: 95%;
        border-radius: 0;
    }
}


/* Back to Top Button Styles */
#backToTop {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-size: 15px;
    background-color: black; /* Change as per your theme */
    color: white;
    border: none;
    /* border-radius: 50%; */
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: black;
    transform: scale(1.1);
}


.h2{
    margin: 20px 0;
    text-align: center;
    font-size: 2.7rem;
      margin-bottom: 20px;
      color: #111827;
      animation: fadeInDown 1s ease forwards;
    margin-bottom: 60px;
}

.carousel-slider {
      
      position: relative;
      width: 95%;
      margin: 50px auto;
      margin-top: 25px;
      max-width: 1200px;
      aspect-ratio: 16 / 9; /* keeps it proportional on all screens */
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
      background: #000;
    }

    .slides {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 0.8s ease, transform 1s ease;
      pointer-events: none;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide.active img {
      animation: kb 6s ease-in-out forwards;
    }
    @keyframes kb {
      0% { transform: scale(1.02); }
      100% { transform: scale(1.08); }
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      font-size: 24px;
      cursor: pointer;
      padding: 10px;
      height: 50px;
      width: 50px;
      border-radius: 50%;
      transition: 0.3s;
      z-index: 2;
    }
    .nav-btn:hover { background: rgba(0,0,0,0.8); }
    .prev { left: 10px; }
    .next { right: 10px; }

    .dots {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      z-index: 2;
    }
    .dot {
      height: 10px;
      width: 10px;
      margin: 0 4px;
      background-color: rgba(255,255,255,0.6);
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .dot:hover { transform: scale(1.15); }
    .dot.active { background-color: white; }

    @media (max-width: 768px) {
      .carousel { aspect-ratio: 4 / 3; border-radius: 12px; }
      .nav-btn { font-size: 18px; padding: 8px; }
      .dot { height: 8px; width: 8px; }
    }

    @media (max-width: 480px) {
      .carousel { aspect-ratio: 1 / 1; border-radius: 8px; }
      .nav-btn { font-size: 16px; padding: 6px; }
      .dot { height: 6px; width: 6px; margin: 0 3px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .slide, .slide.active { transition: none; }
      .slide.active img { animation: none; }
    }



    /* Hide carousel arrows only on mobile */
@media (max-width: 500px) {
  .nav-btn {
    display: none !important;
  }
}



.scroller {
    width: 100%;
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* border-radius: 10px; */
    /* background: linear-gradient(135deg, #6e8efb, #a777e3); */
    padding: 50px 20px;
    margin: 70px 0;
}

.items {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.item {
    flex: 0 0 clamp(250px, 30vw, 350px); /* Responsive width */
    min-width: 250px;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: calc(0.5s * var(--index));
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:white; /* Semi-transparent white for contrast */
    border-radius: 8px;
    margin: 10px;
}

.item img {
    width: auto;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.item:hover img {
    transform: scale(1.05);
}

.item h2 {
    font-size: clamp(18px, 2.5vw, 22px); /* Responsive font size */
    margin: 10px 0;
    color: #333;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.item p {
    font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
    color: #666;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0 10px;
    flex-grow: 1; /* Ensures text alignment consistency */
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pause on hover for better user experience */
.scroller:hover .items {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .item {
        flex: 0 0 clamp(200px, 45vw, 300px);
        min-width: 200px;
    }
    .item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .scroller {
        margin: 5px;
        padding: 10px;
    }
    .item {
        flex: 0 0 90vw;
        min-width: 90%;
        margin: 5px;
    }
    .item img {
        height: 120px;
    }
    .item h2 {
        font-size: 18px;
    }
    .item p {
        font-size: 14px;
    }
}