.nice-select {
    background-color: #f6f6f6 !important;
}
.main-search {
   background: none !important;
}
@font-face {
    font-family: 'UAEDirham';
    src: url('../fonts/Dirham.woff2') format('woff2');
}

.dirham-symbol {
    font-family: 'UAEDirham';
    font-size: 0.8em;
  
}

/* Request Quote Styling */
.request-quote {
    color: #007bff;
    font-weight: 600;
    font-size: 0.9em;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

.price .request-quote {
    font-size: 1.1em;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Request Quote Link Styling */
.request-quote-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s;
}

.request-quote-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: inherit;
}

.request-quote-link .request-quote {
    cursor: pointer;
    transition: color 0.2s;
}

.request-quote-link:hover .request-quote {
    color: #007bff;
}
.rts-portfolio-area.inner .portfolio-slider-area2 {

    padding-bottom: 0px !important;
}
.pagination-wrapper svg{
    width:20px !important;
}
.rts-sale-area .project-wrapper2 .content-area{
   background-color: #f6f6f6 !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Force WhatsApp button to be on top of everything */
.whatsapp-float {
    z-index: 99999 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Banner Overlay Control */
.rts-banner-slider-area .rts-banner-wrapper.no-overlay::after {
    display: none;
}

.rts-banner-slider-area .rts-banner-wrapper.with-overlay::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: rgba(5, 11, 32, 0.65);
}