/* works.css */
html, body.works, #smooth-content, #smooth-wrapper, .works-sec {
  background: #000 !important;
}

.works-sec {
  padding-top: 150px;
  padding-bottom: 100px;
  color: #fff;
}

.works-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 40px;
  color: #fff;
  font-weight: 400;
}

.works-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.works-filter {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.works-filter:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.works-filter.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.works-grid {
  row-gap: 60px;
}

.work-card {
  position: relative;
  width: 100%;
}

.work-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.work-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-thumb {
  transform: scale(1.05);
}

.work-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.work-tags span {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.work-logo {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.work-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .works-sec {
    padding-top: 120px;
  }
  .works-filters {
    gap: 8px;
  }
  .works-filter {
    padding: 6px 12px;
    font-size: 12px;
  }
  .work-logo {
    width: 120px;
    height: 60px;
    bottom: -30px;
  }
  .work-tags span {
    font-size: 10px;
    padding: 4px 10px;
  }
}




.work-logo.dark-bg {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

