.logo {
    width: 160px;
    height: 83px;
    flex-shrink: 0;
    object-fit: contain;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 99;
    width: 100%;
}

.header .container{
    width: 100%;
    margin: 0;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.burgerButton{
    display: none;

    position: fixed;
    top: 30px;
    right: 15px;
    z-index: 100;

    width: 40px;
    height: 29px;
}

.burgerButton-line{
    height: 3px;
    border-radius: 2px;
    background-color: #B380FF;
    transition: all .2s;
    position: relative;
}

.burgerButton-line:nth-child(1){
    width: 100%;
}

.burgerButton-line:nth-child(2){
    width: 90%;
}

.burgerButton-line:nth-child(3){
    width: 70%;
}

.active .burgerButton-line:nth-child(1){
    transform: rotate(45deg);
    bottom: -13px;
}

.active .burgerButton-line:nth-child(2){
    opacity: 0;
}

.header__list.active{
    transform: translateY(0);
    opacity: 1;
}

.active .burgerButton-line:nth-child(3){
    width: 100%;
    transform: rotate(-45deg);
    top: -13px;
}

.header__list{
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all .2s;
    margin-left: auto;
}

.header__list-link{
    font-size: 1em;
    transition: .2s;
}

.header__list-link:hover{
    color: #fff;
}



.title {
    font-weight: 600;
    padding: 15px 0 30px 0;
    line-height: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(125deg, #B380FF 8%, #7AF0FF 43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-main {
    font-size: 6em;
    line-height: 1.1em;
}

.title-sub {
    font-size: 2.5em;
    line-height: 1.2em;
}

.secondTitle {
    font-size: 1.50em;
    line-height: 1.25em;
    padding-bottom: 10px;
    font-weight: 500;
}

.subTitle {
    font-size: 1.25em;
    font-weight: 300;
}

.secondSubTitle {
    font-size: 1.50em;
    font-weight: 300;
    margin-bottom: 36px;
}

.text {
    font-size: 1.15em;
    font-weight: 300;
    color: #e0d6de;
}

.greeting {
    width: 100vw;
    min-width: 100vw;
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    position: relative;
    padding-top: 220px;
}

.greeting__background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.greeting__container {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
}

.greeting__content {
    width: 90%;
    flex-shrink: 0;
    max-width: none;
    align-items: flex-start;
    padding: 0 60px 0 80px;
    gap: 32px;
}

.greeting__content h2.title {
    font-size: 2.5em !important;
    text-align: left !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.greeting__content .subTitle {
    text-align: left !important;
}

.greeting__content h1,
.greeting__content p,
.greeting__content a {
    width: 100%;
    text-align: left;
}

.greeting__content a.buttonGradient {
    margin-top: 8px;
    display: inline-block;
    min-width: 160px;
}

.mag {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 435px;
    width: 100%;
}

.about {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1190px;
    width: 100%;
    padding: 0 15px;
    margin: 20px auto 0 auto;
}

.brain {
    max-width: 290px;
    width: 100%;
    height: 711px;
    object-fit: cover;
}

.about__content {
    padding: 45px 63px;
}

.about__content-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.rowElement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 220px;
    width: 100%;
    min-height: 320px;
    background: #181c2f;
    border-radius: 12px;
    padding: 20px 18px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.colorable-icon {
    align-self: flex-start;
    margin-bottom: 15px;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease-in-out;
}

/* Hover effect for each block */
.rowElement:hover {
    transform: scale(1.05);
    background: #0a1a3c;
    transition: all 0.3s ease-in-out;
}

.whyUs{
    background-color: #120336;
    margin-top: 20px;
    padding: 20px 0;
}

.whyUs .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

.whyUs-title {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 32px auto;
    padding: 0;
    display: block;
}

.whyUs__content {
    padding: 50px 63px;
}

.whyUs__content-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.whyUs__content-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 20px;
}

.whyUs__image {
    flex: 0.7;
    position: sticky;
    top: 100px;
    margin-left: auto;
    padding-left: 40px;
}

.whyUs__image img {
    width: 100%;
    max-width: 390px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.whyUs__content-box{
    display: flex;
    align-items: center;
    gap: 30px;
}

.number{
    background-image: url(../images/flag.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 90px;
    height: 108px;
    font-size: 1.7em;
    font-weight: 600;
    color: #120336;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whyUs-img{
    width: 290px;
    height: 655px;
    object-fit: cover;
}


.stratigic .container{
    max-width: 1160px;
    width: 100%;
    padding: 70px 63px;
    margin: 0px auto 0 auto;
}

.stratigic .rowElement{
    text-align: right;
    width: 300px;
}

.stratigic  .colorable-icon{
    margin-left: auto;
}

.clients .container{
    max-width: 1160px;
    width: 100%;
    padding: 70px 63px;
    margin: 0px auto 0 auto;
}

.clientsSwiper {
    width: 100%;
    padding: 40px 0;
    margin-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 170px;
    height: 65px;
    object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
    color: #B380FF;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #7AF0FF;
}

.goals  .container{
    max-width: 1160px;
    width: 100%;
    padding: 70px 63px;
    margin: 0px auto 0 auto;
}

.buttons{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
}

.buttonGradient{
    text-align: center;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #000;
    background:  linear-gradient(143deg, #B380FF 10%, #7AF0FF 90%);;
    border-radius: 0.125em;
    padding: 9px 18px;
}

.buttonBlanck{
    text-align: center;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #97b8ff;
    border-radius: 0.125em;
    padding: 9px 18px;
    border: 1px solid #97b8ff;
}

.second{
    display: none !important;
}

.touch{
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1190px;
    width: 100%;
    padding: 0 15px;
    margin: 20px auto 0 auto;
}

.touch-img{
    height: 838px;
    width: 435px;
    object-fit: cover;
}

.touch__content{
    padding: 85px 63px;
    width: 100%;
}

.contentBottom{
    margin-top: 50px;
}

.touchList{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.touchList-link{
    font-size: 1.15em;
    font-weight: 300;
    color: #e0d6de;

    transition: .2s;
}

.touchList-link:hover{
    color: #fff;
}

.lists{
    display: flex;
    justify-content: space-between;

    padding-top: 30px;
}

.touch .about__content-row{
    text-align: right;
    align-items: start;

    row-gap: 20px;
    column-gap: 20px;
}

.touch .rowElement {
    max-width: 180px;
}

.touch .colorable-icon{
    margin-left: auto;
}

.email{
    text-decoration: underline;
    font-size: 1.25em;
    color: #97b8ff;
    font-weight: 600;
}

.email:hover{
    color: #6997fc;
}
.linkedin {
    width: 36px !important;
    height: 36px !important;
    display: inline-block;
}

.touchButton{
    position: fixed;
    background: linear-gradient(180deg, #3c3838 8%, #2f2e2e 43%);
    border-radius: 5px;
    bottom: 1rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    height: 30px;
}

.touchButton span{
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    transition: .2s;
}
.touchButton span:hover{
    color: #6997fc;
}

.touchButton img{
    width: 12px;
    height: 14px;
}

.touchButton svg{
    width: 21px;
    height: 12px;
    padding-left: 10px;
    display: block;
    color: #726e6e;
    transition: .2s;
}

.touchButton svg:hover{
    color: #6997fc;
}

@media(max-width: 980px) {
    .touch .about__content-row{
        align-items: flex-end;
    }
    .contentBottom .text{
        margin-right: auto;
    }
    .touchList{
        margin-right: auto;
    }
    .contentBottom{
        flex-direction: column;
    }
    .touch{
        padding: 0;
    }
    .touch,
    .about{
        display: flex;
        flex-direction: column;
    }
    .touch-img,
    .whyUs-img,
    .brain{
        height: 212px;
        max-width: 100%;
        width: 100%;
    }
    .about{
        margin: 0 auto;
    }

    .about .about__content-row{
        padding-top: 50px;
    }
    .about__content-row{
        flex-direction: column;
        row-gap: 60px;
    }
    .rowElement{
        max-width: 100%;
    }
    .whyUs .container{
        flex-direction: column;
    }
    .whyUs__content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .whyUs__content-boxes {
        padding-right: 0;
    }
    
    .whyUs__image {
        position: static;
        margin-top: 30px;
        margin-left: 0;
        padding-left: 0;
    }
    
    .whyUs__image img {
        max-width: 330px;
        margin: 0 auto;
        display: block;
    }
}
@media(max-width: 764px) {
    .second{
        display: block !important;
    }
    .first{
        display: none;
    }
    .linkedin{
        width: 252px;
        height: 252px;
        margin: 0 auto;
    }
    .lists{
        flex-direction: column;
        gap: 30px;
    }
    .header__list{
        transform: translateY(-100%);
        opacity: 0;
    }
    .burgerButton{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .logo {
        width: 120px;
        height: auto;
        max-height: 80px;
        display: block;
        margin: 10px 0px 0px auto;
    }

    .header__list{
        position: fixed;
        background-color: #000;
        border-bottom: 1px solid #535353;
        width: 100%;
        height: 80vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        top: 0;
        left: 0;
    }
    .stratigic .rowElement {
        text-align: left;
    }

    .about__content-row{
        align-items: normal;
    }
    .stratigic .colorable-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .whyUs .container{
        padding: 0;
    }
    .whyUs{
        padding: 0;
    }
    .whyUs__content-box-info{
        padding: 5px 0;
    }
    .number{
        max-width: 80px;
        width: 100%;
        min-height: 100%;
    }
    .greeting {
        padding-top: 0;
    }
    .greeting__content .title,
    .greeting h2.title {
        margin-top: 0 !important;
    }
    .greeting__video {
        display: none;
    }
    .greeting__content {
        order: 2;
        width: 100vw;
        max-width: 100vw;
        padding: 0 12px 16px 12px;
        align-items: center;
        gap: 10px;
    }
    .greeting__content h1,
    .greeting__content p,
    .greeting__content a {
        text-align: center;
    }
    .mag{
        position: relative;
        max-width: 100%;
        height: 382px;
        object-fit: cover;
        object-position: bottom;
    }

    .slider{
        gap: 45px;
    }

    .buttons{
        flex-direction: column;
    }

    .buttonBlanck,
    .buttonGradient{
        width: 100%;
    }

    .goals .container,
    .clients .container,
    .stratigic .container,
    .touch__content,
    .whyUs__content,
    .about__content,
    .greeting__content{
        padding: 40px 24px;
    }

    .title-main {
        font-size: 4em;
    }
    
    .title-sub {
        font-size: 1.8em;
    }

    .header .container {
        align-items: center;
        padding: 10px 16px;
    }

    body, html {
        overflow-x: hidden;
    }

    .greeting__background-video {
        height: 100vh;
        object-position: center;
    }

    .clients .container {
        padding: 40px 24px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .whyUs__image {
        margin-top: 30px;
    }
    
    .whyUs__image img {
        max-width: 90%;
    }
}

/* Center and set font size for section headers */
h2.title {
    font-size: 52px !important;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Extra: Remove horizontal scroll on mobile */
body, html {
    overflow-x: hidden;
}

/* Desktop: two-column layout */
@media (min-width: 768px) {
    .greeting {
        width: 100%;
        min-width: unset;
        margin: 0;
        padding: 0;
        background: #000;
        overflow: hidden;
        position: relative;
        padding-top: 220px;
    }
    .greeting__container {
        max-width: 1160px;
        margin: 0 auto;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 48px;
        padding: 0;
    }
    .greeting__content {
        width: 100%;
        max-width: 700px;
        align-items: flex-start;
        padding: 40px 80px 0 64px;
        gap: 32px;
    }
    .greeting__content h1,
    .greeting__content p,
    .greeting__content a {
        text-align: left;
    }
    .greeting__video {
        width: 50%;
        max-width: 700px;
        padding: 0 64px 0 0;
    }
    .greeting__video video {
        width: 100%;
        max-width: 700px;
        min-height: 320px;       
        border-radius: 16px;
    }
    .greeting__content .greeting-btn,
    .greeting__content a.buttonGradient.greeting-btn {
        margin-top: 40px !important;
    }
}

.goals-btn {
    min-width: unset;
    width: auto;
    padding: 9px 24px;
    font-size: 1.15em;
    font-weight: 600;
    border-radius: 0.125em;
    display: inline-block;
    text-align: center;
    background: linear-gradient(143deg, #B380FF 10%, #7AF0FF 90%);
    color: #000;
    transition: background 0.3s;
}

.greeting-btn {
    min-width: 0 !important;
    width: auto !important;
    padding: 8px 22px !important;
    display: inline-block !important;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .about__content-row {
        gap: 20px;                /* Slightly smaller gap on mobile */
        justify-content: center;
    }
    .rowElement {
        max-width: 100%;
        min-width: 240px;
        margin-bottom: 20px;
    }
    .whyUs .container {
        padding: 0 8px;
    }
    .whyUs-title {
        max-width: 100%;
        font-size: 2em; /* Optional: adjust font size for mobile */
    }
    .address-row {
        min-width: unset;
        width: 100%;
        justify-content: center;
        padding: 18px 8px;
    }
    .address-link {
        font-size: 1em;
    }
    .email-row {
        min-width: unset;
        width: 100%;
        padding: 14px 8px;
        font-size: 1em;
    }
    .greeting {
        padding-top: 170px !important; /* Extra space for mobile nav */
    }
    .greeting__content {
        gap: 4px !important; /* Reduce vertical gap between children */
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .greeting__content .title {
        padding: 58px 0 8px 0 !important; /* Less vertical padding for the title */
        gap: 4px !important;
    }
    .greeting__content .subTitle {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .greeting__content a.buttonGradient {
        margin-top: 16px !important;
        margin-bottom: 0 !important;
    }
}

.whyUs .title {
    text-align: center !important;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    display: block;
    margin-top: 0;
    margin-bottom: 32px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 900px) {
    .whyUs .title {
        padding-left: 24px;
    }
}

.address-row {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 260px;
    min-height: 80px;
    background: #181c2f;
    border-radius: 12px;
    padding: 24px 18px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.address-link {
    display: flex;
    align-items: center;
    color: #7AF0FF;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    gap: 12px;
    transition: color 0.2s;
}
.address-link:hover {
    color: #B380FF;
    text-decoration: underline;
}

.address-icon {
    display: flex;
    align-items: center;
}

.email-row {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 260px;
    min-height: 60px;
    background: #181c2f;
    border-radius: 12px;
    padding: 18px 18px;
    margin-bottom: 18px;
    box-sizing: border-box;
    font-size: 1.1em;
    font-weight: 600;
    color: #7AF0FF;
}

.footer-email-link {
    color: #7AF0FF;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
    transition: color 0.2s;
    word-break: break-all;
}
.footer-email-link:hover {
    color: #B380FF;
}

.footer-linkedin svg,
.linkedin img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
}

.greeting__video {
    width: 65%;
    max-width: 555px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px 0 0;
}

.greeting__video img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: scale(1.7);
    transform-origin: center;
}