.featured-logos-section {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}

.featured-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
  margin-bottom: 20px;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.logo-track img {
  height: 40px;
  margin: 0 30px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-track img {
    height: 30px;
    margin: 0 20px;
  }

  .featured-title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .logo-track img {
    height: 26px;
    margin: 0 15px;
  }

  .featured-title {
    font-size: 11px;
  }
}



/* Gallery Section */
.gallery {
    background-color: var(--color-primary);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 60, 56, 0.3), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 2fr);
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    background-color: var(--color-secondary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(65, 60, 56, 0.7), transparent);
    color: var(--color-primary);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--color-primary);
    opacity: 0.8;
}

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
}