/* --------------------------
   Latest updates carousel (homepage only)
   -------------------------- */
   .carousel-section {
    padding: 40px 0;
    background: transparent;
  }
  
  .carousel-section h2 {
    text-align: center;
    color: #004aad;
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
  
  .carousel-container {
    overflow: hidden;
    width: 100%;
  }
  
  .carousel {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-left: 20px;
    /* animate continuously from 0 -> -scrollWidth */
    animation: scrollLeft 28s linear infinite;
  }
  
  .carousel:hover {
    animation-play-state: paused;
  }
  
  .card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
  
  .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
  }
  
  /* keyframes: move left an amount that looks good across many widths.
     We duplicated the images in HTML for a true infinite effect. */
  @keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }