/* Logo container without background */
.navbar-brand {
    padding: 8px 12px;
    transition: all 0.3s ease;
}

/* Ensure the logo container has correct sizing */
.navbar-logo {
    display: block;
    height: 60px;
    /* Increased from 40px */
    width: auto;
}

/* Footer logo fix */
.footer .navbar-logo,
footer img[alt="NewAgeVisa Service Logo"] {
    padding: 8px;
    height: 70px;
    /* Increased from 50px */
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    background: #25d366; /* WhatsApp green */
    border: 2px solid #25d366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 2rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e; /* WhatsApp dark green */
    color: #fff;
    border-color: #128c7e;
}

.whatsapp-float .fa-whatsapp {
    color: inherit;
    transition: color 0.2s;
}

.whatsapp-float:hover .fa-whatsapp {
    color: #fff;
}

.navbar-toggler {
    margin-right: 16px;
    margin-top: 8px;
    /* You can adjust these values as needed */
    border: none;
    background: transparent !important;
    font-size: 2rem;
    color: #0e387a;
    outline: none;
    box-shadow: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

@media (max-width: 991px) {
    .navbar {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler .fa-bars {
    font-size: 2rem;
    color: #0e387a;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}