.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-logo {
    /* Sets a maximum height so it fits nicely in a standard navbar */
    height: 60px; 
    width: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Prevents overflow on tiny screens */
    object-fit: contain; /* Ensures the image scales cleanly */
}

/* Optional: Adjust height for smaller mobile screens if 40px is too big */
@media (max-width: 576px) {
    .navbar-logo {
        height: 32px; 
    }
}

/* 
   If you aren't using Bootstrap 5 (which includes .visually-hidden), 
   here is the utility class to keep the text accessible but invisible:
*/
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.call-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            
            /* Glassmorphism Core Rules */
            background: rgba(255, 255, 255, 0.116);
            border: 1px solid rgba(255, 255, 255, 0.925);
            
            /* Text/Icon Color (Dark gray/black so it's readable over light glass) */
            color: #ffff; 
            
            border-radius: 50%;
            font-size: 24px;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        .call-float:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
            color: #000;
        }