@font-face {
    font-family: 'WinterSans';
    src: url('../fonts/Winner-Sans-Cond-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TT Lakes Neue Trial';
    src: url('../fonts/tt-lakes-neue-trial.medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #cf1010;
    --color-secondary: #0a0a0a;
    --color-text: #e2e2e2;
    --color-white-btn-hover: #bab9b9;
    --color-red-btn-hover: #b00d0d;
    --color-black-btn-hover: #272727;
    --color-slide-box: #1b1b1b;
    --color-slide-text: #353535;
    --color-slide-arrow: #181818;
    --color-container-bg: #D2D2D2;
    --color-project-detail-subtitle: #C1C1C1;
    --color-hero-breadcrumbs-1: #562222;
    --color-hero-breadcrumbs-2: #141414;
    --color-story-text-1: #bababa;
    --color-story-text-2: #fafafa;
    --color-projects-details: rgb(107, 107, 107, 0.37);
    --color-border-line: rgba(24, 24, 24, 0.10);
    --color-border-line-2: rgba(132, 132, 132, 0.17);
    --color-border-line-3: rgba(107, 107, 107, 0.18);
    --color-icon-border: rgba(186, 186, 186, 0.22);
    --font-primary: 'WinterSans', sans-serif;
    --font-text: 'Montserrat', sans-serif;
    --font-btn: clamp(14px, calc(16px + (18 - 16) * ((100vw - 375px) / (1440 - 375))), 18px);
    --font-subtitle: clamp(17px, calc(17px + (22 - 17) * ((100vw - 375px) / (1440 - 375))), 22px);
    --font-subtitle-marker: clamp(25px, calc(25px + (30 - 25) * ((100vw - 375px) / (1440 - 375))), 30px);
    --font-hero-main: clamp(60px, calc(60px + (220 - 60) * ((100vw - 375px) / (1440 - 375))), 220px);
    --font-hero-second: clamp(36px, calc(36px + (72 - 36) * ((100vw - 375px) / (1440 - 375))), 58px);
    --font-counter-numbers: clamp(50px, calc(50px + (130 - 50) * ((100vw - 375px) / (1440 - 375))), 130px);
    --font-counter-text: clamp(18px, calc(18px + (25 - 18) * ((100vw - 375px) / (1440 - 375))), 25px);
    --font-card-title: clamp(18px, calc(18px + (20 - 18) * ((100vw - 375px) / (1440 - 375))), 20px);
    --font-card-text: clamp(13px, calc(15px + (15 - 13) * ((100vw - 375px) / (1440 - 375))), 15px);
    --font-slide-text: clamp(13px, calc(20px + (23 - 20) * ((100vw - 375px) / (1440 - 375))), 23px);
    --font-service-title: clamp(25px, calc(25px + (61 - 25) * ((100vw - 375px) / (1440 - 375))), 61px);
    --font-achievements-title: clamp(30px, calc(30px + (85 - 30) * ((100vw - 375px) / (1440 - 375))), 85px);
    --font-achievements-title-2: clamp(20px, calc(20px + (58 - 20) * ((100vw - 375px) / (1440 - 375))), 58px);
    --font-footer-cta-title: clamp(50px, calc(50px + (180 - 50) * ((100vw - 375px) / (1440 - 375))), 180px);
    --font-footer-cta-title-2: clamp(30px, calc(30px + (130 - 30) * ((100vw - 375px) / (1440 - 375))), 130px);
    --font-about-us-hero-title: clamp(45px, calc(45px + (170 - 45) * ((100vw - 375px) / (1440 - 375))), 170px);
    --font-about-us-hero-title-2: clamp(25px, calc(25px + (70 - 25) * ((100vw - 375px) / (1440 - 375))), 70px);
    --font-about-us-story-title: clamp(50px, calc(50px + (200 - 50) * ((100vw - 375px) / (1440 - 375))), 200px);
    --font-about-us-story-text: clamp(22px, calc(22px + (50 - 22) * ((100vw - 375px) / (1440 - 375))), 50px);
    --font-our-mission-title: clamp(35px, calc(35px + (90 - 35) * ((100vw - 375px) / (1440 - 375))), 90px);
    --font-service-page-title: clamp(45px, calc(45px + (153 - 45) * ((100vw - 375px) / (1440 - 375))), 153px);
    --font-carriers-page-hero-title: clamp(45px, calc(45px + (165 - 45) * ((100vw - 375px) / (1440 - 375))), 165px);
    --font-carriers-job-title: clamp(20px, calc(20px + (45 - 20) * ((100vw - 375px) / (1440 - 375))), 45px);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #181818;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cf1010;
	border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b00d0d;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-secondary);
    color: var(--color-text);
    overflow-x: hidden;
    font-family: var(--font-primary);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 20px;
    border-left: 1px solid var(--color-border-line-3);
    border-right: 1px solid var(--color-border-line-3);
}





/* ===========================================
              Navbar Styling Start Here
=========================================== */
header {
    position: sticky;
    top: 0;
    background: transparent;
    z-index: 1000;
}

.navbar-wrapper {
    padding: 20px 0px;


}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    background: rgba(10, 10, 10, 0.92);
    padding: 20px 6px 20px 20px;
    margin: 0;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
    gap: 6px;
    flex-shrink: 0;
    color: var(--color-text);
}

.header-logo {
    width: 250px;
}

/* ── Nav Menu ── */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--font-btn);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

/* ── Dropdown ── */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-primary);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    font-size: var(--font-btn);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--color-secondary);
    color: var(--color-text);
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* ── CTA Button ── */
.btn-devis, button {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    background-color: var(--color-text);
    color: var(--color-secondary);
    font-family: "WinterSans", sans-serif;
    font-size: var(--font-btn);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 25px 10px 35px;
    white-space: nowrap;
    width: fit-content;
    height: fit-content;
    transition: 200ms ease-in;
    clip-path: shape(from 10px 0%,
            hline to 100%,
            vline to 100%,
            line to 0% 100%,
            line to 0% 10px,
            line to 10px 10px,

            close);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-text);
    font-size: var(--font-btn);
    letter-spacing: 0.04em;
    padding: 12px;
    margin-left: 12px;
    margin-right: -15px;
    overflow: hidden;
}

.btn-devis:hover {
    background-color: var(--color-white-btn-hover);
}

.var-black {
    background-color: var(--color-secondary) !important;
    color: var(--color-text) !important;
    transition: 200ms ease-in;
}

.var-black:hover {
    background-color: var(--color-black-btn-hover) !important;
}

.var-red {
    background-color: var(--color-primary) !important;
    color: var(--color-text) !important;
    transition: 200ms ease-in;
}

.var-red:hover {
    background-color: var(--color-red-btn-hover) !important;
}

.var-red .btn-arrow {
    background-color: var(--color-secondary) !important;
}

/* ===========================================
           Navbar Styling End Here
=========================================== */


/* ===========================================
        Hero Section Styling Start Here
=========================================== */
.hero {
    position: relative;
    height: 130vh;
    overflow: hidden;
    display: flex;
    background: var(--color-primary);
    margin-top: -110px;
    z-index: 1;

}

.hero-bg, .background-video {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    inset: 0;
    background: top right/cover no-repeat;
    object-fit: cover !important;    
    height: 70%;
    width: 70%;
    z-index: 2;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}


.hero .container {
    border-left: 1px solid var(--color-border-line) !important;
    border-right: 1px solid var(--color-border-line) !important;
}

.hero-content {
    width: 100%;
    padding: 150px 80px;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 83%;
    position: relative;
    z-index: 4;
}

.content-subtitle-wrapper {
    list-style: square !important;
    margin-left: 20px;
}

.content-subtitle {
    z-index: 2;
    font-size: var(--font-subtitle);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    color: var(--color-text);
}

.hero-content .content-subtitle {
    color: var(--color-secondary) !important;
    width: 20%;
}

.content-subtitle::marker {
    font-size: var(--font-subtitle-marker);
    letter-spacing: 0.04em;
}


.hero-title {
    font-size: var(--font-hero-main);
    font-weight: 400;
    font-family: "WinterSans", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 0.3;
}

.hero-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.hero-scroll-down {
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9;
}

.hero-scroll-down a {
    color: var(--color-text);
	font-size: 18px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-scroll-down svg path {
    margin-top: 10px;
}

.borders-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: absolute;
    inset: 0;
    max-width: 1440px;
    margin: 0 auto;
}

.section-border {
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-right: 1px solid var(--color-border-line);
    z-index: 1;
}

.section-border:nth-child(2) {
    left: 20%;
}

.section-border:nth-child(3) {
    left: 40%;
}

.section-border:nth-child(4) {
    left: 60%;
}

.section-border:nth-child(5) {
    left: 80%;
    border-right: none;
}

.container.border-container{
    border: none !important;
}

.horizontal-border {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.horizontal-section-border {
    height: 350px;
    border-bottom: 1px solid var(--color-border-line);
}

/* ===========================================
        Hero Section Styling End Here
=========================================== */


/* ===========================================
       Counter Section Styling Start Here
=========================================== */
.counter {
    margin-top: -200px;
    z-index: 9;
    position: relative !important;
}

.counter .container {
    padding: 0 !important;
}

.counter-wrapper-box {
    width: 100%;
    background: var(--color-secondary);
    padding: 60px 80px 20px 80px;
    display: flex;
    gap: 20px;
    position: relative;
    border-bottom: 1px solid var(--color-border-line-3);
    clip-path: shape(from 30px 0%,
            line to 98% 0%,
            line to 98% 30px,
            line to 100% 30px,
            vline to 100%,
            hline to 0%,
            line to 0% 30px,
            line to 30px 30px,
            line to 30px 0%,
            close);
}

.counter-content {
    width: 15%;
}

.counter .content-subtitle {
    width: 45%;
}

.counter-box {
    width: 85%;
    display: flex;
    align-items: start;
    justify-content: space-between
}

.counter-item-box {
    width: fit-content;
    min-width: 28%;
}

.counter-item-box:nth-child(1) {
    padding-left: 30px;
}

.counter-item-box:nth-child(2) {
    padding-left: 30px;
}

.counter-item-box:nth-child(3) {
    padding-left: 20px;
}

.counter-item-box:nth-child(4) {
    padding-left: 10px;
}

count-up {
    font-size: var(--font-counter-numbers);
    letter-spacing: 0.04em;
    font-weight: 400;
    line-height: 0.85;
    color: var(--color-text);
}

.counter-item-content {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    gap: 20px;
}

.counter-shape {
    width: 25px;
    height: 25px;
    background-color: var(--color-primary);
    clip-path: shape(from 0% 0%,
            line to 100% 100%,
            line to 0% 100%,
            close);
}

.counter-text {
    font-size: var(--font-counter-text);
    letter-spacing: 0.04em;
    font-weight: 400;
    letter-spacing: 0.04em;
    width: 40%;
    text-transform: uppercase;
    color: var(--color-text);
}



.counter .container .section-border {
    border-right: 1px solid var(--color-border-line-3);
}

/* ===========================================
       Counter Section Styling End Here
=========================================== */





/* ===========================================
       About Us Section Styling Start Here
=========================================== */

.about-us-top {
    margin-bottom: -14%;
}

@media (max-width:1440px){
    .about-us-top {
    margin-bottom: -12%;
}
}

.about-us-top .container {
    padding-top: 80px;
}

.about-us-top-content-wrapper {
    display: flex;
    gap: 20px;
    padding: 0 60px;
}

.about-us-top-content-wrapper ul {
    width: 50%;
}

.about-us-top .content-subtitle {
    width: 36%;
}

.about-us-text {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--color-text);
    font-family: var(--font-text);
    font-weight: 400;
    padding-left: 50px;
    padding-bottom: 50px;
    width: 50%;
}

.about-us-image-wrapper {
    display: flex;
    align-items: end;
    gap: 20px;
}

.about-us-image-wrapper img {
    width: 50%;
    max-height: 715px;
    object-fit: cover;
}

.about-us-bottom .container {
    width: 100% !important;
}

.about-us-image-wrapper .about-us-bottom-comtent-wrapper {
    width: 700px;
    height: fit-content;
    gap: 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-left: 50px;
    border-right: 1px solid var(--color-border-line-3);
}

.about-icon-box-wrapper {
    border-top: 1px solid var(--color-border-line-2);
    border-bottom: 1px solid var(--color-border-line-2);
    border-right: 1px solid var(--color-border-line);
    display: flex;
}

.about-icon-box-item {
    width: 50%;
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-icon-box-item.left-side {
    padding-right: 50px !important;
    border-right: 1px solid var(--color-border-line-2);
}

.about-icon-box-item.right-side {
    padding-left: 50px !important;
}

.about-icon-box-icon {
    border: 1px solid var(--color-icon-border);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.about-icon-box-icon img {
    width: 100%;
}

.icon-box-shape {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0px;
    right: -0.6px;
    z-index: 0;
    display: flex;
    background-color: var(--color-primary);
    clip-path: shape(from 0% 0%,
            hline to 100%,
            vline to 100%,
            close);

}

.about-icon-box-title {
    font-size: var(--font-card-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
}

.about-icon-box-text {
    font-size: var(--font-card-text);
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--color-text);
    font-weight: 400;
}

/* ===========================================
      About Us Section Styling End Here
=========================================== */




/* ===========================================
      Member Section Styling Start Here
=========================================== */

.member-slider-wrapper {
    padding: 100px 0px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.member-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 80px;
    border-top: 1px solid var(--color-border-line-3);
    border-bottom: 1px solid var(--color-border-line-3);
}

.member .content-subtitle-wrapper {
    width: 50%;
}

.member .content-subtitle {
    width: 45%;
}

.member-slider-arrow {
    display: flex;
    justify-content: end;
    gap: 20px;
}

@media (max-width: 480px){
    .member-slider-arrow {
    display: none;
}
}

.member-slide-next-arrow,
.member-slide-prev-arrow,
.project-slider-prev-arrow,
.project-slider-next-arrow {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    cursor: pointer;
    background-color: var(--color-slide-arrow);
}

.member-slider {
    padding: 0 80px;
}

.splide__listr {
    display: flex;
    gap: 0;
}

.member-slide-item-border {
    padding: 20px;
    margin: 0 !important;
    width: 19%;
    border-right: 1px solid var(--color-slide-box);
}

.member-slide-item {
    font-size: var(--font-slide-text);
    letter-spacing: 0.04em;
    color: var(--color-slide-text);
    padding: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-slide-box);
}

.member-logo-img{
	max-width: 130px;
	width: 100%;
}

/* ===========================================
      Member Section Styling End Here
=========================================== */



/* ===========================================
      Services Section Styling Start Here
=========================================== */

.service-wrapper {
    background: linear-gradient(rgba(226, 226, 226, 0.3), rgba(226, 226, 226, 0.3)),
        url('../media/img/service-texture.webp') top right/contain repeat;
    padding: 30px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
	position: relative;
    z-index: 9;
}

.services .content-subtitle-wrapper {
    padding: 0 80px;
}

.services .content-subtitle {
    color: var(--color-secondary);
    width: 30%;
}

.services-item:nth-child(1) {
    border-top: 1px solid var(--color-border-line);
}

.services-item {
    display: flex;
    padding: 0 80px;
    border-bottom: 1px solid var(--color-border-line);
    transition: 300ms;
}

.service-item-title {
    padding: 40px 0px;
    width: 65%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    border-right: 1px solid var(--color-border-line);
}

.service-item-title svg {
    stroke: var(--color-secondary);
    font-size: 300px;
    letter-spacing: 0.04em;
    transform: rotateZ(0deg);
    transition: 300ms;
}

.service-title {
    color: var(--color-slide-text);
    font-size: var(--font-service-title);
    letter-spacing: 0.04em;
}

.service-item-content {
    width: 35%;
    height: 175px;
    gap: 50px;
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 2;
    transform: translateX(20px);
    transition: 300ms;

}

.services-item:hover {
    border-bottom: 1px solid var(--color-slide-arrow) !important;
}

.services-item:hover .service-item-content {
    opacity: 1;
    transform: translateX(0px);
}

.services-item:hover .service-title {
    color: var(--color-secondary);
}

.services-item:hover .service-item-title svg {
    stroke: var(--color-primary);
    transform: rotateZ(45deg);
}



.service-item-img {
    width: 50%;
}

.service-item-img img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
}

.service-content {
    width: 100%;
    gap: 20px;
    display: flex;
}

.service-content p {
    color: var(--color-secondary);
}

/* ===========================================
      Services Section Styling End Here
=========================================== */



/* ===========================================
    Achievements Section Styling Start Here
=========================================== */


.achievements-wrapper {
    position: relative;
    padding: 60px 80px 136px 80px;
    display: flex;
    flex-direction: column;
    gap: 125px;
    z-index: 1;
}

.achievements-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--ach-bg) center / cover no-repeat;
}

.achievements-background-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    
  z-index: 0;
  pointer-events: none;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.achievements .content-subtitle {
    width: 15%;
}

.achievements-card {
    width: 42%;
    padding: 30px 30px 30px 65px;
    background-color: rgba(226, 226, 226, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    clip-path: shape(from 6% 0%,
            line to 100% 0%,
            line to 100% 100%,
            line to 0% 100%,
            line to 0% 6%,
            line to 6% 6%,
            close);
}

.achievements-card-shape {
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    clip-path: shape(from 0% 0%,
            line to 100% 100%,
            line to 0% 100%,
            close);
}

.achievements-card h2 {
    color: var(--color-secondary);
    font-size: var(--font-achievements-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.8em;
}

.achievements-card p {
    font-family: var(--font-text);
    font-size: var(--font-subtitle);
    letter-spacing: 0.04em;
    color: var(--color-secondary);
}

.achievements-card .hero-btn-wrapper {
    margin: 0;
}

/* ===========================================
    Achievements Section Styling End Here
=========================================== */




/* ===========================================
    Projects Section Styling Start Here
=========================================== */

.project-wrapper {
    padding: 0px;
}

.project-content-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    border-bottom: 1px solid var(--color-border-line-3);
}

.project-content-upper ul {
    width: 20%;
    padding: 20px 0;
    border-right: 1px solid var(--color-border-line-3);
}

.heading-wrapper-border{
	width: 1px;
	height: 79px;
	background: var(--color-border-line-3);
}

.project-content-upper p {
    width: 33%;
    font-family: var(--font-text);
    font-size: var(--font-btn);
    color: var(--color-story-text-1);
    padding: 20px 0 20px 20px;
    border-left: 1px solid var(--color-border-line-3);
}

.project-content-title {
    font-size: clamp(45px, calc(47px + (208 - 47) * ((100vw - 375px) / (1440 - 375))), 208px);
    font-weight: 400;
    text-align: center;
    line-height: 1.2em;
    padding: 0 80px;
	color: var(--color-story-text-1);
	margin-bottom: 40px;
    border-bottom: 1px solid var(--color-border-line-3);
}


.project-slide-item {
    position: relative;
    padding: 30px;
    width: 60%;
    max-width: 900px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    clip-path: shape(from 6% 0%,
            line to 100% 0%,
            line to 100% 100%,
            line to 0% 100%,
            line to 0% 7.5%,
            line to 6% 7.5%,
            close);
}


.project-slide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: 300ms;
}

.project-slide-item:hover::before {
    filter: grayscale(0%);
}

.project-slide-item>* {
    position: relative;
    z-index: 1;
}

.project-details-btn {
    display: flex;
    justify-content: end;
}

.project-details-btn .btn-devis {
    padding: 5px 20px 3px 20px;
    clip-path: none;
}

.project-details-btn .btn-arrow {
    background: transparent !important;
}

.project-detail-content-wrapper {
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(229, 299, 229, 0.15);

}

.project-details {
    display: flex;
    align-items: center;
}

.project-details-right {
    width: 45%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 2px solid var(--color-projects-details);
}

.project-details-subtitle {
    display: flex;
    gap: 10px;

}

.project-details-subtitle-text {
    font-size: var(--font-btn);
    color: var(--color-project-detail-subtitle);
}

.project-details-right h3 {
    font-size: var(--font-card-title);
    font-weight: 400;
}

.project-details-left {
    width: 55%;
    padding: 25px;
    display: flex;

}

.project-details-left-item {
    width: fit-content;
    padding: 0 30px;
    border-right: 2px solid var(--color-projects-details);
}

.project-details-left-item:nth-child(3) {
    padding: 0 10px 0 30px;
    border-right: 0px solid var(--color-projects-details);
}

.project-details-left li {
    font-size: var(--font-btn);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-project-detail-subtitle);
}

.project-details-left li::marker {
    font-size: var(--font-btn);
    color: var(--font-card-title);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.project-details-left h4 {
    font-size: var(--font-subtitle);
    color: var(--color-text);
    font-weight: 400;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.project-slide-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px 50px 80px;
}

/* ===========================================
    Projects Section Styling End Here
=========================================== */




/* ===========================================
       Footer CTA Styling Start Here
=========================================== */
.footer-cta-wrapper {
    background: url('../media/img/footer-bg.png') no-repeat !important;
    background-size: 60% !important;
    background-position: 100% 70px !important;
    background-color: var(--color-secondary) !important;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid var(--color-border-line-3);
    clip-path: shape(from 0% 0%,
            line to 100% 0%,
            line to 100% 96%,
            line to 98% 96%,
            line to 98% 100%,
            line to 2% 100%,
            line to 2% 96%,
            line to 0% 96%,
            close);
}

.footer-cta .container {
    position: relative;
    z-index: 2;
    background: var(--color-secondary);
}

.footer-cta-content-wrapper {
    position: relative;
    width: 80%;
}

.footer-cta-title {
    font-size: var(--font-footer-cta-title);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
}

.footer-cta-content-wrapper p {
    position: absolute;
    top: 70px;
    left: 55%;
	font-size: 20px;
    font-weight: 400;
    color: var(--color-story-text-1);
    width: 25%;
}

.footer-cta-btn {
    width: 20%;
    padding-bottom: 10px;
}

/* ===========================================
    Footer CTA Styling End Here
=========================================== */




/* ===========================================
         Footer Styling Start Here
=========================================== */

.footer {
    background: var(--color-primary);
    margin-top: -270px;
    z-index: 1;
}

.footer .container {
    border-left: 1px solid var(--color-border-line);
    border-right: 1px solid var(--color-border-line);
    padding: 0 80px;
}

.footer .footer-logo-wrapper {
    padding-top: 300px;
}

.footer .content-subtitle {
    color: var(--color-secondary);
    width: 15%;
}

.footer-logo {
    width: 100%;
}

.footer-middle-wrapper {
    border-top: 1px solid var(--color-border-line);
    border-bottom: 1px solid var(--color-border-line);
    margin-top: -6px;
}

.footer-middle-wrapper .container {
    display: flex;
}

.footer-middel-btn {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
}

.footer-middle-social-icon {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.footer-middle-social-icon a {
    background: var(--color-text);
    padding: 10px 10px 3px 10px;
}

.footer-middle-content {
    display: flex;
    width: 70%;
}

.footer-middle-item:nth-child(1) {
    width: 50%;
}    
.footer-middle-item:nth-child(3) {
    padding: 40px 0 40px 40px;
} 

.footer-middle-item {
    width: 25%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: flex;
    list-style-type: none;
    flex-direction: column;
    border-left: 1px solid var(--color-border-line);
}

.footer-middle-item .footer-link {
    font-size: var(--font-counter-text);
    letter-spacing: 0.04em;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    color: var(--color-text);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px !important;
}

.footer-bottom-wrapper p {
    font-size: var(--font-card-title);
}

/* ===========================================
         Footer Styling End Here
=========================================== */

/* =======================================================================================================================
                                            About Us Page Styling Start Here
======================================================================================================================= */


/* ===========================================
         Hero Styling Start Here
=========================================== */
.about-us-page .hero-bg {
    background: top right/cover no-repeat;
    height: 64%;
    z-index: 2;
}

.about-us-page .hero-content {
    padding: 100px 80px 120px 80px;
}

.hero-breadcrumbs {
    color: var(--color-hero-breadcrumbs-2);
    font-size: var(--font-subtitle);
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-left: -80px;
}

.about-us-page .hero-title {
    font-size: var(--font-about-us-hero-title);
    line-height: 0.5;
}


.about-hero-text {
    font-size: clamp(22px, calc(22px + (25 - 22) * ((100vw - 375px) / (1440 - 375))), 25px);;
    color: var(--color-secondary);
    width: 20%;
    margin-top: 50px;
}

.about-us-page .hero-scroll-down {
    margin-top: -50px;
}

/* ===========================================
           Hero Styling End Here
=========================================== */



/* ===========================================
         Our Story Styling Start Here
=========================================== */


.about-us-page .counter-wrapper-box {
    padding: 100px 80px;
    flex-direction: column;
    border-bottom: none !important;
}

.about-us-page .counter-wrapper-box h2 {
    text-align: center;
    font-size: var(--font-about-us-story-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    width: 100%;
}

.about-us-page .counter-wrapper-box p {
    font-size: var(--font-about-us-story-text);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-story-text-1);
    width: 80%;
    text-align: center;
    align-self: center;
}

/* ===========================================
         Our Story Styling End Here
=========================================== */




/* ===========================================
         Story Beton Styling Start Here
=========================================== */

.about-us-page .services-item-wrapper {
    padding: 20px 0 80px 80px;
    border-top: 1px solid var(--color-border-line);
}


.story-baton-item {
    display: flex;
    padding-top: 20px;
    border-left: 1px solid var(--color-border-line);
}

.story-baton-item:nth-child(1) {
    padding-top: 0px;
}

.story-baton-content {
    width: 60%;
    margin-left: 50px;
    border-bottom: 1px solid var(--color-border-line);
    padding-bottom: 20px;
    padding-right: 25px;
    transition: 300ms;
}

.year-story-baton {
    list-style-type: none !important;
    margin-left: -55px;
}

.year-story-baton li {
    color: var(--color-secondary);
    font-size: var(--font-slide-text);
    display: flex;
    align-items: center;
    gap: 45px;

}

.year-story-baton .year-story::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background-color: var(--color-primary);
}

.story-baton-content .service-title {
    font-size: var(--font-about-us-story-text);
    letter-spacing: 0.02em;
}

.baton-story-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.about-us-page .story-baton-item .counter-shape {
    margin: 30px 0 20px 0;
}

.story-baton-content p {
    font-family: var(--font-text);
    font-size: var(--font-btn);
    letter-spacing: 0.02em;
    color: var(--color-secondary);
}

.story-baton-img {
    width: 40%;
    border-bottom: 1px solid var(--color-border-line);
    padding: 0 80px 20px 25px;
    transform: 300ms;
}

.story-baton-img img {
    width: 100%;
    max-height: 0;
    opacity: 0;
    margin-top: -55px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    clip-path: shape(from 20px 0%,
            hline to 100%,
            vline to 100%,
            line to 0% 100%,
            line to 0% 20px,
            line to 20px 20px,

            close);
}


.story-baton-item:hover .baton-story-hidden {
    max-height: 500px;
    opacity: 1;
}

.story-baton-item:hover .story-baton-img img {
    max-height: 500px;
    opacity: 1;
}

.story-baton-item:hover .story-baton-content,
.story-baton-item:hover .story-baton-img {
    border-bottom: 1px solid #000000;
}

/* ===========================================
         Story Beton Styling End Here
=========================================== */



/* ===========================================
        Our Mission Styling Start Here
=========================================== */
.our-mission .container {
    padding: 0 0 80px 0;
}

.our-mission-wrapper {
    padding: 0 80px;
}

.our-mission-upper {
    display: flex;
}

.our-mission-upper .content-subtitle-wrapper {
    padding: 80px 80px 80px 100px;
    margin: 0;
    height: fit-content;
    border-bottom: 1px solid var(--color-border-line-3);
}

.our-mission-upper .content-subtitle {
    width: 53%;
}

.our-mission-title {
    padding: 80px 100px;
    width: 70%;
    border-left: 1px solid var(--color-border-line-3);
}

.our-mission-title h2 {
    font-size: var(--font-our-mission-title);
    font-weight: 400;
    color: var(--color-story-text-1);
    line-height: 1.1;
}

.our-mission-bottom {
    display: flex;
    align-items: center;
    gap: 60px;
}

.our-mission-img {
    width: 50%;
}

.our-mission-img img {
    width: 100%;
}

.our-mission-content {
    width: 50%;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.our-mission-content p {
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-btn);
    font-style: normal !important;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

/* ===========================================
        Our Mission Styling End Here
=========================================== */


/* ===========================================
        Our Vision Styling Start Here
=========================================== */

.our-vision .container {
    border-top: 1px solid var(--color-border-line-3);
    padding-bottom: 300px;
}

.our-vision .our-mission-title {
    width: 73%;
}

/* ===========================================
        Our Vision Styling End Here
=========================================== */



/* ===========================================
        Our Values Styling Start Here
=========================================== */

.about-us-page .our-values {
    height: 310px;
    background: linear-gradient(rgba(226, 226, 226, 0.3), rgba(226, 226, 226, 0.3)),
        url('../media/img/service-texture.webp') top right/cover no-repeat;
    position: relative;
    overflow: visible;
}

.our-values .container {
    border: none;
    padding: 30px 80px 0 80px;
}

.our-values .our-values-shape-wrapper {
    width: 100%;
    position: relative;
    top: -200px;
    background: linear-gradient(rgba(226, 226, 226, 0.3), rgba(226, 226, 226, 0.3)),
        url('../media/img/service-texture.webp') top right/contain repeat;
    clip-path: shape(from 30px 0%,
            line to 98% 0%,
            line to 98% 30px,
            line to 100% 30px,
            vline to 100%,
            hline to 0%,
            line to 0% 30px,
            line to 30px 30px,
            line to 30px 30px,
            close);
}

.our-values .content-subtitle {
    color: var(--color-secondary);
}

.values-icon-box-wrapper {
    margin-top: 20px;
    border-top: 1px solid var(--color-border-line);
    display: flex;
    gap: 0;
}

.value-icon-box-item {
    border-right: 1px solid var(--color-border-line);
	width: 20%;
    height: 420px;
    display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 20px;
    padding: 40px 25px;
}

.value-icon-box-item:nth-child(1) {
    padding: 40px 25px 40px 0;
}

.value-icon-box-item:last-child{
	border: none !important;
}

.value-icon-box-item img {
    width: 80px;
}

.value-icon-box-item h4 {
    font-size: var(--font-counter-text);
    font-weight: 400;
    color: var(--color-secondary);
	text-align: center;
}

.value-icon-box-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 25px;
    color: var(--color-slide-text);
	text-align: center
}

/* ===========================================
        Our Values Styling End Here
=========================================== */




/* ===========================================
      Behind Projects Styling Start Here
=========================================== */
.behind-every-project .container {
    padding: 0;
}

.behind-project-wrapper .content-subtitle-wrapper {
    padding: 20px 80px;
    border-bottom: 1px solid var(--color-border-line-3);
}

.behind-project-title {
    padding: 20px 80px;
    border-bottom: 1px solid var(--color-border-line-3);
}

.behind-project-title h2 {
    font-size: clamp(30px, calc(45px + (168 - 45) * ((100vw - 375px) / (1440 - 375))), 168px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-story-text-1);
}

.behind-project-slider {
    padding: 50px 80px;
    width: 100%;
}

/* Desktop: disable slider, show as 3-column grid */
@media (min-width: 1024px) {
  .behind-project-slider .splide__track {
    overflow: visible !important;
  }

  .behind-project-slider .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    transform: none !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }

  .behind-project-slider .splide__slide {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Hide cloned slides that Splide creates for loop mode */
  .behind-project-slider .splide__slide.is-clone {
    display: none !important;
  }
}

.behind-project-slide-item {
    position: relative;
    padding: 20px;
    width: 26%;
    max-width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    clip-path: shape(from 20px 0%,
            line to 100% 0%,
            line to 100% 100%,
            line to 0% 100%,
            line to 0% 20px,
            line to 20px 20px,
            close);
}


.behind-project-slide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: 300ms;
}

.behind-project-details-btn {
    align-self: flex-end;
}

.behind-project-details-btn .btn-devis {
    padding: 5px 20px 3px 20px;
    clip-path: none;
    position: relative;
    z-index: 1;
}

.behind-project-details-btn .btn-arrow {
    background: transparent !important;
}

.behind-project-details {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(229, 299, 229, 0.15);
    z-index: 1;
}

.behind-project-details h3 {
    font-size: var(--font-counter-text);
    font-weight: 400;
}

.behind-project-slide-arrow .member-slider-arrow {
    padding: 0px 80px 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

dialog{
   width: 100%;
   height: 100%;
   background: transparent;
}

.member-popup{
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.5);
   display: flex;
   justify-content: center;
   align-items: center
}
.member-popup-inner{
   width: 1200px;
   height: 75%;
   overflow-y: auto;
   background: linear-gradient(rgba(226, 226, 226, 0.3), rgba(226, 226, 226, 0.3)), url(../media/img/service-texture.webp) top right / contain repeat;
   padding: 30px;
   display: flex;
   gap: 20px;
   position: relative;
}
.member-popup-img{
   width: 50%;
}
.member-popup-img img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.member-popup-content{
   width: 50%;
   display: flex;
   flex-direction: column;
   gap: 20px;
}
.member-popup-content h3{
	font-size: 25px;
}
.member-popup-content .project-details-subtitle-text{
   color: var(--color-secondary);
}

.member-popup-bio p{
   font-family: var(--font-text); 
   font-size: var(--font-btn);
   font-weight: 400;
   letter-spacing: 0.04em;
}

.member-close-popup{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    background: var(--color-primary);;
    border: none;
}
.member-popup-content .footer-middle-social-icon{
	padding-bottom: 30px;
}
.member-popup-content .footer-middle-social-icon a {
	    padding: 10px 10px 7px 10px;
}

/* =======================================================================================================================
                                            Services Page Styling Start Here
======================================================================================================================= */


/* ===========================================
      Hero Section Styling Start Here
=========================================== */
.services-page .hero-content {
    padding: 100px 80px 120px 80px;
}

.services-page .hero-bg {
    background: top right/cover no-repeat;
    height: 64%;
    z-index: 2;
}


.breadcrumbs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-page .hero-title {
    font-size: clamp(45px, calc(40px + (110 - 40) * ((100vw - 375px) / (1440 - 375))), 110px);;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.8;
}

@media (max-width: 480px){
    .services-page .hero-title {
    line-height: 1 !important;
}
}

/* ===========================================
      Hero Section Styling End Here
=========================================== */



/* ===========================================
      Counter Section Styling Start Here
=========================================== */
.services-page .counter-wrapper-box {
    padding: 0 80px;
}

.services-page .counter-box {
    width: 100%;
}

.services-page .counter-box .counter-item-box {
    padding: 60px 0 !important;
    width: 33.3%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.services-page .counter-box .counter-item-box:nth-child(2) {
    padding: 60px 30px !important;
    border-left: 1px solid var(--color-border-line-3);
    border-right: 1px solid var(--color-border-line-3);
}

.services-page .counter-item-content {
    margin: 0;
}

.services-page .counter-text {
    width: 55%;
}

/* ===========================================
      Counter Section Styling End Here
=========================================== */


/* ===========================================
    Introduction Section Styling Start Here
=========================================== */

.services-page .our-mission .container {
    padding-bottom: 30px;
}

.services-page .counter-wrapper-box {
    border-bottom: 0;
}

.services-page .our-mission-upper {
    flex-direction: column;
}

.intruduction-sutitle {
    border-top: 1px solid var(--color-border-line-3);
    border-bottom: 1px solid var(--color-border-line-3);
    padding: 20px 0;
    margin: 0 80px;
}

.services-page .our-mission-img img {
    min-height: 460px;
    max-height: 500px;
    object-fit: cover;
}

.services-page .our-mission-content {
    width: 660px;
    border-right: 1px solid var(--color-border-line-3);
}

.services-page .our-mission-upper .content-subtitle-wrapper {
    padding: 0;
    margin-left: 20px;
    border: none;
}

.services-page .our-mission-title {
    width: 100%;
    padding: 20px 80px;
}

.services-page .our-mission-title h2 {
    font-size: var(--font-service-page-title);
    letter-spacing: 0.04em;
    line-height: 1;
    font-weight: 400;
    color: var(--color-primary);
}

.services-page .our-mission-content h4 {
    font-size: var(--font-counter-text);
    font-weight: 500;
}

/* ===========================================
    Introduction Section Styling End Here
=========================================== */




/* ===========================================
    Our Value Section Styling Start Here
=========================================== */

.value-blank-space{
	height: 80px;
	border-left: 1px solid var(--color-border-line-3) !important;
	border-right: 1px solid var(--color-border-line-3) !important;	
}

.our-values {
    height: auto;
    background: none;
}

.services-page .our-values .our-values-shape-wrapper {
    top: 0;
    clip-path: none;
}



/* ===========================================
            Finition Tabs Styling Start Here
=========================================== */

.finition-tabs-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 0 80px;
}

/* ── Left side: Tab Nav ── */
.finition-tabs-nav {
    width: 45%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 70px 0px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    border-right: 1px solid var(--color-border-line-3);
}

.finition-tab-btn {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border-line-3) !important;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: var(--font-achievements-title-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-story-text-1);
    padding-bottom: 12px;
    transition: color 0.3s ease, border-color 0.3s ease;
}


.finition-tab-btn.is-active {
    color: var(--color-text);
    border-bottom: 1px solid #ffffff !important;
}

.finition-tab-btn svg,
.finition-tab-btn path {
    transition: fill 0.3s ease, stroke 0.3s ease, rotate 0.3s ease;
}

.finition-tab-btn.is-active svg,
.finition-tab-btn.is-active path {
    fill: var(--color-primary);
    stroke: var(--color-primary);
    rotate: 23deg;
}

.finition-tab-btn:hover {
    color: var(--color-text);
}

/* ── Right side: Tab Content ── */
.finition-tabs-content {
    width: 70%;
    border-left: 1px solid var(--color-border-line);
    padding: 60px 0 60px 60px;
}

.finition-tab-panel {
    display: none;
    flex-direction: column;
}

.finition-tab-panel.is-active {
    display: flex;
}

.finition-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border-line);
}

.finition-item:first-child {
    padding-top: 0;
}

.finition-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.finition-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.finition-title {
    font-family: var(--font-primary);
    font-size: var(--font-achievements-title-2);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 12px;
}

.finition-text {
    font-family: var(--font-text);
    font-size: var(--font-btn);
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: var(--color-text);
    width: 100%;
}

/* ===========================================
      Finition Tabs Styling End Here
=========================================== */


/* ===========================================
      Finition Tabs 2 Styling Start Here
=========================================== */


.finition-tabs-2 .finition-tabs-wrapper {
    background: linear-gradient(rgba(226, 226, 226, 0.3), rgba(226, 226, 226, 0.3)),
        url('../media/img/service-texture.webp') top right/contain repeat;
    clip-path: shape(from 30px 0%,
            line to 98% 0%,
            line to 98% 30px,
            line to 100% 30px,
            vline to 100%,
            hline to 0%,
            line to 0% 30px,
            line to 30px 30px,
            line to 30px 0%,
            close);
}

.finition-tabs-2 .finition-tab-btn {
    color: var(--color-slide-text);
    border-bottom: 1px solid var(--color-border-line-3) !important;
}


.finition-tabs-2 .finition-tab-btn.is-active {
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary) !important;
}

.finition-tabs-2 .finition-title {
    color: var(--color-secondary);
}

.finition-tabs-2 .finition-text {
    color: var(--color-slide-text);
}

/* ===========================================
     Finition Tabs 2 Styling End Here
=========================================== */



/* ===========================================
    Completed projects Styling Start Here
=========================================== */

.services-page .project-content-title {
    font-size: clamp(45px, calc(46px + (206 - 46) * ((100vw - 375px) / (1440 - 375))), 206px);
    color: var(--color-story-text-1);
}

/* ===========================================
    Completed projects Styling End Here
=========================================== */


/* =======================================================================================================================
                                            Project Page Styling Start Here
======================================================================================================================= */


/* ===========================================
    Hero Section Styling Start Here
=========================================== */

.project-page .hero-content {
    padding: 100px 80px;
}

.project-page .hero-bg {
    background: top right/cover no-repeat;
    height: 64%;
    z-index: 2;
}

.project-page .hero-bg-mobile {
    display: none;
}

.project-page .hero-title {
    font-size: var(--font-footer-cta-title);
    line-height: 1;
}

.project-page .counter-box{
    width: 50%;
}

.project-page .counter-item-box{
    padding: 0 !important;
    width: 50%;
    display: flex;
    gap: 20px;
}
.project-page .counter-item-box count-up{
    font-size: var(--font-achievements-title) !important;
}
.project-page .counter-item-content {
    margin: 0;
}

.project-page .counter-item-content .counter-shape{
    background-color: var(--color-text);
}

.project-page .counter-item-content .counter-text{
    font-size: var(--font-btn);
    width: 70%;
}

/* ===========================================
    Hero Section Styling End Here
=========================================== */



/* ===========================================
    Projects Section Styling Start Here
=========================================== */
.listed-projects{
    margin-top: -150px;
    background-color: var(--color-secondary);
    position: relative;
    z-index: 1;
    clip-path: shape(from 30px 0%,
            line to 98% 0%,
            line to 98% 30px,
            line to 100% 30px,
            vline to 100%,
            hline to 0%,
            line to 0% 30px,
            line to 30px 30px,
            line to 30px 0%,
            close);
}

.project-page-wrapper{
    padding: 50px 80px 0 80px;
    display: flex;
    gap: 40px;
}

.projects-filters{
    width: 16.3%;
    height: 100vh;
    border-right: 1px solid var(--color-border-line-3);
}

.filter-type{
    padding: 20px 0;
    width: 80%;
    border-bottom: 1px solid var(--color-border-line-3);
}

.filters{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    padding: 30px 0;
}

.filters li a {
    font-size: var(--font-btn);
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--font-text);
    transition: color 0.2s;
}

.filters li a.is-active,
.filters li a:hover {
    color: var(--color-primary);
}

.listed-projects-wrapper{
    width: 83.7%;
}

.listed-project-title {
    padding: 0 40px 30px 0px;
    width: 100%;
    border-bottom: 1px solid var(--color-border-line-3);
}

.listed-project-title h2{
    font-size: var(--font-achievements-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-text);
}

.listed-project-title p{
    font-size: var(--font-subtitle);
    color: var(--color-project-detail-subtitle);
    letter-spacing: 0.04em;
}

.listed-project-item{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-line-3);
}

.listed-project-item-content{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.listed-project-item .project-details-subtitle p{
    font-size: var(--font-btn);
    letter-spacing: 0.04em;
    color: var(--color-project-detail-subtitle);
}

.listed-project-item .listed-project-item-content h3{
    font-size: var(--font-slide-text) !important;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.project-details-btn{
    margin-top: 30px;
}

.listed-projects .project-details-left {
    width: fit-content;
    border: 1px solid var(--color-border-line-3);
}

.listed-projects .project-details-left-item:nth-child(1){
    padding-left: 0;
}

.listed-projects .project-details-btn{
    justify-content: flex-start;
}

.listed-project-item-img {
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

.listed-project-item-img img{
    width: 90%;
    height: 280px;
    object-fit: cover;
        clip-path: shape(from 20px 0%,
            hline to 100%,
            vline to 100%,
            line to 0% 100%,
            line to 0% 20px,
            line to 20px 20px,

            close);
}

.load-more-listed-btn{
    display: flex;
    justify-content: center;
    padding: 30px 80px;
}


/* ===========================================
    404 Page Styling
=========================================== */

.error-404 {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    max-width: 600px;
}

.error-404-heading {
    font-family: var(--font-primary);
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-text);
}

.error-404-desc {
    font-family: var(--font-text);
    font-size: var(--font-subtitle);
    letter-spacing: 0.04em;
    color: var(--color-text);
    text-align: center;
    line-height: 1.6;
}

/* =======================================================================================================================
                                            Carriers Page Styling Start Here
======================================================================================================================= */

/* ===========================================
    Hero Section Styling Start Here
=========================================== */
.carriers-page .hero-bg{
	height: 64%;
}

.carriers-page .hero-content {
    padding: 100px 80px 120px 80px;
}

.carriers-page .hero-title {
    font-size: var(--font-carriers-page-hero-title);
    line-height: 0.5;
    letter-spacing: 0.04em;
}

.carriers-page .content-subtitle-wrapper {
	margin-bottom: 20px;
}

.carriers-page .hero-content-wrapper .btn-devis {
    margin-top: 50px;
}

/* ===========================================
    Projects Section Styling End  Here
=========================================== */



/* ===========================================
    Why Work Section Styling Start Here
=========================================== */


.carriers-page .counter-wrapper-box {
    flex-direction: column;
    gap: 0;
	padding: 60px 80px 60px 80px !important;
}

.carriers-page .counter-wrapper-box h2 {
    font-size: var(--font-hero-main);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--color-story-text-1);
    border-top: 1px solid var(--color-border-line-3);
    border-bottom: 1px solid var(--color-border-line-3);
}

.carriers-page .values-icon-box-wrapper {
    margin-top: 0;
    border-bottom: 1px solid var(--color-border-line-3);
}

.carriers-page .value-icon-box-item {
    padding: 30px !important;
    min-height: 300px;
    height: fit-content;
    width: 33.3%;
    border-right: 1px solid var(--color-border-line-3);
}

.carriers-page .value-icon-box-item:nth-child(1) {
    padding-left: 0 !important;
}

.carriers-page .value-icon-box-item:nth-child(3) {
    border: none !important;
}

.carriers-page .value-icon-box-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carriers-page .value-icon-box-content h4 {
    color: var(--color-text);
}

.carriers-page .value-icon-box-content p {
    color: var(--color-text);
}

/* ===========================================
      Why Work Section Styling End Here
=========================================== */



/* ===========================================
    Carrier Gallery Styling Start Here
=========================================== */
.carrier-gallery-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-img-text{
text-align: center;
width: 1024px;
font-size: var(--font-subtitle);
margin-bottom: 30px;
}

.carrier-gallery-item img {
    width: 100%;
    clip-path: shape(from 30px 0%,
            hline to 100%,
            vline to 100%,
            line to 0% 100%,
            line to 0% 30px,
            line to 30px 30px,
            close);
}

.carrier-gallery-content {
    padding: 100px 80px;
    display: flex;
    justify-content: center;
}

.carrier-gallery-content h3 {
    font-size: var(--font-hero-second);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--color-story-text-1);
    width: 90%;
}

/* ===========================================
    Carrier Gallery Styling End Here
=========================================== */


/* ===========================================
        Join Team Styling Start Here
=========================================== */

.container.join-team-wrapper {
    padding: 0 !important;
    background: linear-gradient(rgba(226, 226, 226, 0.3), rgba(226, 226, 226, 0.3)),
        url('../media/img/service-texture.webp') top right/contain repeat;
}

.join-team-wrapper .content-subtitle-wrapper {
    padding: 30px 80px 30px 100px !important;
    margin: 0;
}

.join-team-wrapper .content-subtitle-wrapper .content-subtitle {
    color: var(--color-secondary);
    width: 7%;
}

.join-team-wrapper h2 {
    font-size: var(--font-carriers-page-hero-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-secondary);
    padding: 10px 80px;
    border-bottom: 1px solid var(--color-border-line-3);
    border-top: 1px solid var(--color-border-line-3);
}


.carrier-jobs-wrapper {
    padding: 20px 80px;
}


.carrier-jobs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border-line-3);
}

.carrier-jobs-item:nth-child(2) {
    padding: 20px 0;
    border-bottom: none;
}


.carrier-jobs-content h3 {
    font-size: var(--font-carriers-job-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-slide-text);
}

.carrier-jobs-content ul {
    list-style-type: square;
    color: var(--color-slide-text);
    display: flex;
    gap: 40px;
    margin-left: 20px;
}

.carrier-jobs-content ul li {
    font-size: var(--font-subtitle);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.carrier-jobs-content ul li::marker {
    font-size: 25px;
}

.job-popup-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.job-popup-overlay.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.job-popup-box {
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    position: relative;
	overflow: visible;
}

.job-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
	    color: #ffffff;
    padding: 30px !important;
    font-size: 30px;
	font-family: var(--font-text)
    transition: background-color 0.3s ease;
}

.job-popup-close:hover {
    background-color: var(--color-red-btn-hover);
}

.job-popup-inner {
    display: flex;
    overflow-y: auto;
}


.job-popup-content {
    width: 60%;
    padding: 50px 40px;
    border-right: 1px solid var(--color-border-line-3);
    background: linear-gradient(rgba(210, 210, 210, 0.3), rgba(210, 210, 210, 0.3)),
        url('../media/img/service-texture.webp') top right/contain repeat;
}

.job-popup-content .counter-shape {
    margin-bottom: 20px;
}

.job-popup-title {
    font-size: var(--font-carriers-job-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--color-secondary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-line-3);
}

.job-popup-section {
    margin-bottom: 20px;
}

.job-popup-section .content-subtitle-wrapper {
    margin-bottom: 20px;
}

.job-popup-section .content-subtitle-wrapper li {
    font-size: var(--font-subtitle);
    letter-spacing: 0.04em;
    color: var(--color-secondary);
}

.job-popup-list {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 2;
    color: var(--color-secondary);
    gap: 10px;
}

.job-popup-form {
    width: 40%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(rgba(235, 235, 235, 0.3), rgba(235, 235, 235, 0.3)),
        url('../media/img/service-texture.webp') top right/contain repeat;
}


/* =======================================================================================================================
                                            Contact Us Page Styling Start Here
======================================================================================================================= */

.contact-us-page .hero {
    height: auto;
}

.contact-us-page .hero-content {
    padding: 100px 0 200px 0;
}

.contact-us-page .hero-content-wrapper {
    height: 100% !important;
    justify-content: flex-start;
    gap: 80px;
}

.contact-us-page .hero-breadcrumbs {
    margin: 0;
}

.hero-title-wrapper {
    background: var(--color-primary);
    width: 100%;
}

.contact-us-page .hero-title {
    font-size: var(--font-about-us-hero-title);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 10px 80px;
    border-top: 1px solid var(--color-border-line);
    border-bottom: 1px solid var(--color-border-line);
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 80px;
}

.contact-details-item {
    width: fit-content;
    padding: 30px;
    border-right: 1px solid var(--color-border-line);
}

.contact-details-item:nth-child(1) {
    padding-left: 0;
}


.contact-details-item:nth-child(3) {
    border: none;
}

.contact-details-item a {
    color: var(--color-text);
    text-decoration: none;
}

.contact-us-page .hero-content .content-subtitle {
    color: var(--color-text) !important;
}

.contact-details-item a h5 {
    font-size: var(--font-counter-text);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.contact-us-page .counter-wrapper-box {
    height: fit-content;
}

.contact-us-page .counter-wrapper-box .content-subtitle-wrapper {
    width: 30%;
}

.contact-us-page .counter-wrapper-box .content-subtitle-wrapper .content-subtitle {
    width: 40%;
}

.contact-form {
    width: 70%;
}

.contact-us-page .project-content-title{
	color: var(--color-story-text-1);
}

.contact-us-page .project-slider{
    background: var(--color-secondary)!important;
}


.contact-us-page .project-slide-arrow {
    background: var(--color-secondary) !important;
    position: relative;
    clip-path: shape(from 0% 0%,
            line to 100% 0%,
            line to 100% 86%,
            line to 98% 86%,
            line to 98% 100%,
            line to 2% 100%,
            line to 2% 86%,
            line to 0% 86%,
            close);
}

/* =======================================================================================================================
                                           Single Project Page Styling Start Here
======================================================================================================================= */


/* ===========================================
              Hero Styling Start Here
=========================================== */



.single-project-page .hero-bg {
    bottom: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 75%;
	height: 65%
}

.single-project-hero-bg{
    filter: grayscale(100%);
}
.single-project-page .hero-breadcrumbs {
    margin: 0 !important;
}

.single-project-page .hero-content {
    padding: 100px 0;
}

.single-project-page .project-details-subtitle {
    padding: 0 80px;
    color: var(--color-text);
}

.single-project-page .project-details-subtitle .achievements-card-shape {
    background-color: var(--color-text) !important;
}

.single-project-page .hero-title-wrapper {
    background: none;
}

.single-project-page .hero-title {
    font-size: var(--font-counter-numbers);
    letter-spacing: 0.04em;
    font-weight: 400;
    line-height: 1;
    padding: 0 80px;
}

.single-project-page .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: start !important;
    padding: 0;
    gap: 0;
}

.single-project-page .contact-details .contact-details-item {
    width: 25% !important;
    padding: 20px 80px !important;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-line-3) !important;
}

.single-project-page .contact-details .contact-details-item .content-subtitle {
    color: var(--color-text) !important;
}

.single-hero-btn {
    padding: 0 80px;
}


/* ===========================================
            Hero Styling End Here
=========================================== */



/* ===========================================
           About Styling Start Here
=========================================== */
.single-project-page .project-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-project-page .project-page-wrapper .single-about-project-details {
    font-size: var(--font-about-us-story-text);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-story-text-1);
    width: 82%;
    text-align: center;
    align-self: center;
}

.img-content-wrapper {
    display: flex;
    gap: 80px;
}

.img-content-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%);
}

.img-content-wrapper .single-img-1 {
    width: 30%;
    clip-path: shape(from calc(100% - 20px) 0%,
            hline to 0%,
            vline to 100%,
            hline to 100%,
            vline to 20px,
            line to calc(100% - 20px) 20px,
            close);
}

.img-content-wrapper .single-img-2 {
    margin-top: 100px;
    width: 30%;
    clip-path: shape(from 20px 0%,
            hline to 100%,
            vline to 100%,
            line to 0% 100%,
            line to 0% 20px,
            line to 20px 20px,
            close);
}

.single-content-wrapper {
    width: 40%;
}

.single-content-wrapper p {
    font-family: "TT Lakes Neue Trial", sans-serif;
    font-size: var(--font-subtitle);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 30px 0;
}

.single-content-wrapper h2 {
    font-size: 112px;
    letter-spacing: 0.04em;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}

.single-project-page .img-content-wrapper .project-details-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-project-page .project-details-subtitle .achievements-card-shape {
    background: var(--color-text) !important;
}

.single-project-page .project-details-subtitle .project-details-subtitle-text {
    font-size: var(--font-counter-text);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-text) !important;
}

/* ===========================================
           About Styling End Here
=========================================== */




/* ===========================================
        Single Gallery Styling Start Here
=========================================== */

.single-gallery .project-wrapper {
    padding-top: 40px;
}

.single-gallery .project-content-upper {
    border-top: 1px solid var(--color-border-line-3);
}



/* ===========================================
       Single Gallery Styling Start Here
=========================================== */

.single-gallery .project-content-title {
    font-size: clamp(45px, calc(47px + (208 - 47) * ((100vw - 375px) / (1440 - 375))), 204px);
	color: var(--color-story-text-1);
    font-weight: 400;
    text-align: center;
    line-height: 1.2em;
    letter-spacing: 0.04em;
    padding: 0 80px 15px 80px;
    border-bottom: 1px solid var(--color-border-line-3);
}


/* ===========================================
       Single Gallery Styling End Here
=========================================== */



/* ===========================================
    Single Projecty CTA Styling Start Here
=========================================== */

.single-project-page .spacing {
    height: 50px;
}

.single-project-page .achievements-wrapper::before {
    background: var(--ach-bg) center / cover no-repeat;
}

.single-project-page .achievements-card {
    width: 47%;
    padding: 30px 40px 30px 65px;
    ;
}

/* ===========================================
    Single Projecty CTA Styling End Here
=========================================== */


/* ===========================================
    Related Projects Styling Start Here
=========================================== */

.single-project-page .project-content-title{
	font-size: clamp(45px, calc(47px + (190 - 47) * ((100vw - 375px) / (1440 - 375))), 190px);
	color: var(--color-story-text-1);
}

.single-project-page .project-slider {
    background: var(--color-secondary) !important;
}

.single-project-page .project-slide-arrow {
    background: var(--color-secondary) !important;
    position: relative;
    clip-path: shape(from 0% 0%,
            line to 100% 0%,
            line to 100% 86%,
            line to 98% 86%,
            line to 98% 100%,
            line to 2% 100%,
            line to 2% 86%,
            line to 0% 86%,
            close);
}

.single-project-btns{
	display: flex;
	gap: 20px;
}

/* ===========================================
    Related Projects Styling End Here
=========================================== */