
.gallery {
  background-color: #7a6ad8; 
  padding: 80px 0;
  border-radius: 0; 
  margin-top: 0; 
  margin-bottom: 0;
}

.gallery .section-heading h6,
.gallery .section-heading h2 {
  color: #ffffff !important;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  border: 8px solid #ffffff; 
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25); 
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.08);
}