/* import google-font */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luckiest+Guy&family=Space+Grotesk:wght@300..700&display=swap');

/* vars */

:root {
    --primary: #3d83ff;
    --text-color: #fff;
    --border-radius-large: 25px;
    --border-radius-medium: 15px;
    --border-radius-small: 10px;
}


/* common stlye */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background: linear-gradient(to bottom, #0b0b0b 0%, #112233 50%, #0d141a 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* switch language */
.language-switcher {

    padding: .4rem 1rem .4rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    width: 170px !important;
    gap: 1rem;

    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
}

.language-switcher a {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s all;
    white-space: nowrap;
    text-decoration: none;
}

.language-switcher a:hover {
    transform: translateY(-2px);
}

.language-switcher a:active {
    transform: translateY(0);
}

.global-icon {
    font-size: 1.5rem;
    transition: 0.4s all;
    z-index: 9999;
    filter: drop-shadow(0 0 10px #ffffff86);
}


/* scrollber style  */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #3d84ff30, #3d84ff10);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4d7fd5, #3d5fa8);
    border-radius: 8px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #305ca8, #234a91);
}

/* scroll to top */

.up-icon-conatiner {
    position: fixed;
    bottom: -60px;
    right: 16px;
    z-index: 10000;
    transition: bottom 0.5s ease, opacity 0.2s ease;
    opacity: 0;
}

.up-icon {
    padding: .7rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 10px #264d91;
    color: #3d84ff;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.show {
    bottom: 15px;
    opacity: 1;
}

.up-icon:hover {
    box-shadow: 0 5px 15px #264d91;
    transform: translateY(-2px);
}

.up-icon:active {
    transform: translateY(0);
}


/* header style */

.header {

    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(71, 71, 187, 0.26);

    height: 70px;
    border-radius: var(--border-radius-large);
    margin: 1rem auto;
    width: 95%;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

    align-items: start;
    position: relative;
    z-index: 9999;

    overflow: hidden;

    transition: 0.3s ease-in-out;

}

/* logo style */

.header .logo-container {
    width: 20%;
    height: 100%;
}

.header .logo-container img {
    height: 100%;
}

/* hamburger style */

.hamburger {
    display: none;
}

/* navbar style */

.links,
.navbar {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 1s all;
}

.nav-link {
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--text-color);
    transition: 0.4s all;
}

.nav-link:hover {
    color: #3d83ff;
    filter: drop-shadow(0 0 20px rgba(50, 166, 255, 0.3));
}

.active-link {
    color: #3d83ff;
    filter: drop-shadow(0 0 20px rgba(50, 166, 255, 0.3));

}

/* vedio style */

.home-section {
    border-radius: var(--border-radius-large);
    width: 95%;
    margin: 0 auto;
}

.home-section .bg-video {
    border: 1px solid rgba(71, 71, 187, 0.51);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-large);

}

/* about section style */

.Statistics-section {
    color: white;
    margin: 1.6rem auto;
    width: 95%;
    border-radius: var(--border-radius-large);
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    height: 50vh;
}

.Statistics-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);

    cursor: pointer;
    transition: all 0.5s ease;
    height: 100%;
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Statistics-card::before {
    background: radial-gradient(circle 800px at var(--mouse-x) var(--mouse-y), hsla(218, 100%, 62%, 0.1), transparent 40%);
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.Statistics-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(61, 132, 255, 0.4);
}

.statistics-counter {
    margin-bottom: 1rem;
    height: 40%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.statistics-counter span {
    font-size: 3rem;
    font-weight: 700;
}

.statistics-counter span:nth-child(1) {
    filter: drop-shadow(0 0 10px #fff);

}

.statistics-counter span:nth-child(2) {
    color: #3d83ff;
    filter: drop-shadow(0 0 10px #3d83ff);
}

.statistics-content {
    height: 60%;
    display: flex;
    align-items: start;
    justify-content: center;
}

.Statistics-card h6 {
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.Statistics-card h6 span {
    color: #3d83ff;
    font-size: 1.8rem;
}

.Statistics-icon {
    background-color: #3d83ff;
    padding: 1.4rem;
    box-shadow: 0 0 10px #264d91;
    border-top-left-radius: var(--border-radius-medium);
    border-bottom-right-radius: var(--border-radius-medium);
    position: absolute;
    top: 0rem;
    left: 0rem;

    font-size: 1.5rem;

}

/* about style */

.about-section,
.contact-section {
    width: 95%;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.about-section .content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 100% !important;
}

.about-card {
    width: 100%;
    min-height: 100%;
}

.about-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(61, 132, 255, 0.3) 1px, transparent 1px),
        linear-gradient(to right, rgba(61, 132, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.2;
}

.about-section .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}

.about-section h1,
.contact-section h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;

    background: linear-gradient(to left, #3d84ff81, #3d84ffde);
    filter: drop-shadow(0 0 10px #3d84ff5f);
    text-shadow: 0 0 5px rgba(61, 131, 255, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-card,
.card-stlye {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);

    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(8px);

    position: relative;
    box-shadow: 0 0 15px rgba(61, 132, 255, 0.05);
    ;

    cursor: pointer;
    transition: all 0.5s ease;

}

.about-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.about-card::before,
.card-stlye::before {
    background: radial-gradient(circle 800px at var(--mouse-x) var(--mouse-y), hsla(218, 100%, 62%, 0.1), transparent 40%);
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    z-index: -1000;
}

.about-card:hover,
.card-stlye:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(61, 132, 255, 0.4);
}

.about-card p {
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
}

.copy-icon {
    font-size: 1rem;
    color: #ffffffbd;
    border-radius: 50%;
    text-align: center;
    transition: 0.2s all;
    z-index: 1000;
    margin-left: .5rem;
}

.copy-icon:hover {
    scale: 1.1;
    color: #3d83ff;

}

.copy-icon :active {
    scale: 1;
    color: #3d83ff;
}

.fa-check {
    color: #11b08e;
}

/* services style */

.services-section {
    width: 95%;
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-section h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;

    background: linear-gradient(to left, #3d84ff81, #3d84ffde);
    filter: drop-shadow(0 0 10px #3d84ff5f);
    text-shadow: 0 0 5px rgba(61, 131, 255, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.search-bar {
    min-width: 80%;
    margin-top: 1rem;
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    max-width: 190px;
}

.services-section .search-bar .input {
    width: 100%;
    height: 60px;
    line-height: 28px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    color: #fff;
    transition: .3s ease;
}

.services-section .search-bar .input::placeholder {
    color: #fff;
}

.services-section .search-bar .input:focus,
input:hover {
    outline: none;
    border-color: rgba(61, 132, 255, 0.4);

    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);


    box-shadow: 0 0 0 1px rgba(61, 132, 255, 0.4);
}

.services-section .search-bar .icon {
    position: absolute;
    left: 1rem;
    color: #fff;
    width: 1rem;
    height: 1rem;
    z-index: 111;
}

/* services slider stlye */

.services-container {
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    padding: 4rem 1rem;
    position: relative;
    padding-block: 5rem;
    width: 100%;
    margin: 2rem auto;
}

.swiper {
    width: 100%;
}

.card-content {
    margin-inline: 1.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.swiper-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;

}

.swiper-slide {
    height: 100% !important;
    margin: .5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 1.25rem;
    transition: 0.2s ease-in-out !important;
}


.card-background video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 1.25rem 1.25rem 0 0;
    display: block;
}

.card-background {
    position: relative;
    margin-bottom: -2rem;
    z-index: 20;
    width: 100%;
    object-fit: cover;
}

.card-data {

    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);


    height: 300px;

    width: 100%;
    padding: 3rem 2rem 2rem 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    flex-grow: 1;
    overflow: hidden;
    text-align: center;
}

.card-name {
    font-size: 1.9rem;
    margin-top: .75rem;
    color: #3d84ff;
}

.card-description {
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.card-button,
.btn-style {
    display: inline-block;
    padding: .75rem 1.5rem;
    background-color: #3d84ffc2;
    filter: drop-shadow(0 0 10px #3d84ffb9);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: .3s ease-in-out;
}


.card-button:hover,
.btn-style:hover {
    background-color: rgba(61, 132, 255, 0.914);
    transform: translateY(-3px);
}

.card-button:active,
.btn-style:active {
    background-color: rgba(61, 132, 255, 0.737);
    transform: translateY(-1px);
}

/* swiper class */

.swiper-pagination {
    width: initial;
    height: initial;
    font-size: 3rem;
    position: absolute;
    z-index: 10;
    color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '' !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    width: initial;
    height: initial;
    /* filter: drop-shadow(0 0 5px #3d84ffbd); */
    opacity: .8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 3rem;
}

.swiper-button-next {

    right: -3rem;
    animation: upDown 1s infinite alternate;
    transition: .2s ease-in-out;
}

.swiper-button-next i {
    color: #fff !important;
}

.swiper-button-prev {
    left: -3rem;
    animation: upDown 1s infinite alternate;
    transition: .2s ease-in-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: translateY(-53%);
}

.swiper-button-prev:active,
.swiper-button-next:active {
    transform: translateY(-50%);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.swiper-slide.highlight {
    transform-origin: center center;
    /* transform: scale(1.2); */
    z-index: 10;
    transition: transform 0.3s ease;
    /* box-shadow: 0 0 15px rgba(61, 132, 255, 0.8); */
}

.swiper-slide.highlight.shake {
    animation: shake 0.4s ease;
}

/* overlay style */
.overlay {
    display: none;
    position: fixed;
    /* fixed عشان يغطّي الشاشة كلها */
    inset: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.533);
    backdrop-filter: blur(6px);
    color: white;
    transition: opacity 0.4s ease;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    z-index: 1000;

    animation: fadeScaleIn 0.4s ease forwards;

}

.overlay .content-container {
    position: relative;
    /* مش absolute عشان نتحكم بشكل أسهل */
    width: 80vw;
    max-width: 900px;
    height: 60vh;
    max-height: 600px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    background-color: #a367af78;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    box-shadow: 0 0 20px #a367afaa;
}

.content-img video {
    height: 100%;
    width: auto;
    border-radius: 25px 0 0 25px;
    object-fit: cover;
    flex-shrink: 0;
}

.content-text {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h1 {
    margin-top: 0;
    color: #fff;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(163, 103, 175, 0.8));
}

.content-text p {
    color: #ffffffcc;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 1.5rem;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    text-shadow: 0 0 8px rgba(163, 103, 175, 0.8);
    transition: text-shadow 0.3s ease, color 0.3s ease;
    z-index: 1100;
}

.btn-close:hover {
    color: #d1a6e0;
    text-shadow: 0 0 15px #d1a6e0, 0 0 20px #a367af;
}

.btn-close:focus {
    outline: none;
    text-shadow: 0 0 20px #d1a6e0, 0 0 25px #a367af;
}


@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive styles */

@media (max-width: 900px) {
    .overlay .content-container {
        flex-direction: column;
        width: 90vw;
        height: auto;
        max-height: 90vh;
        border-radius: 20px;
    }

    .content-img video {
        width: 100%;
        height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .content-text {
        padding: 1rem;
        text-align: center;
    }

    .content-text h1 {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .btn-close {
        top: 5px;
        right: 10px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content-text h1 {
        font-size: 1.5rem;
    }

    .content-text p {
        font-size: 0.9rem;
    }
}




/* contact conatiner */

.contact-container {
    display: flex;
    gap: 2rem;
    min-height: 100vh;
}

.contact-container h1 {
    font-size: 2.5rem;
}

.social-media {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.email-form {
    width: 60%;
}

/* social media */

.social-media h1 {
    text-align: left;
    margin-bottom: 1rem;
}

.data-group {
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem;
    color: #ffffffdb;
}

.data-group p:last-child {
    margin-top: .5rem;
    font-size: 1.5rem;
}

/* contact style */

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
}

.email-form h1 {
    text-align: left;
    margin-bottom: 1rem;

}

.email-form .data-group {
    width: 90%;
}

.input-style {
    margin: 0;
    width: 90%;
    /* height: 200px ; */
    line-height: 20px;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    color: #fff;
    transition: .3s ease;
}

.input-style::placeholder {
    color: #fff;
}

.input-style:focus,
input:hover {
    outline: none;
    border-color: rgba(61, 132, 255, 0.4);

    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);


    box-shadow: 0 0 0 1px rgba(61, 132, 255, 0.4);
}

.email-form textarea {
    min-height: 20vh;
    padding: 1rem;
    resize: none;

}

.email-form button {
    outline: none;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    margin-top: 1.5rem;
    padding: 1rem 3rem;
}

.btn-container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.icon-style {
    background-color: #3d83ff;
    padding: 1.4rem;
    box-shadow: 0 0 10px #264d91;
    border-top-left-radius: var(--border-radius-medium);
    border-bottom-right-radius: var(--border-radius-medium);
    font-size: 1.5rem;
}

.z-index-1000 {
    z-index: 1000;
}

.map {
    margin-top: 2rem;
    border-radius: 1rem;
}

.map iframe {
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(61, 132, 255, 0.4);
}

/* footer */

.footer-container {
    max-width: 1170px;
    margin: auto;
    padding: 5rem 2rem;

}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: #24262b;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 30px;
}

.footer-col:nth-child(2) {
    width: 50%;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col p {
    color: #bbbbbb;
}

.footer-col h4::before,
.footer-col img::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #3d84ff;
    box-shadow: 0 0 10px #305ca8;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3d84ff;
    filter: drop-shadow(0 0 10px #3d83ff);
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #3d84ffba;
    /* filter: drop-shadow(0 0 10px #ffffff72); */

    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    transform: translateY(-2px);
    color: #fff;
    background-color: #3d84ff;
    filter: drop-shadow(0 0 10px #3d84ffc6);
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

/* Add to existing CSS */
[dir="rtl"] .header .logo-container {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 !important;
}

[dir="rtl"] .header .logo-container img {
    /* width: ; */
}

[dir="rtl"] .header .navbar {
    order: 0;
}

[dir="rtl"] .navbar {
    margin-left: auto;
    /* لدفع العناصر إلى اليسار */
    flex-direction: row-reverse;
    /* عكس اتجاه العناصر */
}

@media only screen and (max-width:900px) {
    [dir="rtl"] .navbar {
        margin-left: auto;
        /* لدفع العناصر إلى اليسار */
        flex-direction: column;
        /* عكس اتجاه العناصر */
    }
}

[dir="rtl"] .hamburger {
    order: -1;
    /* وضع زر القائمة على اليمين */
    margin-left: auto;
    /* لدفع العناصر إلى اليسار */
}

[dir="rtl"] .language-switcher {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-container {
    /* flex-direction: row; */
}

[dir="rtl"] .social-media {
    /* width: 50%; */
}

[dir="rtl"] .social-media h1 {
    text-align: right;
}

[dir="rtl"] .data-group {
    /* flex-direction: row; */
    /* text-align: cent; */
}

[dir="rtl"] .email-form h1 {
    text-align: right;
}

[dir="rtl"] .content-group {
    text-align: right;
}


[dir="rtl"] .btn-container {
    justify-content: flex-start;
}

[dir="rtl"] .footer-col {
    text-align: right;
}

[dir="rtl"] .footer-col h4::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .about-subtitle {
    align-items: start;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #3d83ff;
    filter: drop-shadow(0 0 10px #3d84ffa6);
}

[dir="ltr"] .about-subtitle {
    justify-content: start;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #3d83ff;
    filter: drop-shadow(0 0 10px #3d84ffa6);
}

[dir="rtl"] .content-img video {
    border-radius: 0 0 0 0;
}

[dir="ltr"] .card-data {
    height: 340px;
}

/* [dir ="rlt"] . */
/* Active state for language buttons */
.lang-btn.active {
    color: #3d83ff;
    font-weight: bold;
    position: relative;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3d83ff;
}

/* Show menu for language switcher */
.language-switcher.show-menu {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

strong,
p {
    font-family: "Space Grotesk", sans-serif;
    font-style: normal;
}

