.gallery-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #222;
  }

  .gallery-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .gallery-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
  }

  .carousel {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .carousel img {
    display: none;
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    object-fit: contain;
  }
  
  .carousel img.active {
    display: block;
  }

  .prev-btn,
  .next-btn {
    color: #222;
    font-weight: bold;
    padding: 5px 15px; 
    border-radius: 5px; 
    background-color: rgba(255, 255, 255, 0.6);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }

  .thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
  
  .thumbnails .thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    border: none;
    box-shadow: none;
  }
  
  .thumbnails .thumb:hover,
  .thumbnails .active-thumb {
    opacity: 1;
  }

  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
  }
  
  .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-out;
    border: none;
    box-shadow: none;
  }
  
  .lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #eee;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
  }
  
  .lightbox .close:hover {
    color: #fff;
  }

.spacing-div {
    height: 40px; 
}
  
h2{
  margin-top: 20px;
}