body {
    background:#0d0c0c


;
}/* Hide the update notification banner */
.alert:has(a[href*="system/updater"]),
v-check-for-updates {
    display: none !important;
}/* Round all sharp corners */
.box-icon, .btn, .tf-btn, input, select, textarea, .form-control, .box-surface, .card, .property-item, .box-agent, .flat-account, .list-info a, .layout-btn {
    border-radius: 8px !important;
}

/* Remove borders from icons and fix hover colors */
.box-icon {
    border: none !important;
    background-color: transparent !important;
    transition: background-color 0.2s ease !important;
}

.box-icon svg,
.box-icon i,
.layout-btn svg,
.layout-btn i {
    color: var(--variant-1, #b5b5b5) !important;
    fill: transparent;
    stroke: currentColor !important;
    transition: color 0.2s ease, fill 0.2s ease, stroke 0.2s ease !important;
}

/* Primary color on hover */
.box-icon:hover svg,
.box-icon:hover i,
.layout-btn:hover svg,
.layout-btn:hover i {
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

/* Keep footer social icons circular with border */
.footer .box-icon.social {
    border: 1px solid var(--primary-color) !important;
    border-radius: 50% !important;
}

.footer .box-icon.social:hover {
    background-color: var(--primary-color) !important;
}


.homeya-box, .property-item, .widget-box, .widget-box-single {
    border-radius: -2 !important;
    padding: 20px !important;
    margin: 4px !important;
    gap: 0 !important;
}



.ps-main__wrapper {
    background: #1a1a1a;
}



.wd-find-select input.form-control {
    color: #FFF !important;
}



/*heading*/

@media only screen and (max-width: 479px) {
   .h7 {
        font-size: 1.85rem !important;
        line-height: 1.5 !important;
    }
}


@media only screen and (max-width: 767px) {
    .h7 {
        font-size: 1.9rem
26.6px
 !important;
        line-height: 1.5 !important;
    }
}





/* featured heading */


@media only screen and (max-width: 767px) {
    .p-16{
        font-size: 1.0rem
14px
 !important;
        line-height: 1.5 !important;
    }
}


@media only screen and (max-width: 1199px) {
    .p-16 {
        font-size: 1.0rem !important;
        line-height: 1.5 !important;
    }
}

/*price mobile*/

@media only screen and (max-width: 479px) {
     .h6 {
        font-size: 1.0rem;
        line-height: 1.5;
    }
}





/*find your*/

@media only screen and (max-width: 479px) {
     .subtitle {
        font-size: 1.0rem !important; 
      
    }
}



@media only screen and (max-width: 479px) {
    h1  {
        font-size: 2.7rem;
       
    }
}


.search-suggestion-item {
   
    color: black;
}








.auth-card{

    background-color: #161616!important; }


/*whatsap button*/
/* ================================
   FLOATING WHATSAPP BUTTON
================================ */

.whatsapp-bubble {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    border-radius: 50%;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

    z-index: 99999;

    text-decoration: none;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-bubble img {
    width: 34px;
    height: 34px;

    position: relative;
    z-index: 2;

    filter: brightness(0) invert(1);
}

/* Pulse Animation */
.whatsapp-bubble::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: rgba(37, 211, 102, 0.5);

    z-index: -1;

    animation: whatsapp-pulse 1.8s infinite;

    pointer-events: none;
}

/* Hover Effect */
.whatsapp-bubble:hover {
    transform: scale(1.1);

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }

}

/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 767px) {

    .whatsapp-bubble {
        right: 16px;
        bottom: 16px;

        width: 56px;
        height: 56px;
    }

    .whatsapp-bubble img {
        width: 31px;
        height: 31px;
    }

    .whatsapp-bubble::after {
        width: 56px;
        height: 56px;
    }

}