@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary_color: #4d41bd;
    --secondary_color: #868686;
    --white_color: #ffffff;
    --black_color: #000000;
    --bg_sections: #101010;
    --primary_font: 'Inter', sans-serif;
    /* ================= */
    --transition: 0.3s ease;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: var(--primary_font);
    transition: var(--transition);
}

.hero_panner .h2-silver,
.hero_panner .hero_subtitle,
.hero_panner .star-small {
    transition-property: color, background-color;
}

.hero_panner .btn_primary {
    transition:
        color 0.3s ease-in-out,
        background-color 0.3s ease-in-out,
        transform 0.3s ease-in-out;
}
body {
    background-color: var(--black_color);
    color: white;
}
ul,
ol {
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
}
.lin_abs {
    position: absolute;
    inset: 0;
}
.navbar-brand {
    margin: 0;
}
section,
footer {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.container {
    max-width: 1350px !important;
}
.text_grey {
    color: var(--secondary_color);
}
.h2-silver {
    color: var(--white_color);
    margin-top: 0;
    margin-bottom: 15px;
    font-family: var(--primary_font);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
    font-weight: 600;
    display: inline-block;
}
/* btn */
.btn_primary ,.btn_secondary{
    color: var(--white_color);
    text-align: left;
    background-color: var(--primary_color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
    border-radius: 40px;
    border-radius: 10px;
    padding: 12px 30px;
    font-family: var(--primary_font);
    font-size: 16px;
    border: 0;
    display: block;
    width: fit-content;
    margin: auto;
    margin-top: 30px;
    cursor: pointer;
    text-align: center;
}
.btn_secondary{
    background: rgb(241, 235, 228);
    color: var(--black_color);
    margin: 20px 1px;
}
.btn_primary:hover {
    background-color: var(--white_color);
    color: var(--black_color);
}
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(68, 0, 227, 0.25), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: none;
}

/* title */
.title-wrapper-h1.large {
    max-width: 730px;
}

.title-wrapper-h1 {
    text-align: center;
    max-width: 660px;
}
.h2-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: clamp(2rem, 5vw + 1rem, 3.125rem);
    font-weight: 600;
    line-height: 110%;
}

.body-paragraph {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
    font-weight: 400;
    line-height: 150%;
}
/* Start Header */
/* End Header */

/* Start Hero Section */
.hero_panner {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
}
.hero_panner_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero_panner_bg img {
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 120%;
    min-width: 100%;
    object-fit: cover;
    object-position: center 40%;
    will-change: transform;
}

.hero_panner_overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.hero_panner_content {
    position: relative;
    z-index: 2;
}

.hero_panner .container {
    height: 100vh;
}

.hero_subtitle {
    color: var(--white_color);
    font-family: var(--primary_font);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 30px;
}

.stars-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
}

.star-small {
    color: #4d41bd;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.18rem;
    height: 1.3125rem;
    display: flex;
}

.white-text {
    color: var(--white_color);
}

@media (max-width: 768px) {
    .hero_content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        justify-content: center;
    }

    .hero_panner .container {
        justify-content: center !important;
    }

    .btn_primary {
        width: 100%;
        text-align: center;
    }
}
/* End Hero Section */

/* Start About Section */
.about_section {
    background:
        radial-gradient(circle at 0% 10%, rgba(0, 113, 227, 0.18), transparent 42%),
        radial-gradient(circle at 92% 86%, rgba(255, 255, 255, 0.08), transparent 34%),
        #0c0c0c;
}

.about_visuals {
    position: relative;
    min-height: 560px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(8px);
}
.desi_vid{
    padding: 0 !important;
    border: 0 !important;
    height: 560px;
    border-radius: 0 !important;
}
.desi_vid.about_visuals video{
    width: 100%;
    height: 100%;
}
.about_img {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_img_main {
    width: 82%;
    height: 460px;
}

.about_img_small {
    position: absolute;
    right: 10px;
    bottom: 14px;
    width: 45%;
    height: 240px;
    border: 4px solid rgba(255, 255, 255, 0.14);
}

.about_badge {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.about_badge h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.about_badge p {
    margin: 5px 0 0;
    color: #c9d4e4;
    font-size: 13px;
    line-height: 1.35;
}

.about_content {
    max-width: 620px;
}

.about_kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 113, 227, 0.45);
    background: rgba(0, 113, 227, 0.14);
    color: #9ecfff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about_desc {
    max-width: 560px;
}

.about_feature_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.about_feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.about_feature i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a3d2ff;
    background: rgba(0, 113, 227, 0.18);
    font-size: 15px;
    flex-shrink: 0;
}

.about_feature h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.about_feature p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #a5adb9;
}

@media (max-width: 991px) {
    .about_visuals {
        min-height: 520px;
    }

    .about_img_main {
        width: 100%;
        height: 370px;
    }

    .about_img_small {
        width: 52%;
        height: 210px;
    }
}

@media (max-width: 768px) {
    .about_feature_grid {
        grid-template-columns: 1fr;
    }

    .about_stats {
        grid-template-columns: 1fr;
    }

    .about_visuals {
        min-height: auto;
        padding: 14px;
    }

    .about_img_main {
        height: 300px;
    }

    .about_img_small {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 200px;
        margin-top: 12px;
        border: none;
    }

    .about_badge {
        top: 20px;
        left: 20px;
        bottom: auto;
    }
}
/* End About Section */

/* Start Legends Section */
.legends_section {
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 113, 227, 0.16), transparent 42%),
        radial-gradient(circle at 85% 82%, rgba(255, 255, 255, 0.06), transparent 32%),
        var(--bg_sections);
}

.legends_heading {
    max-width: 840px;
    margin-inline: auto;
}

.legend_card {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    backface-visibility: hidden;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}
.legend_card:hover {
    border-color: rgba(0, 113, 227, 0.66);
    transform: translateY(-10px);
    box-shadow: 0 22px 46px rgba(0, 113, 227, 0.18);
}

.legend_card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.72) 34%,
        rgba(0, 0, 0, 0.2) 66%,
        transparent 100%
    );
    pointer-events: none;
}

.legend_card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 113, 227, 0.3) 0%,
        rgba(0, 113, 227, 0.08) 32%,
        transparent 65%
    );
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.legend_card:hover::before {
    opacity: 1;
}

.legend_card .image {
    width: 100%;
    height: 480px;
}
.legend_card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.legend_card:hover .image img {
    transform: scale(1.06);
}
.legend_card .legend_content {
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
    gap: 10px;
    color: var(--white_color);
}
.legends-card-text {
    text-align: left;
    width: 100%;
    margin: 0 0 6px;
    font-size: clamp(1rem, 3vw + 0.5rem, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
}

.card-sub-title {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.legend_meta {
    margin-top: 8px;
    color: #c4d7ef;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.legend_card .legend_arrow i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    font-size: 17px;
    transition: 0.4s ease;
}
.legend_card:hover .legend_arrow i {
    transform: translateX(4px) rotate(-35deg);
    background: rgba(0, 113, 227, 0.42);
    border-color: rgba(0, 113, 227, 0.72);
}

@media (max-width: 992px) {
    .legend_card .image {
        height: 430px;
    }
}

@media (max-width: 768px) {
    .legend_card .image {
        height: 370px;
    }
}
/* End Legends Section */

/* Start Brands Section */
.brands_section {
    background-color: var(--bg_sections);
}
.splide {
    position: relative;
}

.splide::before,
.splide::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.splide::before {
    left: 0;
    background: linear-gradient(to right, black, transparent);
}

.splide::after {
    right: 0;
    background: linear-gradient(to left, black, transparent);
}
.splide__slide {
    text-align: center;
}
.splide__slide img {
    width: 200px;
    height: 60px;
}
/* End Brands Section */

/* Start About2 Section */
.about2_sec {
    background-color: var(--bg_sections);
    background-image: linear-gradient(#4d41bd00 74%, #4d41bd59);
    padding-top: 0;
    position: relative;
}

.about2_wrapper {
    position: relative;
    width: 100%;
    background-color: #050505;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.about2_bg-img {
    width: 100%;
    height: 40rem;
    display: block;
    opacity: 0.62;
    transform: scale(1.02);
}

.about2_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 36px 42px;
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.7));
}

.about2_stats_row {
    margin-top: 14px !important;
    margin-bottom: 36px !important;
}

.about2_card {
    text-align: center;
    color: #fff;
    padding: 18px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.h3-data-call-out {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.data-sub-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #b7c1cf;
    font-weight: 600;
}

.border-end-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .border-end-divider {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .about2_overlay {
        position: relative;
        padding: 40px 20px;
        background: linear-gradient(170deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82));
    }
}
/* End About2 Section */

/* Start timeLine section */
.timeLine_sec {
    background-color: var(--bg_sections);
}
.timeline {
    position: relative;
    width: 100%;
    /* padding: 100px 0; */
    overflow: hidden;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #444;
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0%;
    background: #4d41bd;
    transform: translateX(-50%);
    box-shadow:
        0 0 8px #4d41bd,
        0 0 15px #4d41bd,
        0 0 20px rgba(0, 113, 227, 0.6);
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 100px;
    position: relative;
}

.timeline-content {
    width: 45%;
}

.timeline-img {
    width: 40%;
}

.timeline-img img {
    width: 100%;
    height: 350px;
    /* height: auto; */
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* .h2-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
} */

/* .body-paragraph {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #86868b;
    line-height: 1.6;
} */

/* logo */
.timeLine_logo_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12rem;
    position: relative;
    background-color: #000;
    margin-top: 20px;
}

.timeLine_logo_brand {
    width: 14rem;
    height: 13rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: auto;
}

.timeLine_logo_brand img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo_static {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* background: url('/img/icons/logo.png') center center / contain no-repeat; */
}

.logo_blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('/img/icons/logo.png') center center / contain no-repeat; */
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    opacity: 0.9;
}

@media (max-width: 768px) {
    .timeline-line,
    .timeline-progress {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding-left: 0;
    }

    .timeline-content,
    .timeline-img {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* End timeLine section */

/* Start Magniflex Section */
.magniflex_sec {
    padding: 100px 0;
    background: radial-gradient(circle at top, #151515 0%, #000 100%);
}

.magniflex_intro {
    max-width: 700px;
    width: 100%;
    gap: 14px;
}

.duotone-text {
    z-index: 2;
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#4d4d4d, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 4px;
    font-size: 3rem;
    font-weight: 600;
    line-height: 3rem;
}
.magniflex_card {
    background-color: #d9d9d926;
    background-image: linear-gradient(#0000, #0006);
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
    border: 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 450px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #1a1a1a;
    border-radius: 24px;
    isolation: isolate;
}

/* .magniflex_card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.32) 0%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
} */

.magniflex_card > * {
    position: relative;
    z-index: 2;
}
.magniflex_header {
    z-index: 2;
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#757575, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 4px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.9rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.magniflex_image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.magniflex_image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;

    transition: opacity 0.8s ease;
}
.img_shown {
    opacity: 1;
    z-index: 1;
}

.img_hidden {
    opacity: 0;
    z-index: 0;
}

.magniflex_card:hover .img_shown {
    opacity: 0;
}
.img_parlexed12 {
    opacity: 1;
    z-index: 1;
}
.img_parlexed123456{
    position: relative;
    z-index: 9;
    transition: transform 0.5s !important;
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.magniflex_card:hover .img_parlexed123456 {
    transform: translate3d(0px, 11%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.magniflex_card:hover .img_hidden {
    opacity: 1;
}

.magniflex_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
}

/* card 2 */
.magniflex_title {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#4d4d4d, #fff 30%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .magniflex_sec {
        padding: 80px 0;
    }

    .magniflex_card {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .magniflex_sec {
        padding: 60px 0;
    }

    .magniflex_intro {
        gap: 10px;
        margin-bottom: 32px !important;
    }

    .magniflex_card {
        height: 340px;
        border-radius: 20px;
        padding: 16px;
    }

    .duotone-text {
        font-size: 2.4rem;
        line-height: 2.4rem;
    }

    .magniflex_header {
        font-size: 1.25rem;
        line-height: 1.6rem;
    }
}
/* End Magniflex Section */

/* Start Message Section */
.message_sec {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.message_sec_video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.message_sec_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message_sec_overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.6));
}

.message_wrapper {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: #fff;
}
/* End Message Section */

/* Start Customers Section */
.customer_sec {
    background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
    padding: 100px 0;
    overflow: hidden;
}

.mySwiper_customers {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

.mySwiper_customers .swiper-slide {
    width: auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.6s ease;
    filter: blur(3px) grayscale(65%);
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0.75;
}

.mySwiper_customers .swiper-slide-active {
    filter: blur(0px) grayscale(0%);
    transform: scale(1);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
}

/* تحسين السلايدات المجاورة (عشان يظهروا 5 متدرجين) */
.mySwiper_customers .swiper-slide-next,
.mySwiper_customers .swiper-slide-prev {
    filter: blur(1px) grayscale(35%);
    transform: scale(1);
    opacity: 0.9;
}

.mySwiper_customers video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mySwiper_customers .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.12) 45%, transparent);
    pointer-events: none;
}

/* أزرار التحكم */
.mySwiper_customers .controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.mySwiper_customers .swiper-slide-active:hover .controls {
    opacity: 1;
}

.mySwiper_customers .swiper-slide-active .controls {
    opacity: 1;
}

.mySwiper_customers .controls button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.mySwiper_customers .controls button:hover {
    background: #007bff;
    transform: scale(1.1);
}

.mySwiper_customers .swiper-button-next,
.mySwiper_customers .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 20;
    opacity: 1 !important;
    visibility: visible !important;
}

.mySwiper_customers .swiper-button-next::after,
.mySwiper_customers .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .mySwiper_customers .swiper-slide {
        height: 420px;
    }

    .mySwiper_customers .swiper-slide-active {
        transform: scale(1.03);
    }

    .mySwiper_customers .swiper-button-next,
    .mySwiper_customers .swiper-button-prev {
        width: 42px;
        height: 42px;
    }
}
/* End Customers Section */

/* Start Review Section */
.review_sec {
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 113, 227, 0.16), transparent 42%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08), transparent 36%),
        #0a0a0a;
}

.review_card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    width: 100%;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.review_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(79, 0, 227, 0.18), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.review_card:hover {
    transform: translateY(-8px);
    border-color: rgba(98, 0, 227, 0.6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.review_card:hover::before {
    opacity: 1;
}

.review_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review_stars {
    color: #ffcc33;
    font-size: 13px;
    display: flex;
    gap: 4px;
}

.review_badge {
    background: rgba(0, 113, 227, 0.2);
    color: #9ecfff;
    border: 1px solid rgba(0, 113, 227, 0.42);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.review_text {
    color: #e9edf3;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.review_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review_name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.review_role {
    color: #98a2b3;
    margin: 4px 0 0;
    font-size: 14px;
}

.review_score {
    min-width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(130deg, #4d41bd, #6f5fff);
    box-shadow: 0 10px 24px rgba(0, 113, 227, 0.38);
}

@media (max-width: 768px) {
    .review_card {
        min-height: 260px;
        padding: 20px;
    }

    .review_text {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* End Review Section */

/* Start Footer */
.site_footer {
    background: linear-gradient(180deg, #0c0f14 0%, #07090d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 24px;
    color: #d7dbe2;
}

.footer_top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.footer_col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_col ul li,
.footer_col ul li a {
    color: #b9c1cd;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.footer_col ul li a:hover {
    color: #ffffff;
}

.footer_logo {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer_logo img {
    max-width: 150px;
    width: 100%;
    object-fit: contain;
}

.footer_about p {
    color: #b9c1cd;
    max-width: 360px;
    margin: 0;
    line-height: 1.8;
}

.footer_bottom {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer_bottom p {
    margin: 0;
    color: #97a3b6;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer_top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .site_footer {
        padding: 56px 0 20px;
    }

    .footer_top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* End Footer */
