 /* Align logo to the left */
 .inner-container {
    display: flex;
    justify-content: space-between; /* Ensures logo is on the left and other items are on the right */
    align-items: center; /* Vertically centers the elements */
}

/* Ensure the burger icon is positioned on the right side */
.nav-outer {
    margin-left: auto; /* Push the navigation/burger icon to the right */
}

.mobile-nav-toggler {
    margin-left: 10px; /* Adjust margin if necessary */
}
.whychoous-1-image img{
	min-height: 60em;
}

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366; /* WhatsApp green */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: background-color 0.3s;
}

.whatsapp_float:hover {
    background-color: #128C7E; /* Darker green on hover */
}

.whatsapp-icon {
    margin-top: 16px;
}
.whatsapp_float:hover{
    color: #FFF;
}
/* Responsive styles for mobile */
@media screen and (max-width: 767px) {
    .whatsapp_float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
/* Optional: For better responsiveness, adjust spacing between elements */
@media (max-width: 1250px) {
	.whychoous-1-image img{
		min-height: auto;
	}
}
@media (max-width: 991px) {
    .whatsapp-icon {
        margin-top: 13px;
    }
    .left-column {
        flex: 1; /* Makes the left column (with the logo) take more space */
    }
    .nav-outer {
        flex-shrink: 0;
    }
}
