.navbar-brand {
    display: flex;
    align-items: center;
    height: 40px; /* Set fixed height for navbar brand container */
    overflow: visible; /* Allow logo to overflow if needed */
}

.navbar-brand img {
    height: 90px; /* Make logo larger */
    max-height: none;
    margin-top: -10px; /* Pull the image upward to balance visual alignment */
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
}

.navbar .nav-link {
    font-weight: 500;
    color: #161b1f;
    margin-right: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #fe5200;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fe5200;
}

/* Button Style */
.btn-demo {
    background-color: #fe5200;
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-demo:hover {
    background-color: #d94700;
    color: #fff;
}

/* Responsive Tweak */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}
