.listing {
    list-style: disc !important;
}

.location {
    color: #fff !important;
}

/* WhatsApp Float Styling */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

/* Tooltip Styling */
.whatsapp-tooltip {
    visibility: hidden;
    width: 100px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    right: 0;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Mobile Adjustments */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
}


.facebook {
    color: #1877F2 !important;
}

.instagram {
    color: #C13584 !important;
}


.contact-page-social-link li .facebook:hover {
    color: #1877F2 !important;
    background-color: #fff !important;
}

.contact-page-social-link li .instagram:hover {
    color: #C13584 !important;
    background-color: #fff !important;
}

.chy-logo img {
    width: 110px !important;
}

.footer-logo img {
    width: 120px !important;
}


.chy-footer-3-widget .disc {
    font-size: 17px;
    font-weight: 400;
    color: #ffffff !important;
    line-height: 26px;
    margin-bottom: 28px;
    text-align: justify !important;
}


.chy-footer-3-contact li a {
    text-transform: none !important;
    font-size: 14px !important;
}


.chy-footer-3-bottom {
    gap: 0px !important;
}

.chy-header-3-area {
    padding: 0px!important;
}


@media (max-width: 767px) {

    .chy-logo img {
    width: auto !important;
    height: 90px !important;
}


    /* Reduce Menu Font Size and Padding */
    .mobile-main-navigation .navbar-nav li a {
        font-size: 18px !important; /* Adjusted from 20px to be smaller on mobile */
        padding: 10px 0px !important; /* Added small vertical padding for touch-friendliness */
    }

    /* Reduce Logo Size */
    .fullpage-menu-logo-wrap .menu-logo img {
        max-width: 120px !important; /* Adjust this value to your preferred size */
        height: auto !important;
    }

    /* Fix for the 100vh issue you had */
    .fullpage-menu-logo-wrap .menu-logo {
        height: auto !important; 
    }

    .full-page-socail-link {
        text-align: left !important;
        display: grid;
    }


    .full-page-socail-link li a {
    font-size: 18px;

}


    .pt-50 {
     padding-top: 0px; 
     font-size: 18px;
}
}

/* Hide on Desktop and Tablet */
@media (min-width: 768px) {
    .hide-on-desktop {
        display: none !important;
    }
}

/* Mobile View (2 Images at once) */
@media (max-width: 767px) {
    .mobile-carousel {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0; /* Ensures images touch so they fit 50/50 exactly */
    }

    .mobile-carousel .item {
        flex: 0 0 50%; /* Exactly 2 images per view */
        scroll-snap-align: start;
        display: flex;
        justify-content: center;
        padding: 10px; /* Space inside the 50% box */
    }

    .mobile-carousel .item img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Hide scrollbar */
    .mobile-carousel::-webkit-scrollbar {
        display: none;
    }
}