/* ===== GALLERY PAGE STYLES ===== */
.gallery-section {
    padding-top: 80px;
  }
  
  .gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    transition: var(--transition-medium);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 125, 50, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-medium);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition-medium);
  }
  
  .gallery-item:hover .gallery-info {
    transform: translateY(0);
  }
  
  .gallery-info h4 {
    color: white;
    margin-bottom: 5px;
  }
  
  .gallery-info p {
    margin-bottom: 0;
  }

  
  .before-after-section {
    padding: 100px 0;
  }
  
  .before-after-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
  }
  
  .comparison-images {
    display: flex;
  }
  
  .before-image,
  .after-image {
    width: 50%;
    position: relative;
  }
  
  .before-image img,
  .after-image img {
    width: 100%;
  }
  
  .image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(46, 125, 50, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-weight: 500;
  }
  
  .comparison-info {
    padding: 25px;
  }
  
  .comparison-info h4 {
    margin-bottom: 10px;
  }
  
  .comparison-info p {
    margin-bottom: 0;
  }
  
  .client-projects-section {
    background-color: var(--bg-light);
    padding: 100px 0;
  }
  
  .project-case-study {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-medium);
  }
  
  .project-case-study:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
  }
  
  .project-image img {
    width: 100%;
  }
  
  .project-content {
    padding: 25px;
  }
  
  .project-content h4 {
    margin-bottom: 5px;
  }
  
  .project-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
  }
  
  .project-content p {
    margin-bottom: 20px;
  }