  /* Related Projects Section */
  .related-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0 10px 0;
    margin-bottom: 20px;
  }
  
  .related {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }
  
  .card-related {
    flex: 0 0 calc(25% - 15px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card-related:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card-related a {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  .card-related img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s;
  }
  
  .card-related:hover img {
    transform: scale(1.05);
  }
  
  .card-related-content {
    padding: 15px;
    text-align: center;
    transition: color 0.3s, background 0.3s;
  }
  
  .card-related h3 {
    font-weight: bold;
    margin: 10px 0;
    font-size: 1.2em;
    transition: color 0.3s;
  }
  
  .card-related p {
    font-size: 0.9em;
    color: #64748B;
    transition: color 0.3s;
  }
  
  .card-related:hover .card-related-content {
    background: #00A0DF;
    color: #fff;
  }
  
  .card-related:hover .card-related-content h3,
  .card-related:hover .card-related-content p {
    color: #fff;
  }
  
  /* Modern Pagination Controls */
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
    min-height: 60px;
  }
  
  .carousel-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
  }
  
  .carousel-button:hover {
    background: #00A0DF;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .carousel-button:hover svg {
    fill: white;
  }
  
  .carousel-button svg {
    width: 20px;
    height: 20px;
    fill: #333;
    transition: fill 0.3s ease;
  }
  
  /* Progress Indicator */
  .carousel-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
  }
  
  .progress-dot.active {
    background: #00A0DF;
    transform: scale(1.2);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .card-related {
      flex: 0 0 calc(33.333% - 13.333px);
    }
  }
  
  @media (max-width: 768px) {
    .card-related {
      flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-controls {
      gap: 25px;
      margin-top: 35px;
      padding: 0 15px;
    }
    
    .carousel-button {
      width: 45px;
      height: 45px;
    }
  }
  
  @media (max-width: 480px) {
    .card-related {
      flex: 0 0 100%;
    }
    
    .carousel-controls {
      gap: 20px;
      margin-top: 30px;
      padding: 0 10px;
    }
    
    .carousel-button {
      width: 40px;
      height: 40px;
    }
    
    .carousel-button svg {
      width: 16px;
      height: 16px;
    }
  }