  .hero-image {
    height: 100vh;
    object-fit: cover;
  }

  .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
  }

  .hero-card {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 1rem;
    max-width: 700px;
    margin-top: 5rem;
  }

  .btn-yellow {
    background-color: #ffc107;
    color: #000;
    font-weight: 600;
    border: none;
  }

  .btn-yellow:hover {
    background-color: #ffb300;
    color: #000;
  }

  .navbar-nav .nav-link {
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .hero-card h1 {
      font-size: 2rem;
    }
    .hero-card p {
      font-size: 1rem;
    }
    .btn-yellow {
      width: 100%;
    }
    .navbar-brand span {
      display: none;
    }
  }
