/* Logo resize styles */
.nuvision-logo {
    transition: all 0.3s ease;
}

/* Increase logo size by 30% on desktop */
@media (min-width: 769px) {
    .nuvision-logo {
        transform: scale(1.3);
        margin-right: 10px; /* Add some spacing if needed */
    }
}

/* Increase logo size by 20% on mobile/tablet */
@media (max-width: 768px) {
    .nuvision-logo {
        transform: scale(1.2);
        margin-right: 5px;
    }
}

/* Adjust header layout to accommodate larger logo */
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
