body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f7f7;
}

.gallery-section {
  padding: 60px 40px;
  text-align: center;
  background-color: #fff;
}

.gallery-title {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
  border-bottom: 3px solid #ff6600;
  display: inline-block;
  padding-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.05);
}
.grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

/* Responsive */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 20px;
  }

  .gallery-title {
    font-size: 24px;
  }
}

