
/* select2 css */
.select2-container--default .select2-selection--single .select2-selection__rendered 
{
    color: #444;
    line-height: 37px !important;
}
.select2-container .select2-selection--single 
{
    height: 38px !important;
}
.select2-selection__arrow 
{
    height: 35px !important;
}
/* end select2 css */

.offer-item 
{
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.offer-item:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.icon-box 
{

    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background 0.3s;
}
.icon-box i 
{
    color: #fff;
    font-size: 28px;
}

/* whatsapp icon */
.floating-contact 
{
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn 
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #08915e; /* WhatsApp green */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
    text-decoration: none;
}

.contact-btn.phone 
{
    background-color: #08915e; /* Dark green for call */
    animation-delay: 0.5s;
}

.contact-btn:hover 
{
    transform: scale(1.1);
    box-shadow: 0 6px 16px  #08915e;;
}

@keyframes bounce 
{
    0%, 100% 
    {
        transform: translateY(0);
    }
    50% 
    {
        transform: translateY(-6px);
    }
}

/* area serve */
.area-card-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.area-card 
{
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-size: 14px;
}

.pagination 
{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination button 
{
    padding: 10px 20px;
    border: none;
    background-color: #08915e;;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.pagination button:disabled 
{
    background-color: #cccccc;
    cursor: not-allowed;
}

@media (max-width: 600px) 
{
    .area-card 
    {
        font-size: 12px;
        padding: 8px;
    }
}

/* Override toastr background colors */
.toast-success,
.toast-error,
.toast-info,
.toast-warning 
{
    background-color: #08915e !important; 
    color: #fff !important;           
    border: none;
}
.toast-error
{
    background-color:rgb(145, 35, 8) !important; 
    color: #fff !important;           
    border: none;
}
.toast-info
{
    background-color:rgb(91, 196, 245) !important; 
    color: #fff !important;           
    border: none;
}
.toast-warning
{
    background-color:rgb(216, 67, 30) !important; 
    color: #fff !important;           
    border: none;
}


