.carousal-h3{
    color:#283779;
}

.scan-container-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .scan-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
  }
  
  .scan-card {
    flex: 0 0 calc(100% / 5); /* Show 5 cards on desktop */
    min-width: 200px;
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }
  
  .scan-card img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
  }
  
  .scan-card h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #0078c8;
  }
  
  .scan-card p {
    font-size: 0.95rem;
    color: #333;
  }
  
  /* Mobile: show 1 card per view */
  @media (max-width: 768px) {
    .scan-card {
      flex: 0 0 80%;
    }

  }
  
  /* Dot navigation */
  .carousel-dots {
    text-align: center;
    margin-top: 10px;
  }
  
  .carousel-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .carousel-dots .dot.active {
    background-color: #0078c8;
  }
  /* h2 & p tag carousel */
  .text-carousel {
    position: relative;
    min-height: 160px;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .carousel-slide.active {
    opacity: 1;
    position: relative;
  }
  
  .text-carousel-dots {
    text-align: center;
  }
  
  .text-carousel-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .text-carousel-dots .dot.active {
    background-color: #0078c8;
  }
 
.section-margin{
    margin: -21px 0px -69px;
}