


.home-page-new {
    direction: ltr;
    text-align: left;
}




/* =============================
   Hero Section 
   ============================= */


.footer-credits {
    border-top: 1px solid #2d2c2c;
    background-color: rgb(35, 35, 35);
}

.footer-credits{
    color:#fff;
    font-size: 20px;
}
.footer-credits a{
    color:#fff;
}
.footer-credits a > img{
    width: 59px;
    margin: 0 0 0px 5px;
}
.footer-madeby{
    text-align: center;
}
   
.hero {
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
}

.hero__background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}
.hero__background-mobile{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
    display: none;
}
.hero__overlay {
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 66%, rgb(255, 255, 255) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    color: #fff;
    text-align: end;
    padding: clamp(40px, 6vw, 80px) clamp(30px, 6vw, 130px);
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    z-index: 3;
    flex: 1;
}

.hero__content-button {
    display: none;
    opacity: 1;
    width: fit-content;
    min-width: 209px;
    height: 45px;
    border-radius: 5px;
    font-family: inherit;
    font-size: clamp(14px, 1.2vw, 16px);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    direction: rtl;
    color: #fff;
    position: relative;
    background: rgba(255,255,255,0.5);
    border: none;
}

.hero__content-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 1px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero__content-button:hover {
    transform: translateY(-2px);
}

.hero__content-title {
    width: min(766px, 100%);
    font-size: clamp(42px, 6vw, 83px);
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-family: inherit;
    margin-top: clamp(20px, 4vw, 60px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero__divider{
   width: min(558px, 100%);
height: 2px;
background: white;
margin-bottom: 20px;
border-radius: 194px;
}
.hero__content-desc {
    width: min(748px, 100%);
    font-size: clamp(24px, 3.5vw, 46px);
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-family: inherit;
    margin: 10px 0 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__content-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
}

.hero__buttons-left {
    border: none;
    width: 170px;
    height: 45px;
    border-radius: 5px;
    background-color: #282828;
    color: #fff;
    font-family: inherit;
    font-size: clamp(14px, 1.2vw, 16px);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    justify-content: center;
  display: flex;
  align-items: center;
}

.hero__buttons-left:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero__buttons-right {
    border: none;
    width: 137px;
    height: 45px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #282828;
    font-family: inherit;
    font-size: clamp(14px, 1.2vw, 16px);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    justify-content: center;
  display: flex;
  align-items: center;
}

.hero__buttons-right:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero__right {
    position: relative;
    width: 191px;
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: clamp(30px, 4vw, 60px);
    z-index: 3;
}

.hero__border {
    height: clamp(100px, 20vh, 140px);
    border-radius: 20px;
    background-color: #fff;
    width: 6px;
    align-self: baseline;
    transform: translateX(-3px);
    margin-bottom: 150px;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

@media (max-width: 1099px) {
    .hero__background-mobile{

    display: block;
}
 .hero__background{

    display: none;
}
    .hero__right {
        display: none;
    }

    .hero__content {
        padding: 100px 30px 40px;
    }
    
    .hero__content-title {
        font-size: 42px;
    }
    
    .hero__content-desc {
        font-size: 24px;
    }
    
    .hero__buttons-left,
    .hero__buttons-right {
        width: 150px;
        height: 42px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
.hero{
	min-height: 94vh;
}
    .hero__content {
        padding: 90px 20px 30px;
    }

    .hero__content-title {
        font-size: 36px;
    }
    
    .hero__content-desc {
        font-size: 18px;
        margin: 10px 0 25px;
    }
    
    .hero__content-buttons {
        gap: 8px;
    }
    
    .hero__buttons-left,
    .hero__buttons-right {
        width: 130px;
        height: 40px;
        font-size: 13px;
    }
    
    .hero__content-button {
        min-width: 180px;
        height: 42px;
        font-size: 14px;
    }
}
/* =============================
   NUMBERS Section 
   ============================= */
    .numbers {
        display: flex;
        width: 100%;
        min-height: 100vh;
        background-color: rgb(243,243,243);
overflow: hidden;
    }

    .numbers__image-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: clamp(20px, 3%, 5%) clamp(10px, 1%, 20px);
        gap: clamp(20px, 3vw, 60px);
        flex: 2; 
        min-width: 40%;
    }

    .numbers__image {
        width: 100%;
        max-width: 520px;
        height: auto;
        display: block;
    }

    .numbers__shadow {
        box-shadow: 0px -34px 70px 40px rgba(34, 60, 80, 0.2);
        width: 200px;
        height: 0px;
        opacity: 1;
    }

    .numbers__line {
        width: min(440px, 40vw);
        height: 10px;
        border-radius: 5px;
        background-color: rgba(40,40,40,0.212);
        position: relative;
    }

    .numbers__line-solid {
        position: absolute;
        width: min(284px, 60%);
        height: 10px;
        border-radius: 5px;
        background-color: #282828;
        top: 0;
        left: 0;
    }

    .numbers__impact {
  padding: clamp(30px, 31%, 3%) 0;
  border-left: 1px solid rgba(40,40,40,0.18);
  border-right: 1px solid rgba(40,40,40,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 7%;
}

    .numbers__impact-text {
        opacity: 0.18;
        font-size: clamp(18px, 4.5vw, 35px);
        letter-spacing: clamp(8px, 1vw, 18px);
        line-height: 1.2;
        text-transform: uppercase;
        color: #282828;
        font-family: inherit;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        white-space: nowrap;
    }

    .numbers__content {
        display: flex;
        flex-direction: column;
        text-align: right;
        align-items: flex-end;
        padding: clamp(30px, 4vw, 60px) clamp(30px, 6vw, 130px) clamp(30px, 4vw, 60px) 0;
        gap: clamp(20px, 3vw, 40px);
        flex: 2; 
        min-width: 400px;
    }

    .numbers__button {
    width: 104px;
    height: 45px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    background: transparent;
    border: none;
    color: #282828;
}

.numbers__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 2px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}



   
    .numbers__title {
        width: min(250px, 100%);
        font-size: clamp(36px, 3vw, 58px);
        line-height: 1;
        text-transform: uppercase;
        color: #282828;
        font-weight: bold;
        font-family: inherit;
        text-align: right;
    }

    .numbers__description {
        opacity: 0.8;
        width: min(480px, 100%);
        font-size: clamp(14px, 1vw, 18px);
        color: #282828;
        font-family: inherit;
        text-align: right;
        direction: rtl;
    }

    .numbers__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 2.5vw, 50px);
        width: 100%;
        margin-top: 100px;
        max-width: 472px;
    }

    .numbers__stat {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
    }

    .numbers__stat-desc {
        width: min(180px, 80%);
        direction: rtl;
        font-size: clamp(12px, 0.9vw, 16px);
        opacity: 0.7;
        min-height: 45px;
    }

    .numbers__stat-number {
        font-size: clamp(42px, 4vw, 71px);
        text-transform: uppercase;
        color: #282828;
        font-family: inherit;
        line-height: 1;
        direction: rtl;
    }

    .numbers__right {
        width: 191px;
        flex-shrink: 0;
        border-left: 1px solid rgba(40,40,40,0.18);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: clamp(30px, 4vw, 60px);
    }

    .numbers__number {
        opacity: 0.451;
        font-size: clamp(24px, 1.8vw, 31px);
        text-transform: uppercase;
        color: #282828;
        font-family: inherit;
        white-space: nowrap;
    }

    .numbers__border {
        height: clamp(100px, 10vw, 150px);
        border-radius: 20px;
        background-color: #282828;
        width: 6px;
        align-self: baseline;
        transform: translateX(-3px);
    }

@media (max-width: 1099px) {
    
    .numbers {
        padding-top: 20px;
    }
    
    .numbers__right,
    .numbers__impact {
        display: none;
    }
    

    
    .numbers__line {
        width: 80%;
        max-width: 180px;
        height: 5px;
    }
    
    .numbers__line-solid {
        width: 60%;
        height: 5px;
    }
    
    
    .numbers__title {
        font-size: 36px;
    }
    
    .numbers__description {
        font-size: 14px;
    }
    
    .numbers__image-block {
width: 40%;
height: 40%;
}
.numbers__image {
width: 30%;
}

.numbers {
min-height: unset;
padding-top: 20px;
}

.numbers__content {
min-width: unset;
padding: clamp(30px, 4vw, 60px) clamp(30px, 6vw, 130px) 0 0;
}
.numbers__grid {
gap: unset;
max-width: unset;
width: 100vw;
}
.numbers__stat {
align-items: center;
border: 1px solid rgba(28, 28, 28, 0.7);
padding: 30px;
justify-content: space-between;
}
.numbers__stat-desc {
width: unset;
}
.numbers__image-block {

padding: clamp(20px, 9%, 15%) clamp(10px, 1%, 20px);
}

.numbers__content {
width: 40%;
}

.numbers__grid {
margin-top: 15%;
transform: translateX(clamp(30px, 6vw, 130px));
}

    
    .numbers__stat-desc {

        font-size: 12px;
    }
    
    .numbers__stat-number {
        font-size: 42px;
    }
}
@media (max-width: 500px) {
    .numbers__image {
width: 90%;
}
}




/* =============================
   PROJECTS Section 
   ============================= */

        .projects {
            display: flex;
            width: 100%;
            min-height: 100vh;
            background-color: rgb(237,237,237);
overflow: hidden;
        }

        .projects__left {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: clamp(40px, 5vw, 90px) 0;
            min-width: 0;
        }
        .projects__intro {
            display: flex;
            flex-direction: column;
            gap: clamp(20px, 2vw, 40px);
margin-bottom: clamp(30px, 5vw, 80px);
            align-items: flex-end;
            padding: 0 clamp(30px, 6vw, 130px);
            text-align: end;
            
        }

        .projects__button {
    width: 160px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border: none;
    color: #282828;
}

.projects__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 2px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


        .projects__title {
            width: min(764px, 100%);
            font-size: clamp(32px, 3.5vw, 58px);
            line-height: 1.2;
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
            text-align: right;
        }

        .projects__description {
            opacity: 0.8;
            width: min(738px, 100%);
            font-size: clamp(14px, 1.1vw, 18px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            line-height: 1.5;
            text-align: right;
            direction: rtl;
        }

        .projects__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            width: 100%;

        }
.projects__grid a{
    text-decoration: none;
}
        .projects__card {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            position: relative;
            width: 88%;
aspect-ratio: 3/5;
padding: 20px;
            border: 1px solid #ededed;
            overflow: hidden;
            text-align: end;
            transition: 0.3s;
        }

        .projects__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .projects__card-image {
            position: absolute;
            width: 250%;
            height: 120%;
            top: 0;
            left: -70%;
            object-fit: cover;
            z-index: 1;
    filter: grayscale(100%);
        }
        .projects__card-bgimage{
            position: relative;
z-index: 2;
margin: 0 auto 100px;
width: 100%;
height: 20%;
opacity: 0.4;
        }
        .projects__card-overlay {
            background-color: #282828;
            opacity: 0.85;
            position: absolute;
            width: 250%;
            height: 120%;
            top: 0;
            left: -70%;
            z-index: 2;
        }

        .projects__card-title {
            position: relative;
            width: 100%;
            font-size: clamp(20px, 2vw, 30px);
            line-height: 1.2;
            text-transform: uppercase;
            color: #ffffff;
            font-weight: bold;
            font-family: inherit;
            z-index: 3;
            margin-bottom: 5px;
            text-align: right;
            height: unset;
        }

        .projects__card-subtitle {
            position: relative;
            width: 100%;
            font-size: clamp(16px, 1.5vw, 23px);
            line-height: 1.2;
            text-transform: uppercase;
            color: #ededed;
            font-family: inherit;
            z-index: 3;
            margin-bottom: 90px;
            text-align: right;
        }

        .projects__card-link {
            position: relative;
            width: 100%;
            font-size: clamp(16px, 1.5vw, 23px);
            line-height: 1.2;
            text-transform: uppercase;
            color: #ededed;
            font-family: inherit;
            z-index: 3;
            text-align: right;
            cursor: pointer;
            transition: 0.3s;
        }

        .projects__card-link:hover {
            opacity: 0.8;
            transform: translateX(-5px);
        }

        .projects__right {
            width: 191px;
            flex-shrink: 0;
            border-left: 1px solid rgba(40, 40, 40, 0.18);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: clamp(30px, 4vw, 60px);
        }

        .projects__number {
            opacity: 0.451;
            font-size: clamp(24px, 1.8vw, 31px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            white-space: nowrap;
        }

        .projects__border {
            height: clamp(100px, 10vw, 150px);
            border-radius: 20px;
            background-color: #282828;
            width: 6px;
            align-self: baseline;
            transform: translateX(-3px);
        }

        @media (max-width: 1600px) {
            .projects__intro {
                padding-left: 60px;
                padding-right: 60px;
            }
            .projects__card-bgimage {
  margin: 0 auto 50px;

}
           .projects__card {

            width: 91%;

padding: 10px;

        }
        .projects__card-title{
            height: 80px;
        }
        }

        @media (max-width: 1400px) {
.projects__card {
 
            width: 93%;
aspect-ratio: 2/4;
padding: 10px;

        }
            
            .projects__intro {
                padding-left: 40px;
                padding-right: 40px;
            }

        }


        @media (max-width: 1100px) {
            .projects__card-bgimage{
                position: absolute;
width: 80%;
left: -40%;
margin: 0;
height: unset;
            }
            .projects__grid {
                display: flex;
                flex-direction: column-reverse;
            }
            
            .projects__card {
                aspect-ratio: 2/1;
                width: unset;
            }
            
            .projects__card-image,
            .projects__card-overlay {
                width: 200%;
                left: -50%;
            }
            .projects__right {
                display: none;
            }
            .projects__card-title{
                height: unset;
            }
      
            .projects {
                flex-direction: column;
            }
            
            
            
            .projects__border {
                height: 6px;
                width: 100px;
                align-self: center;
                transform: none;
            }
            
            .projects__intro {
                padding: 0 20px;
            }
            
            .projects__card {
                padding: 30px 20px;
            }
            .projects__card-subtitle {
margin-bottom: 50px;
}
        }



/* =============================
   TEAM Section 
   ============================= */
.team__leader-split {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse;
}

.team__leader-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#leaderImageSecond{
    height: 130%;
  width: 90%;
  bottom: -1%;
  left: 5%;
}

        .team {
            display: flex;
            width: 100%;
            min-height: 100vh;
            background-color: rgb(237,237,237);
overflow: hidden;
        }

        .team__left {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: clamp(40px, 5vw, 90px) 0;
            min-width: 0;
        }

        .team__right {
            width: 191px;
            flex-shrink: 0;
            border-left: 1px solid rgba(40, 40, 40, 0.18);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: clamp(30px, 4vw, 60px);
        }

        .team__block-number {
            opacity: 0.451;
            font-size: clamp(24px, 1.8vw, 31px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            white-space: nowrap;
        }

        .team__border-decoration {
            height: clamp(100px, 10vw, 150px);
            border-radius: 20px;
            background-color: #282828;
            width: 6px;
            align-self: baseline;
            transform: translateX(-3px);
        }

        .team__intro {
            display: flex;
            justify-content: flex-end;
            gap: clamp(30px, 5vw, 100px);
            border-bottom: 1px solid rgba(40, 40, 40, 0.18);
            padding: 0 clamp(30px, 6vw, 130px) clamp(20px, 3vw, 40px) 0;
            flex-wrap: wrap;
        }

        .team__subtitle {
            width: min(490px, 90vw);
            opacity: 0.8;
            font-size: clamp(14px, 1.2vw, 18px);
            color: #282828;
            font-family: inherit;
            text-align: right;
            direction: rtl;
        }

        .team__title {
            width: min(230px, 100%);
            font-size: clamp(36px, 3.5vw, 58px);
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
            text-align: right;
            line-height: 1;
            transform: translateY(-10px);
        }

        .team__button {
    width: 160px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.3s;
    position: relative;
    background: transparent;
    border: none;
    color: #282828;
}

.team__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 2px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.team__preview {
    display: flex;
    align-items: center;
    padding: clamp(40px, 6vw, 130px) 0 0 clamp(30px, 5vw, 114px);
justify-content: space-around;
    flex-wrap: nowrap;
    
}

.team__preview-icon {
    flex-shrink: 0;
transform: scale(-1, 1);

}

.team__icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 2vw, 30px);
    width: fit-content;
}

.team__grid-icon {
    width: clamp(120px, 12vw, 237px);
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    background: #ddd;
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.team__leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0.8;
    min-width: 0;
}

.team__leader-image-wrap {
    position: relative;
    width: min(clamp(200px, 18vw, 320px), 100%);
    aspect-ratio: 126 / 140;
    max-width: 100%;
}

.team__leader-hexagon {
    position: absolute;
    inset: 0;
    background: #c8c8c8;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.team__leader-image {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    clip-path: polygon(0% 0%, 100% 0%, 117% 75%, 50% 100%, 0% 81%);
}

.team__leader-name {
    width: min(clamp(280px, 24vw, 450px), 100%);
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    color: #282828;
    font-weight: bold;
    font-family: inherit;
    text-align: center;
    margin: clamp(10px, 1.5vw, 15px) 0 clamp(5px, 0.8vw, 8px);
}

.team__leader-position {
    opacity: 0.8;
    width: min(clamp(240px, 22vw, 400px), 100%);
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.4;
    text-transform: uppercase;
    color: #282828;
    font-family: inherit;
    text-align: center;
    margin-bottom: clamp(8px, 4vw, 50px);
}

.team__leader-description {
    opacity: 0.89;
    width: min(clamp(240px, 22vw, 400px), 100%);
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.5;
    color: #282828;
    font-family: inherit;
    text-align: center;
    direction: rtl;
}

.team__grid-icon {
    filter: grayscale(100%); 
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.2s ease, opacity 0.5s ease;
    object-position: top;
}

.team__grid-icon.active {
    filter: grayscale(0%);
    transform: scale(-1, 1);
}

.team__grid-item {
    position: relative;
    cursor: pointer;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.team__grid-special{
    text-align: center;
    transform: scale(-1, 1);
    color: white;
    font-size: 1.5rem;
    background: #282828;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 12vw, 237px);
    aspect-ratio: 1/1;
}
.team__grid-special div{
    transform: scale(-1,1);
}
.team__grid-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #282828;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.3s ease;
    opacity: 0;
}

.team__grid-hover div {
    text-align: center;
    transform: scale(-1, 1);
    color: white;
    font-size: 1.5rem;
}


@media (max-width: 1600px) {
    .team__icon-grid {
    gap: clamp(8px, 1vw, 30px);
}
}
@media (max-width: 1099px) {
    .team__right {
        display: none;
    }
    
    .team__preview {
        flex-direction: column;
        padding: 80px 15px 30px;
        gap: 40px;
        width: 95%;
    }
    
    .team__intro {
        padding: 0 20px 20px 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-end;
        width: 90%;
    }
    
    .team__subtitle {
        width: 100%;
        font-size: 14px;
        order: 3;
    }
    
    .team__title {
        width: 100%;
        font-size: 36px;
        order: 2; 
    }
    
    .team__button {
        order: 1; 
        margin-bottom: 10px;
    }
    
    .team__leader-card {
        width: 100%;
        margin: 20px 0;
        order: 1;
    }
    
    .team__leader-image {
        width: 100%;
    }

    .team__leader-image-wrap {
        width: 280px;
    }
    
    .team__leader-name {
        font-size: 32px;
        width: 100%;
    }
    
    .team__leader-position {
        font-size: 18px;
        width: 100%;
    }
    
    .team__leader-description {
        font-size: 13px;
        width: 100%;
        max-width: 400px;
    }
    
   
    .team__preview-icon {
        width: 100%;
        transform: none; 
        order: 2;
    }
    
    .team__icon-grid {
        gap: 10px;
        width: 98%;
        transform: scale(-1,1);
    }
    
    .team__grid-icon {
        width: 100%;
        aspect-ratio: 1/1;
    }
    
    .team__grid-icon.active {
        transform: scale(1.05);
    }
    
    .team__grid-special {
        width: 100%;
        aspect-ratio: 1/1;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .team__intro {
        padding: 0 15px 15px 15px;
    }
    
    .team__title {
        font-size: 32px;
    }
    
    .team__subtitle {
        font-size: 13px;
    }
    
    .team__button {
        width: 140px;
        height: 40px;
        font-size: 14px;
    }
    
    .team__preview {
       padding: 80px 15px 30px;
        gap: 30px;
    }
    
    .team__leader-image {
        width: 100%;
    }

    .team__leader-image-wrap {
        width: 220px;
    }
    
    .team__leader-name {
        font-size: 28px;
    }
    
    .team__leader-position {
        font-size: 16px;
    }
    
    .team__leader-description {
        font-size: 12px;
    }
    
    .team__icon-grid {
        gap: 8px;
    }
}
/* =============================
   MAP Section 
   ============================= */

      .map {
        display: flex;
        width: 100%;
        min-height: 100vh;
        background-color: rgb(61,61,61);
        color: #fff;
overflow: hidden;
position: relative;

      }
      .map__bgimage{
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 5;
        opacity: 0.4;
      }
      .map__container {
        display: flex;
        flex: 1;
        flex-wrap: nowrap;
      }

      .map__details {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
      }

.map__card {
        width: 90%; 
    max-width: 485px; 
    margin-top: clamp(40px, 6vw, 98px) ;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: flex;
    flex-direction: column;
    text-align: end;
    align-items: flex-end;
    background: linear-gradient(
      0deg,
      rgba(59, 59, 59, 1) 70%,
      rgba(78, 78, 78, 1) 100%
    );
    position: relative;
    min-height: 50vh;
    max-height: 70vh;
}

.map__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 20px;
    background-color: #fff;
}

.map__card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 20px;
    background-color: #fff;
}

.corner-bottom-left {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 20px;
    background-color: #fff;
}

.corner-bottom-right {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 20px;
    background-color: #fff;
}
      .map__card-header {
        display: flex;
        width: 100%;
        padding: clamp(20px, 4vw, 44px) clamp(20px, 4vw, 60px);
        gap: clamp(15px, 2vw, 33px);
        align-items: center;
        justify-content: flex-end;
      }

      .map__card-title {
        width: 60%;
        font-size: clamp(24px, 2.5vw, 38px);
        line-height: 1.2;
        text-transform: uppercase;
        color: #ffffff;
        font-family: inherit;
      }

      .map__card-icon {
        width: clamp(50px, 5vw, 77px);
        height: auto;
        aspect-ratio: 77/87;
      }

      .map__card-body {
       margin: 0 0 clamp(30px, 4vw, 50px) 0;
padding-right: clamp(20px, 4vw, 66px);
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    overflow-y: auto;
        scrollbar-width: thin;
    scrollbar-color: rgb(151, 151, 151) rgb(77, 76, 76);
    direction: rtl;
      }
.map__card-body::-webkit-scrollbar {
    width: 10px;
    display: block;
}

.map__card-body::-webkit-scrollbar-track {
    background: rgb(77, 76, 76);
    border-radius: 10px;
}

.map__card-body::-webkit-scrollbar-thumb {
    background: rgb(151, 151, 151);
    border-radius: 10px;
}


.map__card-body:hover::-webkit-scrollbar-thumb {
    background: rgb(151, 151, 151);
}

.map__card-body::-webkit-scrollbar-thumb:hover {
    background: rgb(151, 151, 151);
}

.map__card-body::-webkit-scrollbar-thumb:active {
    background: rgb(151, 151, 151);
}
      .map__card-stats {
        width: 100%;
      }

      .map__stat {
        display: flex;
        align-items: baseline;
        justify-content: flex-end;
        text-align: end;
        gap: clamp(5px, 1vw, 10px);
        margin-bottom: clamp(15px, 2vw, 30px);
        flex-wrap: wrap;
        direction: ltr;
      }

      .map__stat-number {
        font-size: clamp(24px, 2.5vw, 33px);
        text-transform: uppercase;
        color: #ffffff;
        font-weight: bold;
        font-family: inherit;
      }

      .map__stat-label {
        opacity: 0.4;
        font-size: clamp(14px, 1.5vw, 20px);
        line-height: 1.5;
        text-transform: uppercase;
        color: #ffffff;
        font-family: inherit;
      }

      .map__card-accessibility {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        text-align: end;
        width: 100%;
        direction: ltr;
      }

      .map__accessibility-title {
        font-size: clamp(18px, 2vw, 28px);
        text-transform: uppercase;
        color: #ffffff;
        font-weight: bold;
        font-family: inherit;
        margin-bottom: clamp(15px, 2vw, 30px);
      }

      .map__accessibility-text {
        opacity: 0.4;
        font-size: clamp(12px, 1.3vw, 20px);
        line-height: 1.5;
        text-transform: uppercase;
        color: #ffffff;
        font-family: inherit;
        width: 80%;
        direction: rtl;
        text-align: right;
      }

      .map__card--link {
        font-size: clamp(18px, 1.8vw, 24px);
        text-transform: uppercase;
        color: #ffffff;
        font-family: inherit;
        margin-top: clamp(30px, 4vw, 50px);
        cursor: pointer;
        transition: 0.3s;
        align-self: flex-start;
        direction: ltr;
        text-decoration: none;
      }

      .map__card--link:hover {
        opacity: 0.8;
        transform: translateX(-5px);
      }

      .map__interactive {
    width: auto; 
    min-width: 250px; 
    max-width: 650px;
    position: relative;
    min-height: 400px;
    background-color: #4a4a4a;
    overflow-y: auto;
direction: rtl;
flex: 0.9;
max-height: 100vh;
scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.map__interactive::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}
.map__image-wrapper {
    position: relative;
    width: 100%;
    display: block;
}
      .map__image {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        left: 0;
        display: block;
      }

      .map__dot {
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #fff;
        cursor: pointer;
        transition: 0.3s;
        z-index: 2;
      }

     .map__dot--active {
    background-color: #fff;
    box-shadow: 
        0 0 0 32px rgba(255, 255, 255, 0.1);

}

      .map__text-block {
    padding: clamp(40px, 6vw, 98px) clamp(30px, 6vw, 130px) 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
    flex: 0.5; 
    min-width: 250px;
      }

      .map__button {
    color: #fff;
    width: 166px;
    height: 45px;
    border-radius: 5px;
    font-family: inherit;
    font-size: clamp(14px, 1.2vw, 16px);
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: clamp(20px, 3vw, 45px);
    text-transform: uppercase;
    position: relative;
    background: rgba(255,255,255,0.12);
    border: none;
    backdrop-filter: blur(5px);
}
.map__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 1px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


      .map__title {
        width: min(254px, 100%);
        font-size: clamp(36px, 4vw, 58px);
        margin-bottom: clamp(30px, 3vw, 85px);
        text-transform: uppercase;
        color: #ffffff;
        font-weight: bold;
        font-family: inherit;
        line-height: 1;
      }

      .map__description {
        opacity: 0.8;
        width: min(222px, 100%);
        font-size: clamp(14px, 1.3vw, 18px);
        text-transform: uppercase;
        color: #f3f3f3;
        font-family: inherit;
        line-height: 1.5;
        direction: rtl;
        text-align: right;
      }

      .map__right {
        width: 191px;
        flex-shrink: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: clamp(30px, 4vw, 60px);
      }

      .map__number {
        opacity: 0.451;
        font-size: clamp(24px, 1.8vw, 31px);
        text-transform: uppercase;
        color: #f3f3f3;
        font-family: inherit;
        white-space: nowrap;
      }

      .map__line {
        height: clamp(100px, 10vw, 150px);
        border-radius: 20px;
        background-color: #f3f3f3;
        width: 6px;
        align-self: baseline;
        transform: translateX(-3px);
      }

@media (max-width: 1099px) {
.map__bgimage{
    display: none;
}
.map__image {

width: 135%;
left: 20%;
}
    .map__right {
        display: none;
    }
    
    .map__container {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .map__interactive {
        position: absolute;
        left: 0;
        top: 0;
        width: 40%;
        height: 100%;
        min-height: 100vh;
        max-width: none;
        flex: none;
    }

    .map__text-block {
        position: relative;
        width: 60%;
        margin-left: 40%;
        padding: 80px 0;
        min-width: 170px;


    }
    
    .map__button {
        width: 140px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .map__title {
        font-size: 32px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .map__description {
        font-size: 14px;
        width: 100%;
        margin-bottom: 25px;
    }

    .map__details {
        position: relative;
        width: 62%;
        z-index: 10;
        order: 1;
    }
    
    .map__card {
        max-width: 80%;
margin: 0 0 40px 20px;
min-height: unset;
max-height: 40vh;
    }
    
    .map__card-header {
        padding: 25px 20px;
    }
    
    .map__card-title {
        font-size: 22px;
    }
    
    .map__card-icon {
        width: 50px;
    }
    
    .map__card-body {
        padding-right: 0;
        margin: 0 20px 30px 20px;
    }
    
    .map__stat-number {
        font-size: 24px;
    }
    
    .map__stat-label {
        font-size: 14px;
    }
    
    .map__accessibility-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .map__accessibility-text {
        font-size: 13px;
    }
    
    .map__card--link {
        font-size: 18px;
        margin-top: 25px;
    }
    
    .map__dot--active {
        box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 1100px) {
    .map__interactive {
        width: 35%;
    }
    
    
    .map__details {
        width: 62%;
        margin-left: 40%;
    }
    .map__text-block{
width: 40%;
        margin-left: 50%;
    }
    
    .map__title {
        font-size: 28px;
    }
    
    .map__card-header {
        padding: 20px 15px;
    }
    
    .map__card-title {
        font-size: 20px;
    }
    
    .map__card-icon {
        width: 40px;
    }
    
    .map__card-body {
        margin: 0 15px 25px 15px;
    }
    
    .map__stat-number {
        font-size: 22px;
    }
    
    .map__stat-label {
        font-size: 12px;
    }
    
    .map__accessibility-title {
        font-size: 16px;
    }
    
    .map__accessibility-text {
        font-size: 12px;
    }
    
    .map__card--link {
        font-size: 16px;
    }
    
    .map__dot--active {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}



/* =============================
   INVESTORS Section 
   ============================= */

        .six {
            display: flex;
            background-color: rgb(237,237,237);
            min-height: 100vh;
overflow: hidden;
        }

        .six__content {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .six__right {
            width: 191px;
            flex-shrink: 0;
            border-left: 1px solid rgba(40, 40, 40, 0.18);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: clamp(30px, 4vw, 60px);
        }

        .six__block-number {
            opacity: 0.451;
            font-size: clamp(24px, 1.8vw, 31px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            white-space: nowrap;
        }

        .six__border-decoration {
            height: clamp(100px, 10vw, 150px);
            border-radius: 20px;
            background-color: #282828;
            width: 6px;
            align-self: baseline;
            transform: translateX(-3px);
        }

        .six__intro {
            display: flex;
            padding: clamp(80px, 8vw, 150px) clamp(30px, 6vw, 130px) 0 clamp(40px, 6vw, 120px);
            gap: clamp(30px, 4vw, 50px);
        }

        .six__intro-image {
            width: min(992px, 100%);
            height: auto;
            aspect-ratio: 992/331; 
            border-radius: 10px;
            background-color: #020202;
            object-fit: cover;
        }

        .six__intro-text {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: end;
            flex: 1 1 400px;
        }

        .six__button {
    width: 166px;
    height: 45px;
    border-radius: 5px;
    margin-bottom: clamp(20px, 3vw, 50px);
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    position: relative;
    background: transparent;
    border: none;
    color: #282828;
}

.six__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 2px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


        .six__title {
            width: min(459px, 100%);
            font-size: clamp(36px, 3.5vw, 58px);
            line-height: 1;
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
            margin-bottom: 63px;
        }

        .six__description {
            opacity: 0.8;
            width: min(431px, 100%);
            font-size: clamp(14px, 1.2vw, 18px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            line-height: 1.5;
            direction: rtl;
            text-align: right;
        }

        
        .six__cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: clamp(15px, 2vw, 25px);
            margin: clamp(80px, 8vw, 150px) clamp(40px, 6vw, 120px) clamp(80px, 8vw, 150px) clamp(40px, 6vw, 120px);
        }

        
        .six__card {
            display: grid;
            grid-template-columns: 13% auto;
            width: 100%;
            border-radius: 10px;
            background-color: #ffffff;
            align-items: flex-end;
            text-align: end; 
            transition: transform 0.3s;
        }
        .six__card-empty{
            width: 100%;
            height: 100%;
            border-right: 1px solid rgba(40, 40, 40, 0.18);
            
        }
        .six__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .six__card-image {
            width: clamp(45px, 4vw, 63px);
            height: auto;
            aspect-ratio: 63/70;
            object-fit: contain;
            margin: 30px 30px 50px 0;
        }

        .six__card-title {
            margin: 0 30px 40px 0;
            font-size: clamp(22px, 2vw, 30px);
            line-height: 1.3;
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
        }

        .six__card-description {
            opacity: 0.8;
            margin: 40px 30px 0 50px;
            font-size: clamp(14px, 1.1vw, 18px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            line-height: 1.5;
            direction: rtl;
            text-align: right;
            min-height: 100px;
        }

        .six__card-link {
            margin: 27% 30px 50px 0;
display: block;
            font-size: clamp(18px, 1.5vw, 23px);
            line-height: 1.2;
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
            cursor: pointer;
            transition: 0.3s;
text-decoration: none;
        }

        .six__card-link:hover {
            opacity: 0.7;
            transform: translateX(-5px);
        }

@media (max-width: 1099px) {

    .six__right {
        display: none;
    }

    .six__content {
        width: 100%;
    }

    .six__intro {
        flex-direction: column;
        padding: 60px 20px 0 20px;
        gap: 30px;
    }

    .six__intro-image {
        width: 100%;
        aspect-ratio: 3/1;
height: unset;
    }

    .six__intro-text {
        align-items: flex-end;
        text-align: end;
        width: 100%;
        flex: none;
    }

    .six__button {
        width: 140px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .six__title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .six__description {
        font-size: 14px;
    }

    .six__cards-grid {
        gap: 15px;
        margin: 40px 70px;
        display: flex;
        flex-direction: column-reverse;
    }

    .six__card {
        width: unset;
        padding: unset;
        gap: unset;
    }

    .six__card-image {
        width: 50px;
        margin: 30px 30px 30px 0;
    }

    .six__card-title {
        font-size: 24px;
        margin: 0 30px 20px 0;
    }

    .six__card-description {
        font-size: 14px;
        margin: 20px 30px 0 30px;
    }

    .six__card-link {
        font-size: 18px;
        margin: 10% 30px 30px 0;
    }
    .six__card-link {
margin: 10% 30px 50px 0;
}
.contact-section__form > form:nth-child(4) {
align-items: unset;
}
}

@media (max-width: 600px) {
    .six__intro {
        padding: 50px 15px 0 15px;
        gap: 25px;
    }

    .six__title {
        font-size: 28px;
    }

    .six__description {
        font-size: 13px;
    }

    .six__card-title {
        font-size: 22px;
    }

    .six__card-description {
        font-size: 13px;
    }

    .six__card-link {
        font-size: 16px;
    }
}



/* =============================
   PRESS Section 
   ============================= */

        .seven {
            display: flex;
            background-color: rgb(237,237,237);
            min-height: 100vh;
overflow: hidden;
        }

        .seven__left {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .seven__right {
            width: 191px;
            flex-shrink: 0;
            border-left: 1px solid rgba(40, 40, 40, 0.18);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: clamp(30px, 4vw, 60px);
        }

        .seven__block-number {
            opacity: 0.451;
            font-size: clamp(24px, 1.8vw, 31px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            white-space: nowrap;
        }

        .seven__border-decoration {
            height: clamp(100px, 10vw, 150px);
            border-radius: 20px;
            background-color: #282828;
            width: 6px;
            align-self: baseline;
            transform: translateX(-3px);
        }

        .seven__intro {
            display: flex;
            justify-content: flex-end;
            gap: clamp(30px, 5vw, 100px);
            border-bottom: 1px solid rgba(40, 40, 40, 0.18);
            padding: clamp(20px, 3vw, 40px) clamp(30px, 6vw, 130px) clamp(20px, 4vw, 100px) 0;
            flex-wrap: wrap;
        }

        .seven__subtitle {
            width: min(500px, 100%);
            opacity: 0.8;
            font-size: clamp(14px, 1.2vw, 18px);
            color: #282828;
            font-family: inherit;
            text-align: right;
            flex-shrink: 0;
            direction: rtl;
            text-align: right;
        }

        .seven__title {
            width: min(230px, 100%);
            font-size: clamp(36px, 3.5vw, 58px);
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
            text-align: right;
            line-height: 1;
            flex-shrink: 0;
            transform: translateY(-10px);
        }

       .seven__button {
    width: 160px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.3s;
    position: relative;
    background: transparent;
    border: none;
    color: #282828;
    display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}

.seven__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 2px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


        .seven__content {
            display: flex;
            gap: 20px;
            padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 30px);
        }

        .seven__news {
            display: flex;
            flex-direction: column;
            gap: clamp(8px, 1vw, 10px);
            width: 50%;
        }

        .seven__news-card {
            width: 100%;
            border-radius: 10px;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: end;
            gap: clamp(15px, 3vw, 50px);
            border: 2px solid rgba(34, 60, 80, 0.2);
            min-height: 23%;
            transition: 0.3s ease;
            text-decoration: none;
        }

        .seven__news-card.active,
.seven__news-card:hover {
    background-color: #282828;
    color: white;
cursor: pointer;
}

.seven__news-card.active .seven__card-excerpt,
.seven__news-card:hover .seven__card-excerpt,
.seven__news-card.active .seven__card-title a,
.seven__news-card:hover .seven__card-title a,
.seven__news-card.active .seven__card-title ,
.seven__news-card:hover .seven__card-title  {
    color: white;
}

.seven__news-card.active .seven__card-divider,
.seven__news-card:hover .seven__card-divider {
    background-color: white;
}


        .seven__card-icon {
            display: flex;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            align-self: flex-end;
            flex-shrink: 0;
        }

        .seven__icon {
            opacity: 0.2;
            transform: rotate(90deg);
            width: 100%;
            height: 100%;
        }

        .seven__card-excerpt {
            opacity: 0.8;
            width: min(343px, 100%);
            font-size: clamp(12px, 1vw, 16px);
            text-transform: uppercase;
            color: #282828;
            font-family: inherit;
            line-height: 1.5;
            flex: 2;
            direction: rtl;
            text-align: justify;
            align-self: flex-start;
  margin: 5% 0 3.5%;
        }

        .seven__card-title {
            width: 35%;
            font-size: clamp(20px, 2vw, 25px);
            text-transform: uppercase;
            color: #282828;
            font-weight: bold;
            font-family: inherit;
            text-align: right;
            align-self: flex-start;
            margin: 5% 0 3%;
        }
        .seven__card-title a{
            color: #282828;
            text-decoration: none;
        }

        .seven__card-divider {
            width: 5px;
            height: clamp(80px, 8vw, 146px);
            border-radius: 2px;
            background-color: #282828;
            flex-shrink: 0;
        }

        .seven__image-block {
            border-radius: 10px;
            background-color: #282828;
            overflow: hidden;
            aspect-ratio: 809/830; 
            width: 50%;
        }

        .seven__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: 0.5s;
        }

        @media (max-width: 1800px) {
            .seven__intro {
                padding-right: 60px;
                gap: 60px;
            }
            
            .seven__news-card {
                gap: 30px;
            }
            
            .seven__card-title {
                font-size: 28px;
            }
        }

        @media (max-width: 1500px) {
            .seven__intro {
                padding-right: 40px;
                gap: 40px;
            }
            
            .seven__content {
                padding: 20px;
            }
            
            .seven__news-card {
                padding: 30px 0px;
                gap: 20px;
            }
            
            .seven__card-title {
                font-size: 24px;
            }
            
            .seven__card-excerpt {
                font-size: 14px;
            }
            
            .seven__card-divider {
                height: 100px;
            }
        }

@media (max-width: 1099px) {
    .seven__right {
        display: none;
    }

    .seven__left {
        width: 100%;
    }
    

    .seven__intro {
        padding: 40px 20px 20px 20px;
        gap: 40px;
        flex-direction: column;
        align-items: flex-end;
    }

    .seven__subtitle {
        display: none;
    }
    
    .seven__title {
        width: 100%;
        font-size: 32px;
        text-align: right;
        order: 2;
    }
    
    .seven__button {
        width: 140px;
        height: 40px;
        font-size: 14px;
        order: 1;
    }

    .seven__content {
        flex-direction: column;
        gap: 20px;
        padding: 75px 15px 15px;
    }

    .seven__news {
        width: 90%;
        gap: 15px;
    }

    .seven__news-card {
        padding: 25px 20px;
        gap: 15px;
        min-height: unset;
    }
    
    .seven__card-icon {
        width: 35px;
        height: 35px;
        transform: none;
    }
    

    
    .seven__card-excerpt {
        width: 100%;
        font-size: 14px;
        text-align: right;
    }
    
    .seven__card-title {
        width: 35%;
        font-size: 22px;
        text-align: right;
    }
    
    .seven__card-divider {
        width: 6px;
        height: 135px;
        transform: translateX(10px);
        flex-shrink: 0;
    }

    .seven__image-block {
        display: none;
    }
}

@media (max-width: 600px) {
    .seven__intro {
        padding: 30px 15px 15px 15px;
    }
    
    .seven__title {
        font-size: 28px;
    }
    
    .seven__content {
        gap: 15px;
    }
    
    .seven__news-card {
        padding: 20px 15px;
        gap: 10px;
    }
    
    .seven__card-icon {
        width: 30px;
        height: 30px;
    }
    
    .seven__card-excerpt {
        font-size: 12px;
    }
    
    .seven__card-title {
        font-size: 18px;
    }
}






 
/* =============================
   CONTACT Section 
   ============================= */
        .contact-section {
            display: flex;
            width: 100%;
            background-color: rgb(35,35,35);
            color: #fff;
overflow: hidden;
        }
        .contact-section__form > form:nth-child(4) {
  display: flex;
  flex-direction: column;
  width: 66%;
  align-items: end;
}

        .contact-section__contact {
            position: relative;
            display: flex;
            flex-direction: column;
            text-align: end;
            align-items: center;
            overflow: hidden;
            border-right: 1px solid rgba(243, 243, 243, 0.322);
            border-bottom: 1px solid rgba(243, 243, 243, 0.322);
            padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 69px);
            width: 460px; 
            flex-shrink: 0;
        }

        .contact-section__logo {
            max-width: 140px;
align-self: end;
margin-right: 12%;
            position: relative;
            margin-bottom: clamp(30px, 4vw, 60px);
        }

        .contact-section__contact-item {
            position: relative;
            width: min(279px, 100%);
            text-align: right;
            margin-bottom: clamp(30px, 4vw, 74px);
            display: flex;
  flex-direction: column;
        }

        .contact-section__contact-title {
            font-size: clamp(18px, 1.5vw, 24px);
            text-transform: uppercase;
            color: #f3f3f3;
            font-family: inherit;
            opacity: 0.322;
            margin-bottom: clamp(15px, 2vw, 25px);
            align-self: end;
        }

        .contact-section__contact-text {
            font-size: clamp(14px, 1.2vw, 18px);
            color: #f3f3f3;
            font-family: inherit;
            line-height: 1.5;
            align-self: end;
        }

        .contact-section__socials {
            display: flex;
            gap: 5px;
            width: min(279px, 100%);

justify-content: end;
            margin-bottom: clamp(30px, 5vw, 70px);
        }

        .contact-section__social-icon {
            width: clamp(30px, 3vw, 40px);
            height: clamp(30px, 3vw, 40px);
        }

        .contact-section__img {
            width: 287px; 
            flex-shrink: 0;
            border-right: 1px solid rgba(243, 243, 243, 0.322);
            border-bottom: 1px solid rgba(243, 243, 243, 0.322);
            overflow: hidden;
            position: relative;
            min-height: 200px;
        }

        .contact-section__background {
            opacity: 0.3;
            position: absolute;
            height: 100%;
        }

        .contact-section__form {
            flex: 1;
            min-width: 500px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: end;
            border-right: 1px solid rgba(243, 243, 243, 0.322);
            border-bottom: 1px solid rgba(243, 243, 243, 0.322);
            padding: clamp(30px, 4vw, 60px) clamp(30px, 6vw, 130px) clamp(40px, 6vw, 90px) clamp(20px, 3vw, 40px);
        }

        .contact-section__form-button {
    margin-top: clamp(20px, 4vw, 90px);
    margin-bottom: clamp(30px, 4vw, 70px);
    width: clamp(140px, 12vw, 166px);
    height: 45px;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    font-size: clamp(14px, 1.2vw, 16px);
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    position: relative;
    background: rgba(255,255,255,0.12);
    border: none;
    backdrop-filter: blur(5px);
}

.contact-section__form-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 1px;
    background: linear-gradient(180deg, #ffffff 0%, rgb(139,139,139) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


        .contact-section__form-title {
            width: min(441px, 50%);
            font-size: clamp(32px, 3.5vw, 58px);
            line-height: 1;
            text-transform: uppercase;
            color: #ffffff;
            font-weight: bold;
            font-family: inherit;
            margin-bottom: clamp(20px, 3vw, 40px);
        }

        .contact-section__form-description {
            opacity: 0.8;
            width: min(508px, 100%);
            font-size: clamp(14px, 1.2vw, 18px);
            text-transform: uppercase;
            color: #f3f3f3;
            font-family: inherit;
            line-height: 1.5;
            margin-bottom: clamp(40px, 6vw, 100px);
            direction: rtl;
text-align: right;
        }

        .contact-section__form-input {
            font-size: clamp(14px, 1.2vw, 18px);
            height: 40px;
            width:100%;
            border: none;
            background-color: rgb(35,35,35);
            text-align: end;
            border-bottom: 1px solid rgba(243, 243, 243, 0.322);
            color: #f3f3f3;
            margin-bottom: clamp(30px, 4vw, 50px);
            padding: 0 10px;
            font-family: 'Simpler Pro HL AR', 'Noto Sans Hebrew', sans-serif;
        }

        .contact-section__form-input::placeholder {
            color: rgba(243, 243, 243, 0.5);
        }

        .contact-section__form-button--submit {
            width: clamp(140px, 10vw, 161px);
            height: 51px;
            border-radius: 10px;
            background-color: #ffffff;
            border: none;
            align-self: flex-start;
            font-weight: 800;
            font-size: clamp(14px, 1.2vw, 18px);
            cursor: pointer;
            transition: 0.3s;
            margin-top: 20px;
            transform: translateX(-20px);
            font-family: 'Simpler Pro HL AR', 'Noto Sans Hebrew', sans-serif;

        }

        .contact-section__form-button--submit:hover {
            background-color: #e0e0e0;
        }

        .contact-section__right {
            width: 191px;
            flex-shrink: 0;
            border-left: 1px solid rgba(255, 255, 255, 0.18);
            border-bottom: 1px solid rgba(243, 243, 243, 0.322);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: clamp(30px, 4vw, 60px);
        }

        .contact-section__number {
            opacity: 0.451;
            font-size: clamp(24px, 1.8vw, 31px);
            text-transform: uppercase;
            color: #f3f3f3;
            font-family: inherit;
            white-space: nowrap;
        }

        .contact-section__line {
            height: clamp(100px, 10vw, 150px);
            border-radius: 20px;
            background-color: #f3f3f3;
            width: 6px;
            align-self: baseline;
            transform: translateX(-3px);
        }

.contact-section__form-input:focus {
    outline: none;
    border-bottom-color: #ffffff;
    background-color: #282828;
    color: #fff;
}

.contact-section__form-input:focus-visible {
    outline: none;
}

.contact-section__form-input:valid {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.contact-section__form-input:invalid:not(:placeholder-shown) {
    border-bottom-color: rgba(255, 100, 100, 0.7);
}

.contact-section__form-input:-webkit-autofill,
.contact-section__form-input:-webkit-autofill:hover,
.contact-section__form-input:-webkit-autofill:focus,
.contact-section__form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #282828 inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

        @media (max-width: 1600px) {
            .contact-section__contact {
                width: 356px;
            }
            
            .contact-section__img {
                width: 221px; 
            }
        }

        @media (max-width: 1400px) {
            .contact-section__contact {
                width: 380px;
            }
            
            .contact-section__img {
                width: 190px;
            }
            
            .contact-section__form {
                padding-right: 60px;
            }
        }

@media (max-width: 1099px) {
    .contact-section__form > form:nth-child(4) {
  display: flex;
  flex-direction: column;
  width: 75%;
  align-items: unset;
}
    .contact-section__right {
        display: none;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-section__contact {
        width: 95%;
        border-right: none;
        order: 2;
        padding: 50px 30px;
    }

    .contact-section__img {
        display: none;
    }

    .contact-section__form {
        width: 95%;
        min-width: auto;
        order: 1;
        padding: 40px 10px;
margin-right: 20px;
        align-items: center;
        border-right: none;
    }
    .contact-section__form-button{
        margin-right: 30px;
align-self: end;
    }
    .contact-section__form-description {
        margin-bottom: 40px;
        margin-left: 20px;
        width: min(508px, 80%);
    }
    .contact-section__form-title {
       margin-left: 20px;
       width: min(436px, 80%);
    }

    .contact-section__form-input {
        width: 100%;
    }

    .contact-section__form-button--submit {
        align-self: unset;
        transform: translateX(0);
    }
    

    .contact-section__socials {
        align-self: center;
        margin-right: 0;
        justify-content: center;
    }

    .contact-section__contact-item {
        width:60%;
        text-align: center;
    }
    .contact-section__contact-title {
        text-align: center;
        align-self: center;
    }
    .contact-section__contact-text {
        text-align: center;
        align-self: center;
    }
    .contact-section__logo {
        align-self: center;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .contact-section__contact {
        padding: 40px 20px;
    }
    
    
    
    .contact-section__form-description {
        font-size: 14px;
    }
    
    .contact-section__form-input {
        font-size: 14px;
    }
    
    .contact-section__contact-title {
        font-size: 20px;
    }
    
    .contact-section__contact-text {
        font-size: 14px;
    }
    
    .contact-section__social-icon {
        width: 35px;
        height: 35px;
    }
}
        