.navbar-background-main {
    background: linear-gradient(-225deg, rgb(42 111 139) 0%, #27374a 50%, #1b2a38 100%);
    padding: 15px 35px;
    box-shadow: -10px 10px hsl(0deg 0% 45.67%);
}

header {
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
    height: auto;
    z-index: 999;
    background-color: transparent;
    transition: .5s;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--dark-bg) !important;
}

.navbar-nav .nav-link:hover {
    background: white;
    color: black !important;
    transition: 0.3s;
}

.logo-box {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 4px;
}

.logo-box i {
    color: white;
    font-size: 24px;
}

.brand-text img {
    width: 100%;
}

.navbar-brand {
    width: 20%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
}

.brand-tagline {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white;
    transition: 0.3s;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: var(--primary-orange);
    color: white;
    background: var(--primary-darkblue);
}

.contact-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 9px 20px;
    border-left: 1px solid white;
    padding-right: 0;
}

.phone-icon {
    color: white;
    font-size: 20px;
    transform: rotate(103deg);
}

.call-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.call-label {
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
}

.phone-number {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.phone-number:hover {
    color: white;
}


/* Dropdown hover effect - only on desktop */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-menu {
        margin-top: 0;
        transition: all 0.3s ease;
    }
}

@media (max-width: 991px) {
    .contact-section {
        margin-top: 1rem;
        justify-content: center;
    }
    .navbar-background-main
    {
        box-shadow: none;
    }
    .ms-lg-3
    {
        display: none;
    }
}

@media (max-width: 576px) {
.navbar-nav .dropdown-menu {
    height: 500px;
    overflow-y: scroll;
}
.navbar-expand-lg
{
    padding-top: 0;
}
}

@media (max-width: 450px) {
.dropdown-item
{
    white-space: normal;
}

}
