﻿.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 70%);
    z-index: 1;
    animation: pulse 8s infinite alternate;
}
/* تصميم طبقات الوسائط */
.about-media-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.main-video {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

    .main-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9) contrast(1.1);
    }

.floating-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

    .floating-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .floating-image:hover {
        animation: none;
        transform: rotate(0deg) scale(1.05);
    }

/* الهيكل العام */
.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-media-wrapper {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.about-content {
    flex: 1;
    text-align: right;
    direction: rtl;
}

/* تصميم الفيديو */
.main-video {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

    .main-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9) contrast(1.1);
    }

/* تصميم الصورة العائمة */
.floating-image {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255,215,0,0.3);
    bottom: -50px;
    left: -50px;
    z-index: 2;
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

    .floating-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: sepia(15%) hue-rotate(-5deg);
    }

.tech-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,215,0,0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* تأثيرات التحويم */
.floating-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(255,215,0,0.5);
}

.flex-tow-columns {
    display: flex;
}
/* التعديلات للجوال */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
    }

    .about-media-wrapper {
        width: 100%;
        margin-bottom: 80px;
    }

    .floating-image {
        width: 200px;
        height: 200px;
        left: 20px;
        bottom: -30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-8deg);
    }
}

/* التعديلات للجوال */
@media (max-width: 768px) {
    .main-video {
        height: 350px;
    }

    .floating-image {
        width: 200px;
        height: 200px;
        right: 20px;
        bottom: -30px;
    }
}

.stats-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stats-card {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stats-title {
    color: #FFD700;
    font-weight: 700;
}

.stats-text {
    color: #666;
}

.about-banner img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    filter: sepia(20%) hue-rotate(-10deg) contrast(110%);
    transition: transform 0.3s ease;
}

.about-banner:hover img {
    transform: scale(1.02);
}

@@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* التجاوبية */
@@media (max-width: 768px) {
    .about .container {
        flex-direction: column;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .stats-list {
        flex-direction: column;
    }
}



.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.tabs-container {
    display: flex;
    gap: 15px;
    justify-content: center; /* يحط التبويبات بالوسط */
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 25px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #777;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

    .tab-button.active {
        color: #4a4a4a;
    }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #4a4a4a;
            border-radius: 3px;
        }

.tab-content {
    display: none;
    margin-top: 20px; /* مسافة بين التبويبات والمحتوى */
}

    .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 18vw;
}



    .team-card .banner {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

        .team-card .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
        }

#emp1 {
    position: relative;
    left: -5vw;
    bottom: -6vw;
}

emp2 {
    position: relative;
}

#emp3 {
    position: relative;
    left: -20vw;
    top: -3vw;
    z-index: -1;
}


.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #7a6106, rgba(254,200,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
/*    background: white;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.team-card:hover .social-link {
    transform: translateY(0);
}

.social-link:hover {
    background: var(--gold);
    color: white;
}

.team-card .content {
/*    height: 20vh;*/
    position: relative;
    /*    bottom: -1vw;*/
    overflow: hidden;
}

.team-card .title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: right;
    padding: 0px 15px;
}

.team-card .text {
    padding: 0px 5px;
    color: #495057;
    text-align: right;
    overflow: hidden;
}

.postion {
    text-align: right;
    padding: 11px 15px;
    color: gray;
}

.tech-section {
    padding: 4rem 0;
    background-color: #F9F5F0;
    font-size: small;
}

.tech-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.tech-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(79, 74, 69, 0.1);
    height: 500px;
}

    .tech-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: sepia(15%) contrast(90%);
    }



.tech-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(79, 74, 69, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 3px solid var(--earth-accent);
}

    .tech-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(79, 74, 69, 0.15);
    }

.tech-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(151, 126, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--earth-green);
}

.tech-content {
    flex: 1;
}

    .tech-content .title {
        color: var(--earth-dark);
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .tech-content .text {
        color: var(--earth-medium);
        line-height: 1.6;
    }

/* التجاوبية */
@@media (max-width: 992px) {
    .tech-container {
        flex-direction: column;
    }

    .tech-image {
        width: 100%;
        height: 350px;
    }
}

@@media (max-width: 576px) {
    .tech-item {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* إضافة أنيميشن للدائرة */
@@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.values-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

    .values-title .dot {
        color: var(--gold);
    }

    .values-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--gold);
    }

.circle-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.rotating-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(74, 74, 74, 0.2);
    top: 0;
    left: 0;
    animation: rotateCircle 60s linear infinite;
}

.value-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.value-point {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    transform-origin: center;
}

    .value-point:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .value-point.active {
        background: var(--gold);
        color: white;
    }

        .value-point.active .value-icon,
        .value-point.active .value-name,
        .value-point.active .value-desc {
            color: white;
        }

.value-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.value-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.value-desc {
    font-size: 0.8rem;
    color: #666;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.center-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.center-content {
    text-align: center;
    padding: 20px;
}

.center-title {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.center-desc {
    font-size: 0.9rem;
    color: #666;
}

/* --- Team Features Section --- */
.team-features-section {
    background: #fff;
    padding: 40px 0;
}

.team-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-feature-card {
    display: flex;
    flex-direction: column;
}

.team-feature-icon {
    margin-bottom: 16px;
    color: #4f8cff;
}

.team-feature-title {
    color: #222;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: right;
}

.team-feature-desc {
    color: #666;
    text-align: right;
}

@media (max-width: 992px) {
    .team-features-grid {
        grid-template-columns: 2fr;
        gap: 24px;
    }
}

@media (max-width: 425px) {
}



.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.responsive-cell-block {
    min-height: 75px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

    .responsive-container-block.bigContainer {
        padding-top: 0px;
        padding-right: 50px;
        padding-bottom: 0px;
        padding-left: 50px;
        margin-top: 50px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .responsive-container-block.Container {
        max-width: 1320px;
        justify-content: space-evenly;
        align-items: center;
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 0px;
        padding-left: 10px;
        position: relative;
        overflow-x: hidden;
        overflow-y: hidden;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }

.mainImg {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.blueDots {
    position: absolute;
    top: 150px;
    right: 15%;
    z-index: -1;
    left: auto;
    width: 80%;
    height: 500px;
    object-fit: cover;
}

.imgContainer {
    position: relative;
    width: 48%;
}

.responsive-container-block.textSide {
    width: 48%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    z-index: 100;
}

.text-blk.heading {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.text-blk.subHeading {
    font-size: 18px;
    line-height: 26px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.cardImg {
    width: 31px;
    height: 31px;
}

.cardImgContainer {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgb(229, 229, 229);
    border-right-color: rgb(229, 229, 229);
    border-bottom-color: rgb(229, 229, 229);
    border-left-color: rgb(229, 229, 229);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 0px;
}

.text-blk.cardHeading {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.text-blk.cardSubHeading {
    color: rgb(153, 153, 153);
    line-height: 22px;
}

.explore {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: white;
    background-color: rgb(244, 152, 146);
    box-shadow: rgba(244, 152, 146, 0.25) 0px 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: initial;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    padding-top: 17px;
    padding-right: 40px;
    padding-bottom: 17px;
    padding-left: 40px;
}

    .explore:hover {
        background-image: initial;
        background-position-x: initial;
        background-position-y: initial;
        background-size: initial;
        background-repeat-x: initial;
        background-repeat-y: initial;
        background-attachment: initial;
        background-origin: initial;
        background-clip: initial;
        background-color: rgb(244, 182, 176);
    }

#ixvck {
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.redDots {
    position: absolute;
    bottom: -350px;
    right: -100px;
    height: 500px;
    width: 400px;
    object-fit: cover;
    top: auto;
}

@media (max-width: 1024px) {
    .responsive-container-block.Container {
        position: relative;
        align-items: flex-start;
        justify-content: center;
    }

    .mainImg {
        bottom: 0px;
    }

    .imgContainer {
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: auto;
        width: 60%;
    }

    .responsive-container-block.textSide {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: auto;
        width: 70%;
    }

    .responsive-container-block.Container {
        flex-direction: column-reverse;
    }

    .imgContainer {
        position: relative;
        width: auto;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }

    .responsive-container-block.textSide {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
        width: 100%;
    }

    .responsive-container-block.Container {
        flex-direction: row-reverse;
    }

    .responsive-container-block.Container {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .responsive-container-block.textSide {
        width: 100%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .text-blk.subHeading {
        text-align: center;
        font-size: 17px;
        max-width: 520px;
    }

    .text-blk.heading {
        text-align: center;
    }

    .imgContainer {
        opacity: 0.8;
    }

    .imgContainer {
        height: 500px;
    }

    .imgContainer {
        width: 30px;
    }

    .responsive-container-block.Container {
        flex-direction: column-reverse;
    }

    .responsive-container-block.Container {
        flex-wrap: nowrap;
    }

    .responsive-container-block.textSide {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .imgContainer {
        width: 90%;
    }

    .imgContainer {
        height: 450px;
        margin-top: 5px;
        margin-right: 33.9062px;
        margin-bottom: 0px;
        margin-left: 33.9062px;
    }

    .redDots {
        display: none;
    }

    .explore {
        font-size: 16px;
        line-height: 14px;
    }
}

@media (max-width: 500px) {
    .imgContainer {
        position: static;
        height: 450px;
    }

    .mainImg {
        height: 100%;
    }

    .blueDots {
        width: 100%;
        left: 0px;
        top: 0px;
        bottom: auto;
        right: auto;
    }

    .imgContainer {
        width: 100%;
    }

    .responsive-container-block.textSide {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .responsive-container-block.Container {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        overflow-x: visible;
        overflow-y: visible;
    }

    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding: 0 30px 0 30px;
    }

    .redDots {
        display: none;
    }

    .text-blk.subHeading {
        font-size: 16px;
        line-height: 23px;
    }

    .text-blk.heading {
        font-size: 28px;
        line-height: 28px;
    }

    .responsive-container-block.textSide {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .imgContainer {
        margin-top: 5px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        width: 100%;
        position: relative;
    }

    .explore {
        padding-top: 17px;
        padding-right: 0px;
        padding-bottom: 17px;
        padding-left: 0px;
        width: 100%;
    }

    #ixvck {
        width: 90%;
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 15px;
    }

    .blueDots {
        bottom: 0px;
        width: 100%;
        height: 80%;
        top: 10%;
    }

    .text-blk.cardHeading {
        font-size: 16px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 8px;
        margin-left: 0px;
        line-height: 25px;
    }

    .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
        padding-top: 10px;
        padding-right: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }
}

@media(max-width:425px) {
    .container {
        padding: 10px; /* تقليل الحواف الجانبية */
        max-width: 100%; /* يملأ الشاشة بدون زيادة */
        margin: 0 auto;
    }

    .team-grid {
        height: 103vh;
    }

    .team-card {
        max-height: 400px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

        .team-card .banner img {
            height: 200px;
            object-fit: cover;
        }

        .team-card .content {
            padding: 8px;
        }

            .team-card .content h3 {
                font-size: 15px;
                margin-bottom: 4px;
            }

        .team-card .cert-box p {
            font-size: 12px;
        }

        .team-card .postion {
            font-size: 11px;
            color: #777;
        }

    /* قسم المميزات */
    .team-features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-feature-card {
        padding: 12px;
        text-align: center;
    }

    .team-features-section h1 {
        font-size: 1.8rem; /* أصغر على الموبايل */
    }

    .team-features-section p {
        font-size: 13px;
        margin-bottom: 4vh;
    }

    .text-muted {
        overflow: hidden;
    }

    .flex-tow-columns {
        display: inline;
    }

    .postion {
        padding: 5px 15px;
        overflow: hidden;
    }

    #emp1 {
        left: -45vw;
        bottom: -6vw;
    }

    #emp2 {
        left: -6vw;
        top: -65vw;
        z-index: -2;
    }

    #emp3 {
        left: -42vw;
        top: -115vw;
        z-index: -3;
    }

    .team-card {
        width: 45vw;
        height: 75vh;
    }

    .footer[b-fzlh19icto] {
        position: relative;
    }

    .team-grid {
        height: 103vh;
    }
}

.text-muted {
    text-align: right;
}

@media (max-width: 1024px) {
    #emp1 {
        position: relative;
        left: -40vw;
        bottom: -6vw;
    }

    #emp2 {
        position: relative;
        left: -5vw;
        top: -32vw;
    }

    #emp3 {
        position: relative;
        left: -41vw;
        top: -95vw;
        z-index: -3;
    }
}



/* رسالتنا ورويتنا+قيمنا الاساسية*/


@media (max-width: 425px) {
    #about {
        padding-bottom: 0 !important; /* إزالة padding السفلي */
    }

        #about .container {
            padding-bottom: 0 !important; /* إزالة أي padding إضافي داخل الكونتينر */
        }


  
}




/*@media (min-width: 425px) and (max-width: 1299px) {
    .team-grid {
        position: relative;
        height: 100vh;*/ /* يعطي مساحة كافية للتداخل */
    /*}

    .team-card {
        width: 35vw;*/ /* الكروت أصغر */
        /*height: 55vh;*/ /* ارتفاع أصغر */
    /*}

    #emp1 {
        position: absolute;
        top: 0;
        left: 5vw;
        z-index: 3;
    }

    #emp2 {
        position: absolute;
        top: 15vh;
        left: 30vw;
        z-index: 2;
    }

    #emp3 {
        position: absolute;
        top: 30vh;
        left: 15vw;
        z-index: 1;
    }
}*/



@media (min-width: 425px) and (max-width: 1299px) {
    .flex-tow-columns {
        display: contents;
    }
    .team-grid {
        position: relative;
        height: 110vh; /* مساحة كافية */
        margin-left: -92px;
        display:none;
    }

    .team-card {
        width: 20vw; /* أصغر من قبل */
        height: 45vh; /* تقليل الارتفاع */
        font-size: 0.85rem; /* تصغير النصوص الداخلية */

    }

        .team-card .title {
            font-size: 1rem; /* العنوان أصغر */
        }

        .team-card .text,
        .team-card .postion {
            font-size: 0.8rem; /* النصوص أدق */
        }

    /* توزيع الكروت */
    #emp1 {
        position: absolute;
        top: 0;
        left: 10vw;
        z-index: 3;
    }

    #emp2 {
        position: absolute;
        top: 18vh;
        left: 32vw;
        z-index: 2;
    }

    #emp3 {
        position: absolute;
        top: 36vh;
        left: 17vw;
        z-index: 1;
    }
}

/* ----------------------------- */
/* --------- WRAPPER ------------ */
/* ----------------------------- */
/* -------- WRAPPER -------- */
.icon-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    padding: 10px;
    align-content: space-around;
}
@media (max-width:425px) {
    .icon-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 10px;
    }
}
/* -------- CARD -------- */
.card {
    display: grid;
    grid-template-rows: auto 1fr auto; /* العنوان، الوصف، الزر */
    justify-items: center; /* توسيط المحتوى أفقيًا */
    align-items: start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    flex: 1 1 18%;
    min-width: 200px;
    max-width: 300px;
    height: 400px; /* نفس الطول لكل الكروت */
    text-align: center;
}


    .card h2 {
        font-size: 1em;
        margin: 10px 0;
    }

    .card .card-desc {
        font-size: 0.9em;
        color: #555;
        margin: 10px 0;
        flex-grow: 1; /* يجعل الوصف يأخذ نفس المساحة لكل الكروت */
    }

    .card a {
        font-size: 14px;
        padding: 10px 15px;
        text-decoration: none;
        margin-top: auto;
    }


    /* -------- SVG & محتوى الكارد -------- */
    .card svg {
        width: 80%;
        padding: 5px;
    }


/* -------- MEDIA QUERIES RESPONSIVE -------- */
@media (max-width: 1200px) {
    .card {
        flex: 1 1 22%;
    }
}

@media (max-width: 992px) {
    .card {
        flex: 1 1 30%;
    }
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .card {
        flex: 1 1 90%; /* تقريبًا كامل العرض */
        max-width: 300px;
    }
}


/* ----------------------------- */
/* --------- WRAPPER ------------ */
/* ----------------------------- */



/* ----------------------------- */
/* --------- CARD --------------- */
/* ----------------------------- */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* توزيع العناصر */
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    flex: 1 1 18%;
    min-width: 200px;
    max-width: 300px;
    height: 400px; /* ارتفاع ثابت */
    text-align: center;
}

    .card svg {
        width: 80%;
        height: 50%;
        margin-bottom: 10px;
        padding: 5px;
        flex-shrink: 0;
    }

    .card h2 {
        font-size: 1em;
        margin: 10px 0;
        flex-shrink: 0;
    }

    .card .card-desc {
        flex-grow: 1; 
        display: flex;
        align-items: center; 
        justify-content: center; 
        text-align: center;
        padding: 0 10px;
        white-space: normal;
        word-break: break-word;
    }

   


/* ----------------------------- */
/* --------- CARD --------------- */
/* ----------------------------- */

/* ----------------------------- */
/* -------- ICON DESIGN ---------- */
/* ----------------------------- */
.icon-design {
    animation-play-state: running;
}

.anchor-part {
    animation: move 2s linear infinite;
}

.anchor-part--2 {
    animation: move2 2s linear infinite;
}

.pen-part {
    transform-origin: 140px 180px;
    animation: bounce2 2s ease-in-out infinite;
}

.ruler-part {
    transform-origin: 140px 180px;
    animation: bounce 1s ease-in-out infinite;
}

.circle-part {
    transform-origin: 139.8px 167.8px;
    animation: rotate 4s linear infinite;
}

.cursor-part {
    animation: bounceBFt2 2s ease-in-out infinite;
}

/* ----------------------------- */
/* -------- ICON DEVELOP -------- */
/* ----------------------------- */
.icon-develop {
    animation-play-state: running;
}

.gear-b {
    animation: rotate-reverse 6s linear infinite;
}

.gear-s {
    animation: rotate 12s linear infinite;
}

#XMLID_87_, #XMLID_85_, #XMLID_83_ {
    animation: twinkle 3s ease-in-out infinite;
}

#XMLID_85_ {
    animation-delay: 0.4s;
}

#XMLID_83_ {
    animation-delay: 0.6s;
}

.line-t, .line-m, .line-b {
    animation: shrink 1.8s ease-in-out infinite;
}

.line-m {
    animation-delay: 0.3s;
}

.line-b {
    animation-delay: 0.6s;
}

/* ----------------------------- */
/* --------- CODE ANIMATION ------ */
/* ----------------------------- */
.code-letter_o {
    animation: typingO 3s linear infinite;
}

.code-letter_d {
    animation: typingD 3s linear infinite;
}

.code-letter_e {
    animation: typingE 3s linear infinite;
}

@keyframes typingO {
    40.1%, 60% {
        fill: transparent;
    }

    40%, 60.1% {
        fill: #fff;
    }
}

@keyframes typingD {
    30.1%, 70% {
        fill: transparent;
    }

    30%, 70.1% {
        fill: #fff;
    }
}

@keyframes typingE {
    20.1%, 80% {
        fill: transparent;
    }

    20%, 80.1% {
        fill: #fff;
    }
}

/* ----------------------------- */
/* -------- ICON SUPPORT -------- */
/* ----------------------------- */
.icon-support .gear-s, .icon-support .gear-m {
    animation: rotate 6s linear infinite;
}

.icon-support .gear-b {
    animation: rotate-reverse 6s linear infinite;
}

.icon-support .clock {
    transform-origin: 223.6px 132.8px;
    animation: rotate 12s linear infinite;
}

/* ----------------------------- */
/* -------- ICON E-COMM -------- */
/* ----------------------------- */
.icon-eComm .bubble-b {
    animation: bubble-b 3.4s linear infinite;
}

.icon-eComm .bubble-m {
    animation: bubble-m 3.4s linear infinite;
}

.icon-eComm .bubble-t {
    animation: bubble-t 3.4s linear infinite;
}

/* ----------------------------- */
/* -------- ICON MOB APPS ------- */
/* ----------------------------- */
.icon-mobApps .gear {
    animation: rotate 30s linear infinite;
}

.icon-mobApps .line-t, .line-m, .line-b {
    animation: shrink 2.2s ease-in-out infinite;
}

.icon-mobApps .ruler {
    transform-origin: 300px 200px;
    animation: bounceBFt2 2s ease-in-out infinite;
}

.icon-mobApps .hook {
    transform-origin: 148px 24px;
    animation: bounce3 1.6s ease-in-out infinite;
}

/* ----------------------------- */
/* -------- ICON WORDPRESS ------ */
/* ----------------------------- */
.icon-wordpress {
    width: 80%;
}

    .icon-wordpress .graph {
        animation: bounce 1.4s ease-in-out infinite;
    }

    .icon-wordpress .mouse {
        animation: bounceBFt2 1.6s ease-in-out infinite;
    }

    .icon-wordpress .wp-logo {
        animation: twinkle2 4s ease-in-out infinite;
    }

/* ----------------------------- */
/* ---------- ICON WEB APPS ------ */
/* ----------------------------- */
.icon-webApps .ruler {
    animation: bounceBF 1.8s ease-in-out infinite;
}

.icon-webApps .panel {
    animation: twinkle3 3s ease-in-out infinite;
}

/* ----------------------------- */
/* --------- KEYFRAMES ---------- */
/* ----------------------------- */
@keyframes move {
    0%,100% {
        transform: translate(1px,1px);
    }

    50% {
        transform: translate(-1px,-1px);
    }
}

@keyframes move2 {
    0%,100% {
        transform: translate(-1px,-1px);
    }

    50% {
        transform: translate(1px,1px);
    }
}

@keyframes bounce {
    50% {
        transform: rotate(-6deg);
    }
}

@keyframes bounce2 {
    50% {
        transform: rotate(6deg);
    }
}

@keyframes bounce3 {
    50% {
        transform: rotate(3deg);
    }
}

@keyframes bounceBF {
    0%,100% {
        transform: rotate(1.6deg);
    }

    50% {
        transform: rotate(-1.6deg);
    }
}

@keyframes bounceBFt2 {
    0%,100% {
        transform: rotate(4.6deg);
    }

    50% {
        transform: rotate(-4.6deg);
    }
}

@keyframes shrink {
    50% {
        transform: scaleX(0.3);
    }
}

@keyframes rotate {
    to {
        transform: rotate(1turn);
    }
}

@keyframes rotate-reverse {
    to {
        transform: rotate(-1turn);
    }
}

@keyframes twinkle {
    0%,50%,100% {
        transform: scale(1);
    }

    25%,75% {
        transform: scale(1.6);
    }
}

@keyframes twinkle2 {
    0%,50%,100% {
        transform: scale(1);
    }

    25%,75% {
        transform: scale(1.07);
    }
}

@keyframes twinkle3 {
    0%,50%,100% {
        transform: scale(1);
    }

    25%,75% {
        transform: scale(1.14);
    }
}

@keyframes bubble-t {
    26%,80% {
        transform: scale(0);
    }

    20%,86% {
        transform: scale(1);
    }
}

@keyframes bubble-m {
    36%,70% {
        transform: scale(0);
    }

    30%,76% {
        transform: scale(1);
    }
}

@keyframes bubble-b {
    46%,60% {
        transform: scale(0);
    }

    40%,66% {
        transform: scale(1);
    }
}

/* ----------------------------- */
/* -------- MEDIA QUERIES ------- */
/* ----------------------------- */
@media (max-width: 1200px) {
    .card {
        flex: 1 1 22%; /* تقليل عدد الكروت في صف أكبر */
    }
}

@media (max-width: 992px) {
    .card {
        flex: 1 1 30%; /* 3 كروت في الصف */
    }
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 45%; /* كرتان في الصف */
    }
}

@media (max-width: 576px) {
    .card {
        flex: 1 1 100%; /* كارد واحد في الصف */
    }
}