body {font-family: 'Poppins', sans-serif;}

.top-bar {
    background: #0b4f9c;
    color: white;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.navbar-brand img {
    height: 65px;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.nav-link {
    font-weight: 600;
    color: antiquewhite !important;
}

.nav-link:hover {
    color: #0d6efd !important;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
    background-color: antiquewhite;
}

.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    font-weight: 700;
    position: relative;
    background-color: white;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #0d6efd;
    border-radius: 10px;
}

.hero-carousel .carousel-item {
    height: 88vh;
    min-height: 650px;
    position: relative;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90%;
    max-width: 900px;
    text-align: center;
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
}

.btn-primary-custom {
    background: #0d6efd;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-custom:hover, .btn-primary-custom:hover {
    background: white;
    color: #000;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,.15);
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}
#menu-label {visibility: hidden}
@media(max-width:991px) {
    #menu-label {visibility: visible}
}
@media(max-width:768px) {

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-carousel .carousel-item {
        min-height: 550px;
    }
}