/* 
* CampusUdaan - Logo Enhancement
* Increases the logo size in the header and ensures responsiveness
*/

/* Main logo size increase */
.logo img {
    height: 60px !important; /* Significantly increased size */
    width: auto !important;
    max-width: 100% !important;
    transition: all 0.3s ease !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px !important;
    }
}

@media (max-width: 320px) {
    .logo img {
        height: 40px !important;
    }
}
