/* White background for the top row of the navbar */
.navbar-top {
    background-color: #ffffff;
    padding: 0px;
    border-bottom: 1px solid #ddd;
}

.navbar-top p {
    color: #000;
    margin: 0;
    text-align: center;
}

/* Navbar Styling */
.navbar-custom {
    position: relative;
    top: 0px; 
    width: 100%;
    background: linear-gradient(to bottom, #230002 0%, #000 100%);
    backdrop-filter: blur(10px); 
    z-index: 1000; /* High z-index to ensure it's on top */
    padding: 15px;
}

.navbar-custom .navbar-brand img {
    max-width: 150px;
}

.navbar-custom .nav-link {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 15px;
}

.navbar-custom .nav-link:hover {
    color: #6310BA;
}

.navbar-custom .dropdown-menu {
    background-color: #6310BA;
    border: none;
}

.navbar-custom .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
}

.navbar-custom .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.navbar-toggler {
    border: none;
    color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox%3D%220 0 30 30%22 xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath stroke%3D%22rgba(255,%20255,%20255,%200.7)%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22 stroke-miterlimit%3D%2210%22 d%3D%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E');
}

/* Hero Section */
.hero {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
      display: block;
    }
  }


