.digital-gallery-section {
  background-color: #0c0f12;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-subtitle {
  color: #7efeff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-load-more {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.gallery-load-more:hover {
  background-color: #fff;
  color: #000;
}