/* Spinner Styles */
 *,
 h1,
 p,
 h5,
 h6,
 h4,
 button,
 h3,
 a,
 h2 {
     font-family: "El Messiri"  ;
 }
 .font
 {
    font-family: "El Messiri";
    
 }
 .right
 {
    right: 0 !important;
    left: auto !important;
 }
.rtl , li
{
    direction: rtl;
    text-align: start !important;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/* Button Styles */
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/* Topbar Styles */
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu {
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    opacity: 1;
    transition: .5s;
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Navbar Styles */
.navbar-light .navbar-nav .nav-link {
    font-family: "El Messiri", sans-serif;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #00dfff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Navbar Responsive Styles */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        background: var(--bs-white);
    }

    .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }
}

/* Carousel Hero Header Styles */
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
  /*  right: 30px;*/
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 190px;
}

.header-carousel .header-carousel-item img {
    object-fit: cover;
    animation: image-zoom 10s infinite alternate;
}

@keyframes image-zoom {
    0% {
        height: 100%;
        opacity: 0.9;
    }

    25% {
        height: 110%;
        opacity: 0.50;
    }

    50% {
        height: 115%;
        opacity: 1;
    }

    75% {
        height: 110%;
        opacity: 0.50;
    }

    100% {
        height: 100%;
        opacity: 0.9;
    }
}

/* Single Page Hero Header Styles */
.bg-breadcrumb {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-size: cover;
    padding: 140px 0 60px;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/* Service Styles */
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

/* Feature Styles */
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

/* Blog Styles */
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
}

/* Team Styles */
.team .team-item {
    position: relative;
    padding: 0 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

/* Testimonial Styles */
.testimonial .testimonial-item {
    position: relative;
    padding: 0 25px 25px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
}

/* FAQs Styles */
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}
.fixed-cart-btn {
    position: fixed;
    bottom: 20px;
    /* المسافة من الأسفل */
    left: 20px;
    /* المسافة من اليمين */
    z-index: 9999;
    /* التأكد من أن الزر يظهر فوق المحتويات الأخرى */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* إضافة ظل للزر ليظهر بشكل أفضل */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-cart-btn i {
    margin-right: 8px;
    /* المسافة بين الأيقونة والنص */
}
@media only screen and (max-width: 768px) {
    .responsive-image {
        display: none;
    }
    .font_res
    {
       font-size: x-large;
    }
}