/* Fix for gallery visibility */
.gallary-area.tp-gallary-3-wrap {
 /* Reduced spacing between program and gallery */
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 2; /* Ensure it's visible above other content */
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Gallery Cards and Images */
.gallery-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(0) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gallery-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.tp-gallary-3-item-1 img, 
.tp-gallary-3-item-2 img, 
.tp-gallary-3-item-3 img, 
.tp-gallary-3-item-4 img {
  transition: all 0.5s ease !important;
  transform: scale(1) !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.gallery-card:hover img {
  transform: scale(1.05) !important;
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%) !important;
  padding: 20px !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1 !important;
}

.gallery-content {
  transform: translateY(20px) !important;
  transition: all 0.3s ease !important;
}

.gallery-card:hover .gallery-content {
  transform: translateY(0) !important;
}

.gallery-content h5 {
  color: #fff !important;
  font-size: 18px !important;
  margin-bottom: 0 !important;
  font-weight: 600 !important;
}

/* Premium Gallery Section */
.gallary-section {
  padding: 100px 0 !important;
  position: relative !important;
  background-color: #f8f9fa !important;
  overflow: hidden !important;
  z-index: 9 !important;
  display: block !important;
}

/* Decorative elements */
.gallary-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
  z-index: -1;
}

.gallary-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0) 70%);
  z-index: -1;
}

/* Gallery Title and Subtitle */
.gallery-title {
  text-align: center !important;
  margin-bottom: 60px !important;
  position: relative !important;
}

.gallery-subtitle {
  color: #3B82F6 !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  font-size: 14px !important;
  display: block !important;
  margin-bottom: 10px !important;
}

.gallery-title h2 {
  font-weight: 700 !important;
  position: relative !important;
  display: inline-block !important;
  margin-bottom: 25px !important;
  font-size: 36px !important;
  color: #1F2937 !important;
}

.gallery-title h2:after {
  content: '' !important;
  position: absolute !important;
  bottom: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #3B82F6, #60A5FA) !important;
  border-radius: 4px !important;
}

.gallery-description {
  font-size: 16px !important;
  color: #6B7280 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

/* Gallery Row Spacing */
.gallery-row {
  margin-bottom: 30px !important;
}

/* View More Button */
.gallery-view-more {
  display: inline-block !important;
  padding: 12px 25px !important;
  background: linear-gradient(90deg, #3B82F6, #60A5FA) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  margin-top: 20px !important;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
}

.gallery-view-more:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4) !important;
  background: linear-gradient(90deg, #60A5FA, #3B82F6) !important;
}

.gallery-view-more i {
  margin-left: 8px !important;
  transition: all 0.3s ease !important;
}

.gallery-view-more:hover i {
  transform: translateX(5px) !important;
}

/* Make sure gallery is visible on mobile */
@media (max-width: 767px) {
  .gallary-section {
    padding: 60px 0 !important;
  }
  
  .gallery-title h2 {
    font-size: 28px !important;
  }
  
  .tp-gallary-3-item-1,
  .tp-gallary-3-item-2,
  .tp-gallary-3-item-3,
  .tp-gallary-3-item-4 {
    margin-top: 0 !important;
  }
}

.gallery-title span {
  color: #60A5FA;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
