.gallery-section { margin: auto; padding: 20px; text-align: center; }
  .gallery-section h2 { margin-bottom: 20px; }

  .gallery-wrapper { position: relative; overflow: hidden; }
  .gallery-track { display: flex; transition: transform 0.5s ease; gap: 15px; }

  .gallery-item { min-width: 200px; cursor: pointer; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
  .gallery-item img { width: 100%; height: 290px; object-fit: cover; transition: transform 0.3s; }
  .gallery-item:hover img { transform: scale(1.1); }

  /* Navigation arrows */
  .nav { position: absolute; top: 50%; transform: translateY(-50%); 
         background:rgb(0 0 0); color: #fff; border: none; padding: 10px;
         font-size: 24px; cursor: pointer;  z-index: 10; }
  .prev { left: 5px; }
  .next { right: 5px; }

  /* Popup / Lightbox */
  .popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
           background-color: rgba(0,0,0,0.8); justify-content: center; align-items: center; z-index: 1000; }
  .popup img { max-width: 90%; max-height: 80%; border-radius: 5px; }
  .popup .close { position: absolute; top: 20px; right: 30px; font-size: 30px; color: white; cursor: pointer; }
.cta-btn{
  display:inline-block;
  border: none;
    color: #fff;
    background: #0052ac;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    padding: 14px 30px 14px 30px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    margin-top:40px;
}
.cta-btn:hover{
  background:#fff;
  color:#000;
}
  /* Responsive */
  @media(max-width: 768px){ .gallery-item { min-width: 150px; height: 120px; } }
  @media(max-width: 480px){ .gallery-item { min-width: 120px; height: 100px; } }