

.works-hero {
    padding-top: 200px;
    padding-bottom: 20px;
  }
  
  .works-section {
    position: relative;
    padding: 40px 0 80px 0;
    background-attachment: fixed;
    background-size: 200% 200%;
  }
  
  .works-section .container {
    position: relative;
  }
  
  /* ======= FILTER TABS ======= */
  .tabs {
    margin-bottom: 32px;
    text-align: center;
  }
  
  .tabs button {
    padding: 10px 22px;
    margin: 0 6px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #0b1d26;
    box-shadow: 0 2px 10px rgba(0, 114, 255, 0.15);
    transition: all 0.25s ease;
  }
  
  .tabs button:hover {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .tabs button.active {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 114, 255, 0.35);
  }
  
  /* ======= GRID ======= */
  .works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  @media (min-width: 980px) {
    .works-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
  }
  
  /* ======= CARD ======= */
  .work-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    animation: fadeInUp 0.6s ease both;
  }
  
  .work-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 42px rgba(0, 114, 255, 0.35),
                0 8px 22px rgba(0, 0, 0, 0.4);
  }
  
  /* ======= MEDIA ======= */
  .work-media {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  
  .work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .work-card:hover .work-media img {
    transform: scale(1.06);
  }
  
  /* ======= CONTENT ======= */
  .work-content {
    padding: 16px 18px 20px;
    text-align: center;
  }
  
  .work-title {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
  }
  
  .work-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
  }
  
  /* ======= LINK ICON ======= */
  .work-link {
    margin-top: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  
  .work-card:hover .work-link {
    opacity: 1;
    transform: translateY(0);
  }
  
  .work-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #00c6ff;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 114, 255, 0.25);
    transition: all 0.3s ease;
  }
  
  .work-link a:hover {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 114, 255, 0.45);
  }
  
  .work-link i {
    transition: transform 0.3s ease;
  }
  
  .work-link a:hover i {
    transform: rotate(45deg);
  }
  
  /* ======= META ======= */
  .wwg-meta {
    margin: 0px 17px 10px 0px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .wwg-pill {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: linear-gradient(
      90deg,
      rgba(52, 245, 155, 0.08),
      rgba(52, 245, 155, 0.02)
    );
    color: #5ddad1;
    border: 1px solid rgba(52, 245, 155, 0.06);
  }
  
  /* ======= MOBILE ======= */
  @media (max-width: 767px) {
    .tabs button {
      margin-bottom: 10px;
    }
  }
  
  /* ======= ANIMATIONS ======= */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  