/* Import Alexandria font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Alexandria', sans-serif;
    overflow-x: hidden;
    direction: ltr;
}


:root {
    --main-primary: #2E2E34;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

a {
    text-decoration: none !important;
}

.container {
    max-width: 1090px;
    margin: 0 auto;
}

header {
    z-index: 1000;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;

}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 10px;
}

/* Logo / Site Name */

/* ====== Logo Styles ====== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #2E2E34;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    box-shadow: var(--box-shadow);
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.2rem;
    font-weight: bold;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button Styles */
.btn {
    padding: 7px 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Language Button */
.btn.language-btn {
    background: transparent;
    color: var(--main-primary);
    border: 2px solid #fff;
    color: #fff;
}

.btn.language-btn:hover {
    /* background: var(--main-primary); */
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* CTA Button */
.btn.cta-btn {
    background: var(--main-primary);
    color: white;
    border: 2px solid #fff;
    box-shadow: var(--box-shadow);
}

.btn.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn.cta-btn:hover::before {
    left: 100%;
}

.btn.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Active states */
.btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 80px;
    }
}

@media (max-width: 480px) {


    .header-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 70px;
    }
}


@media (max-width: 768px) {
    .header_top {
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }
}

/* Demo content */
.demo-content {
    margin-top: 100px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.demo-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Language indicator */
.language-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* end header */

/* start slick */
.top_swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    position: relative;
}

.top_swiper .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}



.slider-overlay {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.slider-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

@media(max-width:991px) {
    .slider-overlay h2 {
        font-size: 16px;
    }
}

.slider-overlay p {
    font-size: 1.2rem;
}

.download-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.download-buttons img {
    width: 25px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #000000;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download:hover {
    background: #44444a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #555;
}

.btn-download:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-download i {
    font-size: 20px;
}

.google-play:hover {
    background: linear-gradient(135deg, #44444a, #3a9f55);
}

.app-store:hover {
    background: linear-gradient(135deg, #44444a, #007aff);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-download {
        width: 200px;
        justify-content: center;
    }
}

/* Additional visual enhancements */
.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-text small {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

/* slider 2 */

.slider_tow h2 {
    text-align: center;
    margin: 30px 0;
    font-size: 35px;
    font-weight: bold;
    color: var(--main-primary);
}

.swiper {
    direction: rtl;
}

.swiper-slide {
    overflow: hidden;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.service-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    box-shadow: var(--box-shadow);
    margin-bottom: 10px;
}


.card-content h3 {
    margin: 0 0 10px;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.card-content a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--main-primary);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.card-content a:hover {
    background: var(--main-primary);
}


.main_top_swiper {
    margin-left: 130px;
    height: 100vh !important;
}


.service-card img {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.service-card {}

.card-content {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;

}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.card-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.card-content p {
    margin: 0 0 12px;
    font-size: 14px;
}

.card-content a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--main-primary);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.card-content a:hover {
    background: var(--main-primary);
}

.main_swiper {
    margin-left: 120px;
}

@media(max-width:991px) {
    .main_top_swiper {
        margin-left: 0 !important;
    }
}

/* img_banner */

.img_banner {
    background-image: url("../img/uber.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    position: relative;
}

.img_banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.background {
    background-color: var(--main-primary);
}

.contain {
    padding: 50px 30px;
}

.contain h1 {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}

@media (max-width:991px) {
    .contain h1 {
        font-size: 25px;
        line-height: 30px;
    }
}

.contain p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    width: 600px;
}

@media(max-width:991px) {

    .contain p {
        width: 100%;
        font-size: 12px !important;
    }

}




.background .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.background .slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    height: 200px;
}

.background .slide-content h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.background .slide-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #eee;
}

.background .slide-content a {
    color: #00ff88;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.background .slide-content a:hover {
    color: #00cc66;
}

/* Navigation buttons */
.background .swiper-button-next,
.background .swiper-button-prev {
    color: #00ff88;
    border: 1px solid #00ff88;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.background .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.background .swiper-pagination-bullet-active {
    background: #00ff88;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 21px;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.244);
    box-sizing: border-box;
}


/* main_bacr */

.main_bacr {
    background-image: url('../img/9828ae9fa56e50234855d3134080dbe81da96801.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_bacr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.main_bacr h2 {
    color: #fff;
    text-align: center;
    z-index: 9339999;
    font-size: 40px;
    position: relative;
}


@media(max-width:991px) {
    .main_bacr h2 {
        font-size: 22px !important;
        line-height: 30px;
    }
}

.main_bacr p {
    color: #fff;
    z-index: 9999999;
    position: relative;
    font-size: 20px;
    text-align: center;
    width: 560px;
    margin: 0 auto;
}

@media(max-width:991px) {
    .main_bacr p {
        width: 100% !important;
    }

    .main_bacr p {
        font-size: 13px;
        margin-top: 10px;
    }
}

.main_top_joian {
    margin-top: 30px;
}

.main_top_joian h2 {
    color: var(--main-primary);
    font-size: 30px;
    font-weight: 600;
}

.main_top_joian p {
    font-size: 20px;
    color: #2E2E34;
    font-weight: 600;
    width: 700px;
}



.img_section_tow img {
    width: 100%;
    height: 700px;
    border-radius: 10px;
}

.main_title span {
    display: block;
    font-weight: 500;
    color: #00cc66;
    margin-bottom: 10px;
}

.main_title h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.main_title p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    width: 500px;
}

.main_title a {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--main-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

@media (max-width: 991px) {
    .row.align-items-center {
        flex-direction: column-reverse;
        text-align: center;
    }

    .main_title h2 {
        font-size: 24px;
    }

    .main_top_joian h2 {
        font-size: 28px;
        text-align: center;
    }

    .main_top_joian p {
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .main_title {
        margin-bottom: 30px;
    }
}

/*  */


.header-section {
    background-color: #000;
    padding: 80px 20px;
    text-align: center;
    margin-top: 20px;
}

.label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.main-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #fff;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ccc;
    font-size: 16px;
}

.image-section {
    width: 100%;
    height: 100vh;
    background-image: url(./assets/img/uber.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 40px;
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.placeholder-text {
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
}

.placeholder-subtext {
    font-size: 16px;
    color: #888;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
    }

    .description {
        font-size: 14px;
        padding: 0 20px;
    }

    .image-section {
        height: 400px;
    }
}


.footer {
    background-color: #111;
    /* خلفية غامقة */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.footer .footer-links {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .footer-links a:hover {
    color: #fff;
}



.main-nav ul {
    display: flex;
    align-items: center;
    gap: 45px !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    color: #9b9b9b;
}


.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    max-width: 400px;
    margin-inline: auto;
}

@media (max-width: 576px) {
    .download-buttons {
        grid-template-columns: 1fr;
    }
}


.btn-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}


.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000000;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin: 20px auto 0;
    }
}

#policy .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin: 20px auto 0;
    padding: 0;
    list-style: none;
}

@media(max-width:991px) {
    #policy .container {
        grid-template-columns: repeat(1, 1fr);

    }
}



.social-sidebar {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-sidebar a {
    background-color: #222;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    animation: float 2s ease-in-out infinite;

}

.social-sidebar a:hover {
    background-color: #7dd4fc;
    color: #ffffff;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-sidebar {
        left: 10px;
        top: auto;
        bottom: 20px;
        flex-direction: row;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.slider_tow {
    margin: 40px 0;
}

.slider_tow .container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
}

.top_swiper {
    background-image: url(../img/aaa.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    width: 100%;
}

@media (max-width: 991px) {
    .top_swiper {
        min-height: 100svh;
        background-position: 50% center;
    }
}



/* Overlay */
.top_swiper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
