body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .carousel-item img {
    height: 75vh;
    object-fit: cover;
  }
  .category-card img {
    transition: transform 0.3s ease;
  }
  .category-card:hover img {
    transform: scale(1.05);
  }
  .testimonial {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .newsletter {
    background: #222;
    color: white;
    padding: 50px 0;
  }
  .newsletter input {
    max-width: 400px;
  }
  .footer {
    background: #111;
    color: #aaa;
    padding: 40px 0;
  }
  .footer a {
    color: #aaa;
    text-decoration: none;
  }
  .footer a:hover {
    color: #fff;
  }
  
  .category-scroll-wrapper {
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      padding-bottom: 10px;
    }
    
    .category-slider > div {
      flex: 0 0 auto; /* Prevent shrinking */
    }
    
    .category-scroll-wrapper::-webkit-scrollbar {
      height: 6px;
    }
    .category-scroll-wrapper::-webkit-scrollbar-thumb {
      background: #bbb;
      border-radius: 10px;
    }

    .category-card{
      height: 370px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
    }
    .category-card img{
      height: 300px;
    }