/* ✅ أزرار ثابتة أسفل الشاشة */
.fixed-buttons {
    position: fixed;
    bottom: 90px;
    right: 40px;
    z-index: 1000;
}

.fixed-buttons a {
    display: flex; /* لجعل الأيقونة وسط الزر */
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 40%;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 26px;
    color: white;
    margin-bottom: 8px;
    line-height: normal; /* مهم لضبط محاذاة الأيقونة */
}

/* ألوان الأزرار */
.call-button {
    background-color: #37377d;
}

.whatsapp-button {
    background-color: #37377d;
}

.email-button {
    background-color: #37377d;
}

/* ✅ للجوالات: وسط الشاشة أفقياً */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .fixed-buttons a {
        width: 42px;
        height: 42px;
        font-size: 22px;
        margin: 0;
    }
}



footer [class*="lg:col-span-3"] {
    width: 100% !important;
}

footer {
    background-image: url('https://bloomglobal.sa/storage/blom-global-22.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

footer .lg\:col-span-4.md\:col-span-12 {
    width: 100% !important;
}

footer .lg\:col-span-2 {
    width: 100% !important;
}

footer .lg\:col-span-4.md\:col-span-12 {
    grid-column: span 3 / span 12 !important;
}

@media (max-width: 768px) {
    footer [class*="lg:col-span-3"] {
        grid-column: span 12 !important;
    }
    footer .lg\:col-span-4.md\:col-span-12 {
        grid-column: span 12 !important;
    }
}

.subcribe-form form .btn {
    text-indent: -9999px !important;
    color: transparent !important;
}

.subcribe-form form .btn::after {
    content: " اشترك الان " !important;
    color: white;
    text-indent: 9px !important;
}

#custom-footer {
    margin-top: 2%;
    background-color: #EAEAEA !important;
    color: white;
    font-family: 'Tajawal', sans-serif;
    padding: 30px 15px;
    direction: rtl;
    background-image: url('https://bloomglobal.sa/storage/footer-bg-1-1.png') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: bottom !important;
    background-attachment: fixed !important;
    color: #000 !important;
}

#custom-footer .footer-link {
    color: #000;
    text-decoration: none;
    margin: 0 11px;
}

#custom-footer .footer-link:hover {
    text-decoration: none;
}

#custom-footer i {
    font-size: 17px;
    margin: 0 8px;
    color: #354141;
    background-color: #000;
    padding: 9px;
    border-radius: 50%;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

footer, .site-footer {
    display: none !important;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px !important;
    padding: 20px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    flex-wrap: wrap !important;
}

@media (max-width: 768px) {
    #custom-footer .image-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        overflow: hidden;
    }

    #custom-footer .image-container img {
        max-width: 100%;
        height: auto;
        margin: 0;
    }
}

body {
    overflow-x: auto !important;
}