.gallery-section {
  padding: 80px 0;
  background: #fff;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.gallery-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Lightbox Modal */
.modal-content {
  background: transparent;
  border: none;
}

.modal-body {
  padding: 0;
  text-align: center;
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-section {
      padding: 50px 0;
  }
  
  .gallery-title h2 {
      font-size: 2rem;
  }
  
  .gallery-item img {
      height: 350px;
  }
}