﻿/* Gradient heading */
/*.text-gradient {
    font-weight: 700;
    background: linear-gradient(90deg, #007bff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}*/

.sec-head h3  {
    font-size: 48px;
    font-weight: 600;
}

.text-gradient {
    background: -webkit-gradient(linear, left top, right top, from(#12c2e9), color-stop(#c471ed), to(#f64f59));
    background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
    background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
    background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.swiper-slide {
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-box {
    /* display: flex; */
    align-items: center;
    gap: 10px;
}



    .service-box .icon {
        font-size: 24px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-image: linear-gradient(45deg, #fb5343, #6549d5);
    }


.bg-1 {
    background-color: #007bff;
}

.bg-2 {
    background-color: #28a745;
}

.bg-3 {
    background-color: #ffc107;
}

.bg-4 {
    background-color: #dc3545;
}
/* صور */
.mySwiper img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.swiper-horizontal {
    background-color: unset !important;
}

/* أزرار النافيجيشن للـ mySwiper فقط */
.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5); /* خلفية نصف شفافة */
    border-radius: 50%; /* شكل دائري */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    /* أيقونات الأسهم */
    .mySwiper .swiper-button-prev:after,
    .mySwiper .swiper-button-next:after {
        font-size: 20px;
        color: #fff;
    }

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    background-image: none !important;
}

/* RTL fix: منع التكرار */
.mySwiper.swiper-rtl .swiper-button-next:after {
    content: 'prev'; /* سهم لليمين */
}

.mySwiper.swiper-rtl .swiper-button-prev:after {
    content: 'next'; /* سهم لليسار */
}

.mySwiper:not(.swiper-rtl) .swiper-button-prev:after {
    content: 'prev'; /* سهم لليسار */
}

.mySwiper:not(.swiper-rtl) .swiper-button-next:after {
    content: 'next'; /* سهم لليمين */
}

/* عند hover */
.mySwiper .swiper-button-prev:hover,
.mySwiper .swiper-button-next:hover {
    background-color: rgba(0,0,0,0.7);
}
    

.circle-bg {
    position: relative;
}

    .circle-bg .circle-color {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

        .circle-bg .circle-color.fixed {
            position: fixed;
            pointer-events: none;
            opacity: .5;
        }

    .circle-bg .gradient-circle {
        position: absolute;
        left: -250px;
        top: 250px;
        right: auto;
        bottom: auto;
        z-index: -1;
        width: 500px;
        height: 500px;
        border-radius: 70%;
        background-image: -webkit-linear-gradient(45deg, #059dff, #36c6f0);
        background-image: -o-linear-gradient(45deg, #059dff, #36c6f0);
        background-image: linear-gradient(45deg, #059dff, #36c6f0);
        opacity: .25;
        -webkit-filter: blur(100px);
        filter: blur(100px);
    }

        .circle-bg .gradient-circle.two {
            left: auto;
            top: -250px;
            right: -250px;
            bottom: auto;
            background-image: -webkit-linear-gradient(45deg, #fb5343, #6549d5);
            background-image: -o-linear-gradient(45deg, #fb5343, #6549d5);
            background-image: linear-gradient(45deg, #fb5343, #6549d5);
        }

