.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px; /* Space between items */
  padding: 10px 0;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #ccc transparent;
  scroll-snap-type: x mandatory; /* Smooth scrolling */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.custom-box {
  position: relative;
  padding: 20px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: #fff;
  display: inline-block;
  border: 2px solid #eee; 
  min-width:300px;
  max-width:300px;
}
.custom-title{
  font-family: Poppins-Bold!Important;
  font-size:20px;
}
.custom-description{
  font-size:18px;
  font-family:Poppins-Light;
}
{#
/* Border extensions using pseudo-elements */
.custom-box::before,
.custom-box::after {
    content: "";
    position: absolute;
    background: #ccc; /* Color of the extended lines */
}

/* Top-left corner extension */
.custom-box::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: -20px;
    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;
}

/* Bottom-right corner extension */
.custom-box::after {
    width: 50px;
    height: 50px;
    bottom: -20px;
    right: -20px;
    border-bottom: 2px solid #ccc;
    border-right: 2px solid #ccc;
}
#}