﻿body 
{
    /* Gallery Styles */
.gallery {
  padding: 60px 0;
  background: #f8f9fa;
}

.gallery-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.gallery-filters li {
  cursor: pointer;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 50px;
  background: #e9ecef;
  transition: all 0.3s;
}

.gallery-filters li.filter-active,
.gallery-filters li:hover {
  background: #1e4356;
  color: white;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  transition: transform 0.5s;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 67, 86, 0.8);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
}

.gallery-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.video-icon {
  font-size: 40px;
  color: white;
  margin-top: 10px;
}

.video-icon i {
  transition: transform 0.3s;
}

.video-icon i:hover {
  transform: scale(1.1);
}
}
