/* Project Detail */
.project-detail {
    padding: 3rem 0;
  }
  
  /* Project Title */
  .project-detail h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
  }
  
  .dark-mode .project-detail h1 {
    color: var(--light);
  }
  
  /* Project Meta */
  .project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .dark-mode .project-meta {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Project Gallery */
  .project-gallery {
    margin-bottom: 3rem;
  }
  
  .carousel-inner {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .carousel-item img {
    height: 500px;
    object-fit: cover;
  }
  
  .carousel-indicators {
    position: static;
    margin: 1rem 0 0;
  }
  
  .carousel-indicators button {
    width: 80px;
    height: 60px;
    margin-right: 0.5rem;
    border: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .carousel-indicators button.active {
    opacity: 1;
    border: 2px solid var(--primary);
  }
  
  .carousel-indicators img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Project Content Sections */
  .project-description,
  .project-scope,
  .project-challenges {
    margin-bottom: 3rem;
  }
  
  .project-detail h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .dark-mode .project-detail h2 {
    color: var(--light);
  }
  
  .project-detail h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
  }
  
  /* Scope List */
  .scope-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .scope-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .scope-list li:before {
    content: '\f00c';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
  }
  
  /* Sidebar */
  .project-sidebar .card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .project-sidebar .list-group-item {
    padding: 1rem 0;
    border-color: rgba(0, 0, 0, 0.05);
  }
  
  .dark-mode .project-sidebar .list-group-item {
    background-color: #2d2d2d;
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
  }
  
  .project-sidebar .list-group-item i {
    width: 20px;
    text-align: center;
  }
  
  /* Related Projects */
  .related-projects {
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .dark-mode .related-projects {
    border-top-color: rgba(255, 255, 255, 0.1);
  }
  
  .related-project-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
  }
  
  .related-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .related-project-card:hover img {
    transform: scale(1.05);
  }
  
  .related-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }
  
  .related-project-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .related-project-value {
    color: var(--primary);
    font-weight: 600;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .carousel-item img {
      height: 400px;
    }
    
    .project-sidebar {
      margin-top: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .project-detail h1 {
      font-size: 2rem;
    }
    
    .carousel-item img {
      height: 350px;
    }
    
    .carousel-indicators button {
      width: 60px;
      height: 45px;
    }
  }
  
  @media (max-width: 576px) {
    .project-detail h1 {
      font-size: 1.8rem;
    }
    
    .carousel-item img {
      height: 250px;
    }
    
    .project-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }