::-webkit-scrollbar {
    width: 7px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: yellow; /* Yellow scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #e0e0e0; /* Light gray scrollbar track */
  }

  
  /* Navbar Styles */
  .navbar {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030;
  }

  .navbar-nav .nav-link {
    font-size: 20px;
    color: black;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: yellow;
    text-decoration: underline;
  }
  
 




  /* PROJECT SITE*/
.card{

        margin-bottom: 8rem !important;

}

 .project-card {
      border: 1px solid #ccc;
      max-width: 1000px;
      margin: 40px auto;
      background-color: white;
 }
    .carousel-inner img {
      max-height: 500px;
      object-fit: contain;
    }
    .project-info {
      padding: 20px;
    }


    
  .title-section {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #ffffff;
  }

  .title-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Not too bold, not too light */
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
    letter-spacing: 1px
  }

  .title-section .highlight {
    color: rgb(255, 217, 0); /* Gold color */
  }