/* 
* Larger Navbar Logo
* Increases the size of the RapidIT logo in the navbar for better visibility
*/

/* Enhanced Logo Size */
.navbar-brand img {
    max-height: 60px; /* Increased from default size */
    width: auto;
    transition: all 0.3s ease;
}

/* Adjust spacing around logo */
.navbar-brand {
    padding: 5px 0;
    margin-right: 20px;
}

/* Ensure proper vertical alignment in navbar */
.navbar-brand-container {
    display: flex;
    align-items: center;
}

/* Scale down slightly when navbar is sticky for better UX */
.header-area.sticky .navbar-brand img {
    max-height: 55px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 50px;
    }
}

/* Adjust header height to accommodate larger logo */
.header-area {
    min-height: 85px;
}

.header-area.sticky {
    min-height: 80px;
}

/* Ensure proper spacing with phone number */
.header-phone-number {
    margin-left: 15px;
}
