/* Navbar styles */
  .bg-dark {
    background-color: #252525 !important;
  }
  
  .nav-link {
    color: white !important;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #f5c96a !important;
  }
  
  .navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
  
  .text-warning.custom {
    color: #f5c96a !important;
  }
  
  /* Make logo responsive and clear */
  .logo-img {
    height: 60px;
    max-height: 100px;
    object-fit: contain;
  }
  
  @media (min-width: 768px) {
    .logo-img {
      height: 90px;
    }
  }
  
  @media (max-width: 767.98px) {
    .navbar-collapse {
      background-color: #252525;
      padding: 1rem;
      border-radius: 0.5rem;
    }
  
    .nav-item {
      text-align: center;
      margin: 0.5rem 0;
    }
  
    .logo-img {
      height: 80px;
    }
  }
  

  /* Footer Style */