/* Work Page Styles */
.work-hero {
    padding: 80px 0 40px;
    text-align: center;
  }
  
  .work-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  /* Filter Styles */
  .work-filter {
    padding: 0 0 40px;
    text-align: center;
  }
  
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .filter-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    border-color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
  }
  
  /* Gallery Styles */
  .work-gallery {
    padding: 0 0 80px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 170, 0.2);
  }
  
  .gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  
  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  
  .gallery-item:hover .gallery-image img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.5s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-info {
    transform: translateY(20px);
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .gallery-item:hover .gallery-info {
    transform: translateY(0);
  }
  
  .gallery-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-color);
  }
  
  .gallery-info p {
    color: var(--neon-green);
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .view-project {
    display: inline-block;
    color: var(--text-color);
    font-size: 14px;
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 3px;
    transition: all 0.3s ease;
  }
  
  .view-project i {
    margin-right: 5px;
    font-size: 12px;
  }
  
  .gallery-item:hover .view-project {
    color: var(--neon-green);
  }
  
  .gallery-link {
    text-decoration: none;
    color: inherit;
  }
  
  /* Contact CTA Section */
  .contact-cta {
    text-align: center;
    padding: 80px 0;
    margin-top: 30px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      radial-gradient(circle at center, rgba(0, 255, 170, 0.1) 0%, transparent 70%);
    border-radius: 20px;
  }
  
  .contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-cta .hire-btn {
    padding: 12px 30px;
    font-size: 18px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .work-hero h1 {
      font-size: 36px;
    }
  
    .filter-buttons {
      gap: 10px;
    }
  
    .filter-btn {
      padding: 8px 15px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-overlay {
      padding: 20px;
    }
  
    .gallery-info h3 {
      font-size: 18px;
    }
  
    .contact-cta h2 {
      font-size: 28px;
    }
  }
  
  