* {
    font-family: IBM Plex Sans Arabic;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    box-sizing: border-box;

}

a {
    transition: all 0.5s ease;
}

p {
    text-align: justify;
}

body {
    background-color: rgb(0, 0, 0);
    overflow-x: hidden;
}

.sticky-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}


.wat {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
}

.wat img {
    width: 120%;
    height: 120%;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translate(10%, -10%);
}

.wat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}


html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
}


header {
    position: sticky;
    top: 30px;
    border-radius: 20px;
    margin: 0 auto;
    width: 80%;
    height: 70px;
    display: flex;
    padding: 10px;
    background-color: white;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.494);
    z-index: 999;
}

header img {
    width: 60px;
    height: 60px;
}

header nav {
    display: flex;
    gap: 50px;
}

header nav a {
    border: 1px solid transparent;
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 20px;
}

header nav a:hover {
    border: 1px solid black;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 2px;
}

/* Responsive */
@media screen and (max-width: 1094px) {
    header nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100vh;
        width: 250px;
        background-color: white;
        padding-top: 70px;
        gap: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.8s ease;
        z-index: 999;
    }

    header nav:after {
        content: '';
        width: 100px;
        height: 100px;
        background-color: red;
        position: absolute;
        top: 10px;
        left: 10px;
        border-radius: 50%;
        background: url(image/logo.webp), no-repeat center;
        background-size: contain;
        box-shadow: 0px 0px 5px 1px rgba(26, 26, 26, 0.274);

    }

    header nav a {
        font-size: 18px;
        padding: 10px 20px;
        border-radius: 10px;
        text-align: right;
        transition: all 0.3s ease;
        margin-right: 10px;
        width: 80%;
    }

    header nav a:hover {
        background-color: rgba(136, 136, 136, 0.1);
        border-top: none;
        border-bottom: none;
        border-radius: 0;
    }

    header nav.active {
        right: 0;
    }



    .hamburger {
        display: flex;
    }
}



.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.buttons .lang {
    padding: 5px 10px;
    background-color: black;
    border: 1px solid black;
    cursor: pointer;
    border-radius: 50%;
    font-size: 15px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.buttons .lang a {
    color: white;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-top: 2px;
}

.buttons .contact {
    background-color: orange;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.5s ease;
    cursor: pointer;
}

.buttons .contact:hover {
    background-color: black;
    color: white;
}

.buttons .contact:hover a {
    color: white;
}

.buttons .lang:hover {
    background-color: white;
}

.buttons .lang:hover a {
    color: black;
}


.hero {
    height: 100vh;
    width: 100vw;

}

.container {
    margin: -70px auto;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.167);
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5);
    transition: opacity 1.2s ease;
    opacity: 1;
}


.rads {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.rads span {
    background-color: black;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 10px;
}

.rads h2 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.container .info p {
    font-size: 1.5rem;
    margin-top: 30px;
    color: white;
    font-weight: 500;
}



.container .info {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background-color: rgba(236, 236, 236, 0.213);
    width: 1000px;
    max-width: 90%;
    /* يجعل الصندوق أصغر على الشاشات الصغيرة */
    border-radius: 10px;
    padding: 30px 40px;
    box-sizing: border-box;
}

/* تعديل للهواتف والشاشات الصغيرة */
@media (max-width: 1200px) {
    .container .info {
        right: -40%;
        transform: translate(-50%, -50%);
        /* يصطف في منتصف الشاشة أفقياً وعمودياً */
        padding: 20px 25px;
        width: 90%;
        /* يملأ تقريباً الشاشة */
    }
}

@media (max-width: 768px) {
    .rads {
        flex-direction: column;
        /* يجعل الشعار واسم الشركة تحت بعض على الشاشات الصغيرة */
        gap: 10px;
        text-align: center;
    }

    .rads span,
    .rads h2 {
        font-size: 1.5rem;
    }

    .container .info p {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .rads span,
    .rads h2 {
        font-size: 1.2rem;
    }

    .container .info p {
        font-size: 1rem;
    }
}


/* ===== About Section Modern Dark Mode ===== */
.about {
    border-radius: 20px 20px 0 0;
    width: 100%;
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.title {
    background: url(image/AdobeStock_193307850.webp) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #fff 5%, #ff0040 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: grayscale(0.4);
    margin: 0 auto;
    text-align: center;
}

.ditails {
    background-color: rgb(16, 16, 16);
    box-shadow: 0 -20px 40px 10px rgba(89, 89, 89, 0.59);
    border-radius: 20px 20px 0 0;
    padding: 80px 50px;
    /* قللنا من 150px عشان يكون فيه مساحة أقل من الأطراف */
    display: flex;
    justify-content: space-around;
    /* بدل space-between قربهم من بعض */
    flex-wrap: wrap;
    gap: 30px;
    /* نضيف gap بين العناصر */
}


.weAre,
.more-info {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background-color: #2a2a2a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weAre::after,
.more-info::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 200px;
    top: 10px;
    left: -85px;
    z-index: 0;
    background: linear-gradient(190deg, #ff0040, transparent);
}

.weAre h5,
.more-info h5 {
    color: #ff0040;
    font-size: 1.8rem;
}

.weAre p,
.more-info p {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 500;
    line-height: 1.6;
}

.weAre:hover,
.more-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 0, 128, 0.4);
}

.more-info {
    animation: fadeOut 2s ease;
    animation-delay: 1s;
    animation-fill-mode: backwards;
}

.expertise {
    width: 80%;
    margin: 80px auto 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.expertise h4 {
    padding-bottom: 20px;
    color: #ff0040;
    font-size: 2.5rem;
}

.expertise p {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {

    .weAre,
    .more-info {
        width: 100%;
    }

    .expertise {
        width: 100%;
        margin: 50px 0 0 0;
    }

    .title h2 {
        font-size: 2.5rem;
    }
}


/* ===== Our Commitments Dark Mode ===== */
.ourCommitments {
    background-color: #121212;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.ourCommitments h5 {
    font-size: 3rem;
    color: #ff0040;
    margin-bottom: 50px;
    text-align: center;
}

.ourCommitments .combo {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.ourCommitments .ourvision,
.ourCommitments .ourmission {
    background-color: #1f1f1f;
    border-radius: 15px;
    padding: 20px;
    flex: 1 1 45%;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ourCommitments .ourvision img,
.ourCommitments .ourmission img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ourCommitments .ourvision h5,
.ourCommitments .ourmission h5 {
    font-size: 1.5rem;
    color: #ff0040;
    margin-bottom: 15px;
}

.ourCommitments .ourvision p,
.ourCommitments .ourmission p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 10px;
}

/* Hover effect */
.ourCommitments .ourvision:hover,
.ourCommitments .ourmission:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 0, 128, 0.4);
}

/* Responsive */
@media (max-width: 992px) {

    .ourCommitments .ourvision,
    .ourCommitments .ourmission {
        flex: 1 1 100%;
    }
}

/* ===== Services Section Dark Mode ===== */
#services {
    background-color: #121212;
    padding: 60px 20px;
    color: #fff;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

#services .box {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

#services .service h5 {
    font-size: 2rem;
    color: #ff0040;
    margin-bottom: 20px;
}

#services .service p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
}

#services .service span {
    color: #ff0040;
    /* highlight text */
    font-weight: 600;
}

.ourServies {
    width: 100%;
    font-size: 3rem;
    font-weight: 700;
    color: #ff0040;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}


/* ===== Second Box (cards) ===== */
.second-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.second-box .type {
    background-color: #1f1f1f;
    border-radius: 15px;
    padding: 20px;
    width: calc(40% - 20px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.second-box .type img {
    width: 100%;
    /* fixed width */
    height: 220px;
    /* fixed height */
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
    /* border: 2px solid #ff0040; */
}

.second-box .type h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.second-box .type p {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
}

/* Hover effect */
.second-box .type:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 0, 128, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .second-box .type {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .second-box {
        flex-direction: column;
        align-items: center;
    }

    .second-box .type {
        width: 90%;
    }
}

/* Services2 Section Modern Dark Centered */
.services2 {
    background-color: #0f0f0f;
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.services2 .box {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    /* كل العناصر في النص */
}

/* Main cards */
.services2 .service,
.services2 .vision-2,
.services2 .misiion-2 {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    /* يملأ مساحة البوكس */
}

.services2 .service h5 {
    font-size: 2rem;
    color: #ff0040;
    margin-bottom: 15px;
    text-align: right;
}

.services2 .misiion-2 span,
.services2 .vision-2 span {
    font-size: 2rem;
    font-weight: 900;
    color: #ff0040;
}

.services2 .service p,
.services2 .vision-2 p,
.services2 .misiion-2 p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ccc;
    text-align: justify;
}

.carsphoto {
    width: 100%;
    background-color: red;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.carsphoto:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.5);
    transform: translateY(-10px);
}

.carsphoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effect */
.services2 .service:hover,
.services2 .vision-2:hover,
.services2 .misiion-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.5);
}

/* Offers section */
.services2 .offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.services2 .offers .offer1,
.services2 .offers .offer2 {
    flex: 1 1 45%;
    max-width: 500px;
    background: linear-gradient(135deg, #222, #444);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services2 .offers .offer1:hover,
.services2 .offers .offer2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.5);
}

/* Good sentence */
.services2 .good-sentence {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    width: 100%;
}

.services2 .good-sentence h5 {
    font-size: 1.5rem;
    color: #ff0040;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {

    .services2 .offers .offer1,
    .services2 .offers .offer2 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .services2 .good-sentence {
        padding: 20px;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .services2 .box {
        gap: 30px;
    }
}


.services3 {
    background-color: #0f0f0f;
    padding: 60px 20px;
    color: #fff;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.services3 .main-box {
    max-width: 1500px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.services3 .main-box h5 {
    font-size: 2.5rem;
    color: #ff0040;
    margin-bottom: 20px;
    text-align: right;
}

.services3 .detailsinbox h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.services3 .detailsinbox p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

/* Photo frame */
.photo-main-box .frame {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 20%;
}

.photo-main-box .small-service {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 15px;
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-main-box .small-service img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
}

.photo-main-box .small-service h6 {
    font-size: 1.2rem;
    color: #ff0040;
}

/* Hover effect */
.photo-main-box .small-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 0, 128, 0.5);
}

/* Responsive */

@media (max-width: 1160px) {
    .photo-main-box .frame {
        margin: 0 0;
    }
}

@media (max-width: 992px) {
    .photo-main-box .small-service {
        width: calc(50% - 15px);
        /* 2 per row */
    }
}

@media (max-width: 576px) {
    .photo-main-box .small-service {
        width: 90%;
        margin: 0 auto;
    }
}

.callus {
    background-color: #121212;
    padding: 50px 20px;
    text-align: center;
}

.callus .social {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.callus button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.callus .whatsapp {
    background-color: #12ab4a;
}

.callus .whatsapp:hover {
    background-color: #1da851;
}

.callus .email {
    background-color: #ff002b;
}

.callus .email:hover {
    background-color: #e60035;
}



footer {
    background-color: #0d0d0d;
    color: #ccc;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    padding: 50px 20px 30px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* Logo */
.footer-logo a {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo a:hover {
    color: #fff;
}

/* Navigation */
.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff0040;
}

/* Contact */
.footer-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff0040;
}

/* Social */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #25d366;
    /* WhatsApp green for hover */
    transform: scale(1.2);
}

/* Bottom text */
.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

.footer-bottom p a {
    color: #ff0040;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-nav,
    .footer-contact,
    .footer-social {
        flex-direction: column;
        gap: 15px;
    }
}



@media (max-width: 690px) {
    .sticky-logo {
        width: 50px;
        height: 50px;
    }

    .wat {
        width: 50px;
        height: 50px;
    }
}


.animate-on-scroll {
    opacity: 0;
    /* مخفي */
    transform: translateY(50px);
    /* تنقل للأسفل شوية */
    transition: all 0.6s ease-out;
    /* حركة ناعمة */
}


.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}