html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

body {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-size: 100%;
    color: var(--brand-color);
    background: var(--bg-color);
    font-family: var(--font-one);
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-text-size-adjust: none;
    font-weight: 300;
    transition: background 0.2s linear;
}

::placeholder {
    color: var(--secondry-color);
    font-family: var(--font-one);
    font-weight: 400;
}

.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

:focus {
    outline: 0;
}

a,
a:link,
a:visited {
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: var(--brand-color);
    font-family: var(--font-one);
}

a:before {
    transition: all 0.3s ease-in-out;
}

a:after {
    transition: all 0.3s ease-in-out;
}

img {
    border: none;
    max-width: 100%;
}

ul,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-one);
}

p {
    margin: 0;
    line-height: 1.3;
    font-size: 1.2em;
    color: var(--brand-color);
    font-weight: 300;
    font-family: var(--font-one);
}

h1 {
    margin: 0;
    padding: 0;
    color: var(--brand-color);
    line-height: 1.1;
    font-size: 7em;
    font-weight: 400;
    /* overflow: hidden; */
    font-family: var(--font-two);
}

h2 {
    margin: 0;
    padding: 0;
    color: var(--brand-color);
    line-height: 1;
    font-size: 4em;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-two);
}

h3 {
    margin: 0;
    padding: 0;
    color: var(--bg-color);
    font-size: 2.3em;
    line-height: 1;
    font-weight: 700;
    font-family: var(--font-one);
    text-transform: uppercase;
}

h4 {
    margin: 0;
    padding: 0;
    color: var(--color-white);
    line-height: 1.3;
    font-size: 1.1em;
    font-weight: 600;
    font-family: var(--font-one);
    text-transform: uppercase;
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
    content: " ";
    display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
    clear: both;
}

.outer {
    width: 100%;
    padding: 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.container {
    width: 95%;
    margin: 0 auto;
    max-width: 1500px;
}

.small-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.small-container.ex {
    width: 90%;
    max-width: 790px;
    margin: 0 auto;
}

.small-container.xl {
    width: 90%;
    max-width: 910px;
    margin: 0 auto;
}

.medium-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

:root {
    --font-one: "Inter", sans-serif;
    --brand-color: #fff;
    --bg-color: #0B101C;
    --main-color: #db4a2b;
}


/* This CSS ensures Lenis takes full control of scrolling */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.btn {
    font-weight: 400;
    font-size: 0.8em;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--main-color);
    border: none;
    cursor: pointer;
    transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    border-radius: 5px;
}

.btn:after {
    content: "";
    position: absolute;
    transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-2 {
    color: var(--brand-color);
}

.btn-2:after {
    width: 0;
    height: 100%;
    background: var(--brand-color);
    top: 0;
    left: 0;
    z-index: 1;
    transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 5px;
}

.btn-2 span {
    position: relative;
    z-index: 2;
}

.btn-2:hover {
    color: var(--bg-color) !important;
}

.btn-2:hover:after {
    width: 100%;
}


/* Make the container full-screen */

.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
}


/* Background video */

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover entire area */
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* Black overlay */

.video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B101C;
    background: radial-gradient(circle, rgba(11, 16, 28, 0.25) 0%, rgba(11, 16, 28, 0.36) 58%, rgba(11, 16, 28, 0.81) 100%);
    z-index: 2;
}

.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0B101C;
    background: linear-gradient(0deg, rgba(11, 16, 28, 1) 0%, rgba(11, 16, 28, 0) 56%, rgba(11, 16, 28, 1) 100%);
    z-index: 2;
}


/* Content on top of video */

.video-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    top: 45%;
    transform: translateY(-45%);
    max-width: 1220px;
    margin: 0 auto;
    width: 90%;
}

.fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    text-transform: uppercase;
}

.video-content h1 b {
    font-style: italic;
    color: var(--main-color);
}

.video-content b.right-text {
    display: inline-block;
    margin: 0 0 0 200px;
}


/* Text */

.pin-text p {
    font-size: 2.5em;
    line-height: 1.1;
    font-weight: 400;
}

.pin-text {
    height: auto;
    /* let content dictate height */
    padding-top: 50px;
    /* small spacing from top */
}


/* Lines */

.line {
    display: inline-block;
    color: #161D2F;
}


/* First line visible initially */

.line.active {
    opacity: 1;
    color: #161D2F;
}

.fadeup {
    opacity: 0;
    transform: translateY(20px);
    margin: 10px 0;
}

.w-100 {
    width: 100%;
}

.homedesign-wrap-text {
    margin: 400px 0 0 0;
}

section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.section2 {
    background: var(--bg-color);
    background: linear-gradient(0deg, rgba(11, 16, 28, 1) 0%, rgba(11, 16, 28, 1) 80%, rgba(11, 16, 28, 1) 90%, rgba(11, 16, 28, 0) 100%);
    height: auto;
}

.zoom-text {
    position: relative;
    z-index: 10;
    /* above pinned section */
    text-align: center;
}

.char {
    display: inline-block;
    transform-origin: center center;
}

.pin-text {
    margin-top: 100px !important;
    /* or smaller value */
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service {
    padding: 100px 0;
}

.zoom-text {
    text-transform: none;
    /* 🔥 capitalize text */
}

.services {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6-column grid */
    gap: 16px;
    padding: 250px 0;
}


/* First row → 50% */

.service-card:nth-child(1),
.service-card:nth-child(2) {
    grid-column: span 3;
    /* 3/6 = 50% */
}


/* Second row → 33% */

.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 2;
    /* 2/6 = 33.33% */
}


/* CARD */

.service-card {
    background: var(--brand-color);
    padding: 80px 50px 40px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.5s cubic-bezier(.4, 0, .2, 1), transform 0.5s cubic-bezier(.4, 0, .2, 1);
    height: 350px;
    display: flex;
    align-items: flex-end;
}

.icon {
    position: absolute;
    top: 40px;
    right: 45px;
    display: block;
}


/* ICON */

.service-card svg {
    width: auto;
    height: auto;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    display: block;
    transition: stroke 0.5s cubic-bezier(.4, 0, .2, 1);
    transform: scale(0.9);
    transform-origin: top right;
    transition: transform 0.4s ease;

}

.service-card.is-active:hover .icon {
    display: block;
}

.service-card:hover .icon {
    display: none;
}

.service-card:hover .icon-hover {
    display: block;
}

.service-card .icon-hover {
    display: none;
    position: absolute;
    top: 40px;
    right: 45px;
}


/* TEXT */

.service-card h3 {
    margin-top: 60px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    transition: color 0.5s cubic-bezier(.4, 0, .2, 1);
}


/* 🔥 HOVER EFFECT */

.service-card:hover {
    background-color: var(--main-color);
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card.is-active.is-hovered .icon {
    display: none;
}

.service-card.is-hovered:hover svg path {
    fill: var(--brand-color);
}

.services .service-card:nth-child(1).is-active.is-hovered svg path {
    fill: transparent;
}

.service-card.is-active h3 {
    color: var(--brand-color);
}

.service-card.is-active svg path {
    fill: var(--brand-color);
}

.service-card.is-active svg {
    fill: var(--brand-color);
}

.service-card.is-active {
    background-color: var(--main-color);
}

.service-card svg path {
    fill: var(--main-color);
}

.clients-block {
    color: rgb(66, 66, 66);
    font-size: 1em;
    transition: background 0.3s ease;
    background: #fff;
    padding: 100px 0;
}

.clients-block01 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(66, 66, 66);
    font-size: 25px;
    transition: background 0.3s ease;
    background: #141111;
}

.artemas-text {
    font-size: 2.3em;
    line-height: 1.4;
    font-weight: 400;
    max-width: 900px;
}

.static {
    color: #0B101C;
}

.reveal span {
    opacity: 0.25;
    /* initial faded look */
    color: #0B101C;
    display: inline-block;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
    padding: 100px 0 50px 0;
    max-width: 950px;
}

.count {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

h3.count {
    color: #0B101C;
    font-size: 2.3em;
    font-weight: 400;
}

.stat p {
    color: #0B101C;
    font-size: 2.3em;
    font-weight: 400;
    opacity: 0.5;
}

.spacer {
    height: 100vh;
}

.pin-section {
    height: 100vh;
    overflow: hidden;
}

.swiper {
    height: 100%;
}

.slide {
    display: flex;
    align-items: center;
}

.content {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    padding: 80px;
    gap: 80px;
}

.left h2 {
    font-size: 32px;
    line-height: 1.4;
    max-width: 520px;
}

.slide .left p {
    margin-top: 20px;
    max-width: 550px;
    line-height: 1.1;
    color: #fff;
}

.read {
    display: inline-block;
    margin-top: 20px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 20px;
}

.progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 60px;
}

.progress .line {
    width: 50%;
    height: 1px;
    background: #aaa;
}

.slide-nav::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--brand-color);
    left: 0;
    top: 52px;
    z-index: 1;
}

.slide-nav {
    position: relative;
}

.slide-nav button {
    border: 0;
    color: #fff;
    font-size: 2em;
}

.slide-nav button.prev,
.slide-nav button.next {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--brand-color);
    color: #000;
    font-size: 1.2em;
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: none;
}

.slide-nav button.next {
    background: #fff;
}

.slide-nav {
    margin: 100px 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.right .image {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.brand {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 48px;
    font-family: serif;
}


/* Text reveal */

.swiper .reveal span {
    display: inline-block;
    transform: translateY(40px);
    opacity: 0;
}

.swiper .left {
    padding: 100px 0;
}

.swiper .left p {
    font-size: 2.5em;
}

.swiper .right {
    margin: 0 0 100px 0;
}

.case-studies {
    background-color: var(--bg-color);
    display: block;
    text-align: center;
    padding: 100px 0 0 0;
}

.case-studies .content {
    text-align: left;
}

.case-studies h2 {
    font-size: 10em;
}

.collection {
    margin: 0 0;
    text-align: center;
    will-change: transform, opacity;
}

.collection h3 {
    color: var(--brand-color);
    text-transform: capitalize;
    font-size: 4em;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    width: 90%;
}

.collection p {
    color: var(--brand-color);
    text-transform: capitalize;
    font-size: 1.3em;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    width: 90%;
    padding: 20px 0 30px 0;
}

.branding-details .video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B101C;
    background: radial-gradient(circle, rgba(11, 16, 28, 0.25) 0%, rgba(11, 16, 28, 0.36) 58%, rgba(11, 16, 28, 0.81) 100%);
    z-index: 2;
}

.branding-details .video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B101C;
    background: linear-gradient(0deg, rgba(11, 16, 28, 1) 0%, rgba(11, 16, 28, 0.39) 52%, rgba(11, 16, 28, 1) 100%);
    z-index: 2;
}

.insights {
    width: 100%;
    padding: 100px 0;
    background-color: var(--brand-color);
}

.insights h4 {
    color: var(--bg-color);
    font-size: 3em;
    text-transform: capitalize;
    font-weight: 400;
    text-align: left;
}

.insight-list {
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.insight-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.9s ease;
    /* 👈 zoom time */
}

.insight-top {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.insight-top b {
    color: var(--bg-color);
}

.insight-top span {
    color: var(--bg-color);
    opacity: 0.6;
}

.insight-list h5 {
    color: var(--bg-color);
    font-size: 1.5em;
    font-weight: 500;
}

.insight-detail {
    text-align: left;
}

.insights {
    text-align: center;
}

.insight-list {
    margin: 30px 0 50px 0;
}

.insight-card {
    cursor: pointer;
}

.insight-img {
    overflow: hidden;
    height: 250px;
}

.insight-card:hover .insight-img img {
    transform: scale(1.15);
    /* zoom level */
}

.footer {
    position: relative;
    background: #070b14;
    overflow: hidden;
    padding: 200px 0;
}


/* SVG START POSITION */

.footer-svg {
    position: absolute;
    right: -70%;
    top: -30%;
    width: 100%;
    transform: translateY(-200px);
    opacity: 0;
    left: inherit;
}

.footer-content h2 {
    max-width: 1000px;
    margin: 0 0 20px 0;
    font-size: 6em;
    font-weight: 500;
}

.address {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 100px;
    margin: 200px 0 0 0;
    max-width: 90%;
}

.address-block {
    font-size: 1.3em;
    font-weight: 500;
}

.address-block span {
    display: block;
    margin: 10px 0;
}

.address-block span.add {
    opacity: 0.6;
}

.address-block a.add {
    opacity: 0.6;
}

.address-block a.add:hover {
    border-bottom: 2px solid #999;
}

.bottom-footer {
    margin: 50px 0 0 0;
    border-top: 2px solid #999;
    padding: 50px 0 0 0;
    justify-content: space-between;
    justify-content: space-between;
    display: flex;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bottom-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.bottom-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-text a {
    transition: all 0.8s ease;
}

.bottom-text a:hover {
    display: flex;
    align-items: center;
    gap: .5em;
    padding: 10px 30px;
    line-height: 1;
    font-weight: 500;
    background: var(--main-color);
    color: #fff;
    border-radius: 6.25rem;
    text-decoration: none;
    white-space: pre;
    transition: all 0.8s ease;
    cursor: pointer;
    position: relative;
}

a.btn.btn-2.outline::after {
    background: var(--bg-color);
}

a.btn.btn-2.outline:hover {
    color: var(--brand-color)
}

.swiper-slide .left b {
    display: block;
    font-size: 1.7em;
    opacity: 0.7;
    margin: 20px 0 50px 0;
    max-width: 500px;
}

.heading-one:nth-child(2) {
    text-align: center;
    opacity: 0.8;
}

.heading-one {
    max-width: 1300px;
    margin: 0 auto;
    line-height: 1.1;
}

.heading-one {
    margin: 0 auto;
}

.heading-one {
    padding: 50px 0;
}

.heading-one {
    margin: 0 auto;
    padding: 0;
    color: var(--brand-color);
    line-height: 1.1;
    font-size: 8em;
    font-weight: 500;
    text-transform: uppercase;
}

.heading-one:nth-child(1) {
    font-weight: 700;
    text-align: left;
    font-style: italic;
}

.heading-one:nth-child(3) {
    font-weight: 700;
    text-align: right;
    font-style: italic;
    padding: 0 15px 0 0;
}

.hero {
    line-height: 1.15;
    color: #fff;
}

.hero .line {
    display: flex;
    gap: 16px;
    overflow: hidden;
    color: #fff;
}

.word {
    display: inline-block;
    transform: translateY(120%);
    transition: transform 0.6s ease;
    white-space: nowrap;
}


/* Accent color (orange / gradient) */

.word.accent {
    color: var(--main-color);
    font-style: italic;
}


/* Reveal state */

.word.show {
    transform: translateY(0);
}

.hero .line:nth-child(2) {
    margin: 0 0 0 100px;
}

.branding-details .hero .line {
    display: flex;
    gap: 16px;
    overflow: hidden;
    color: #fff;
    justify-content: center;
}

.branding-details .hero .line:nth-child(2) {
    margin: 0 0 0 0;
}

button.prev.is-active {
    background-color: #939393;
    color: #fff;
}

.blur-text {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
    will-change: opacity, transform, filter;
}


/* Active */

.blur-text.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.client-desc strong {
    color: #1E1E1E;
    font-size: 1.5em;
    font-weight: 600;
}

p.black-para {
    color: #1E1E1E;
    font-size: 1.4em;
    margin: 20px 0 50px 0;
    font-weight: 400;
}

.client-desc b {
    color: #1E1E1E;
    font-size: 1.4em;
    margin: 30px 0 0 0;
    display: block;
}

.client-desc span {
    color: #9C9C9C;
    font-size: 1.2em;
    opacity: 0.6;
}

.client-desc .grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.client-desc .right img {
    height: inherit;
}

.client-desc {
    border-top: 1px solid var(--main-color);
    padding: 50px 0;
}

.client-desc .right video {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.video-wrapper {
    overflow: hidden;
}

.reveal-video {
    width: 100%;
    height: auto;
    transform: scale(1.2);
    opacity: 0;
}

.breadcrumbs {
    width: 100%;
    padding: 12px 0;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    font-size: 1.3em;
    color: #999;
    position: relative;
}

.breadcrumbs li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.breadcrumbs li a:hover {
    color: #000;
}


/* Separator */

.breadcrumbs li::after {
    content: "/";
    margin-left: 10px;
    color: #ccc;
}

.breadcrumbs li:last-child::after {
    display: none;
}


/* Active */

.breadcrumbs li.active {
    color: var(--main-color);
    font-weight: 600;
}

.breadcrumbs {
    width: 100%;
    padding: 12px 0;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    font-size: 14px;
    color: #999;
    position: relative;
}

.breadcrumbs li a:hover {
    color: #000;
}


/* Separator */

.breadcrumbs li::after {
    content: "/";
    margin-left: 10px;
    color: #ccc;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.inner-banner .line.active {
    color: var(--brand-color);
}

.inner-banner h2 {
    font-size: 7em;
    font-weight: 500;
}

.inner-banner .pin-text {
    margin-bottom: 130vh;
}

.about-brand-grid {
    display: flex;
    margin: 180px 0 250px 0;
    gap: 20px;
    align-items: center;
}

.image-reveal {
    position: relative;
}

.image-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    filter: blur(8px);
}

.pin-wrapper.about-project-content {
    position: relative;
    height: 100vh;
    /* ONLY one viewport */
}

.about-projects {
    height: 100vh;
    overflow: hidden;
    z-index: 3;
    position: relative;
}

.about-project-content {
    position: relative;
    background: url(../img/bg-image.jpg) no-repeat center / cover;
}

.about-project-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B101C;
    background: radial-gradient(circle, rgba(11, 16, 28, 0.25) 0%, rgba(11, 16, 28, 0.36) 58%, rgba(11, 16, 28, 0.81) 100%);
    z-index: 2;
}

.about-project-content .panel {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}

.about-project-content h3 {
    color: var(--main-color);
    font-size: 10em;
}

.about-project-content p {
    color: var(--brand-color);
    font-size: 4em;
}

.about-desc {
    background-color: var(--brand-color);
    padding: 200px 0;
}

h3.black-text {
    text-transform: capitalize;
    font-size: 6em;
    font-weight: 400;
    margin: 0 0 40px 0;
}

h3.black-text span {
    color: var(--main-color);
    font-style: italic;
    font-weight: 500;
}

.about-desc p.artemas-text span.reveal {
    margin: 30px 0 0 0;
    display: block;
}

.about-desc p.artemas-text {
    font-size: 1.8em;
    max-width: 900px;
}

.team-pin {
    height: 100vh;
}

.team-inner {
    display: block;
    height: 100%;
}

.big-content-text {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h3.big-text {
    font-size: 6em;
    font-weight: 500;
    color: var(--brand-color);
    text-transform: capitalize;
}

h3.big-text span {
    color: var(--main-color);
    font-style: italic;
    font-weight: 500;
}

.big-content-text b {
    font-size: 1.5em;
    color: #fff;
    margin: 0 0 30px 0;
    display: block;
}

.team-images-viewport {
    margin: 200px 0 0 0;
}

.teams {
    padding: 200px 0 0 0;
}

.team-images-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-images-track {
    display: flex;
    gap: 32px;
    height: 100%;
    align-items: stretch;
    /* 👈 IMPORTANT */
}

.team-images-track .img {
    height: 100%;
    max-height: 80vh;
    /* safe padding from top/bottom */
    width: 30%;
    /* control card width */
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

.team-images-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 
}


/* MAIN */

.values-section {
    padding: 200px 0 0 0;
}

.values-wrap {
    display: flex;
    gap: 170px;
}


/* LEFT STICKY */

.values-left {
    width: 40%;
    position: sticky;
    top: 120px;
    /* 🔑 controls stick position */
    align-self: flex-start;
}

.values-left p {
    font-size: 2.3em;
    font-weight: 400;
    padding: 40px 0 40px 0;
    line-height: 1.1;
}

.values-left p b {
    color: var(--main-color);
    font-style: italic;
}


/* RIGHT SCROLL */

.values-right {
    width: 60%;
}

.value-card {
    min-height: 220px;
    margin-bottom: 48px;
    padding: 40px;
    border: 1px solid var(--main-color);
}

.value-content {
    margin: 100px 0 0 0;
}

.values-right h5 {
    color: var(--brand-color);
    font-size: 1.8em;
    padding: 0 0 20px 0;
}

.values-right p {
    color: #A1A1A1;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.2;
    max-width: 300px;
}

.value-icon {
    text-align: right;
}

.inner-banner.no-pin-banner {
    width: 100%;
    margin: 250px 0 100px 0;
}

.inner-banner.no-pin-banner h1 {
    font-size: 6em;
}

.design-services {
    padding: 200px 0;
    background-color: var(--brand-color);
}

.design-services p.black-para {
    max-width: 880px;
    font-size: 2em;
    margin: 0 0 0 0;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 100px 0 0 0;
}

.service-list h4 {
    color: #000;
    font-size: 1.7em;
    text-transform: capitalize;
    font-weight: 500;
    max-width: 350px;
    padding: 15px 0;
}

.service-list p {
    color: #262323;
    font-size: 1.3em;
    font-weight: 300;
    max-width: 400px;
    opacity: 0.7;
}

.service-layout .reveal-blur img {
    max-width: 200px;
}

.service-layout .reveal-blur {
    display: none;
}

.design-process {
    padding: 100px 0;
}

.workflow-wrapper {
    padding: 100px 0;
    color: #ffffff;
}

.workflow-row {
    display: grid;
    grid-template-columns: 30% 60%;
    padding: 40px 0;
    position: relative;
}

.workflow-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}


/* vertical divider */

.workflow-row::before {
    content: "";
    position: absolute;
    left: 220px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
}

.workflow-iconbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.workflow-iconbox img {
    width: 100px;
    height: 100px;
}

.workflow-text {
    max-width: 520px;
}

.workflow-title {
    font-size: 1.7em;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.workflow-desc {
    font-size: 1.3em;
    line-height: 1.6;
    color: var(--brand-color);
    opacity: 0.7;
}


/* responsive */

.contact-address {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
    border-bottom: 1px solid var(--main-color);
}

.contact-address b {
    display: block;
    color: var(--main-color);
    font-size: 1em;
    font-weight: 400;
    padding: 0 0 10px 0;
}

.contact-address p {
    font-size: 1em;
    line-height: 1.5;
    max-width: 200px;
}

.get-touch {
    padding: 100px 0;
    background-color: var(--brand-color);
}

.touch-head {
    display: flex;
    gap: 50px;
}

.touch-head img {
    max-width: 180px;
}


/* FIELD */

.form-group {
    position: relative;
    margin-bottom: 20px;
}


/* INPUT & TEXTAREA */

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d9d9d9;
    padding: 14px 0 8px;
    font-size: 15px;
    background: transparent;
    outline: none;
}


/* LABEL */

.form-group label {
    position: absolute;
    left: 0;
    top: 14px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
}


/* UNDERLINE */

.form-group .line {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--main-color);
    transition: width 0.4s ease;
}


/* FOCUS EFFECT */

.form-group input:focus~.line,
.form-group textarea:focus~.line {
    width: 100%;
}


/* FLOAT LABEL FIX */

.form-group input:focus~label,
.form-group textarea:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -8px;
    font-size: 12px;
    color: var(--main-color);
}


/* TEXTAREA HEIGHT */

.form-group textarea {
    resize: none;
}

input[type="submit"] {
    border: 0;
    text-align: left;
    font-weight: 400;
    font-size: 0.8em;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--main-color);
    border: none;
    cursor: pointer;
    transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 5px;
    color: var(--brand-color);
    width: inherit;
}

.inner-banner.no-pin-banner h1 b {
    font-weight: 400;
    color: var(--main-color);
    font-style: italic;
}

.why-tech .service-list {
    grid-template-columns: 1fr 1fr 1fr;
}

.why-tech .service-list h4 {
    font-size: 1.3em;
    max-width: 300px;
    font-weight: 400;
}

.life-tech .blur-text {
    font-size: 2em;
    color: #D1D1D1;
    max-width: 850px;
    padding: 50px 0;
}


/* ROW */

.apply-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px 0;
}


/* TEXT */

.apply-item span {
    font-size: 1.1em;
    color: #000;
}


/* BUTTON */

.apply-btn {
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 0.8em;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--font-one);
}

.apply-btn:hover {
    background: var();
}


/* GRID */

.parallax-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 0 0;
}


/* CARD */

.parallax-item {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.parallax-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


/* FULL WIDTH */

.parallax-full {
    height: 80vh;
    overflow: hidden;
    position: relative;
    margin: 30px 0 0 0;
}

.parallax-full img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--main-color);
    padding: 80px;
    position: relative;
    align-items: center;
    margin: 30px 0 0 0;
}

.customer-say {
    margin: 30px 0 0 0;
}

.customer-left strong {
    display: block;
    font-size: 1.4em;
    font-weight: 600;
}

.customer-left p {
    padding: 20px 0 50px 0;
}

.customer-left b {
    display: block;
    font-size: 1.3em;
    font-weight: 400;
}

.customer-left span {
    display: block;
}

.qts-right {
    position: absolute;
    right: 0;
}

.clients-pin {
    min-height: 100vh;
    height: auto;
    background: #fff;
    display: flex;
    align-items: center;
}

.swiper.clients-swiper {
    margin: 100px 0 0 0;
}

.clients-inner {
    width: 100%;
}

.clients-swiper {
    width: 100%;
}
.clients-swiper,
.clients-swiper .swiper-wrapper,
.clients-swiper .swiper-slide {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.clients-swiper .swiper-slide {
  transition: transform 0.4s ease;
}
.client-card {
    max-width: 360px;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.swiper-slide-active {
    opacity: 1;
}

.client-card h4 {
    font-weight: 500;
    margin-bottom: 16px;
    line-height:1.2;
    color: #000;
    text-transform: capitalize;
    font-size: 1.2em;
}

.client-card p {
    color: #000;
    line-height: 1.2;
    font-size: 1em;
}

.stars {
    color: #ff9c2a;
    margin-top: 20px;
    font-size: 18px;
}

.work-list {
    margin: 0 0 200px 0;
}

.work-detail-small {
    margin: 50px 0 0 0;
}

.work-detail-small p {
    max-width: 500px;
    font-weight: 500;
}

.work-detail-small a {
    color: var(--main-color);
    text-decoration: underline;
    display: block;
}

.work-detail-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.objective-section {
    background: var(--main-color);
    color: #fff;
    padding: 50px 40px;
    margin: 50px 0 0 0;
}


/* Top meta */

.objective-meta {
    display: flex;
    font-size: 13px;
    opacity: 0.9;
    justify-content: space-between;
}

.objective-meta span {
    font-weight: 500;
}

.meta-line {
    margin: 20px 0 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}


/* Main content */

.objective-content {
    display: grid;
    grid-template-columns: 43% 40%;
    gap: 40px;
    align-items: flex-start;
}

.objective-symbol {
    text-align: center;
}

.objective-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.objective-text p {
    font-size: 1.5em;
}


/* Divider */

.content-line {
    margin: 50px 0 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}


/* Bottom items */

.objective-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    font-size: 15px;
    opacity: 0.95;
}

.design-services .client-desc p.black-para {
    font-size: 1.4em;
    padding: 20px 0;
}

.design-services .client-desc {
    padding: 60px 0 0 0;
    margin: 30px 0 0 0;
}

div#mobileNav {
    height: auto;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: #0b0b0b;
    display: grid;
    place-items: center;
    z-index: 9999;
}

.page-loader.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.orbit-loader {
    width: 72px;
    height: 72px;
    position: relative;
}

.orbit-loader span {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    transform-origin: 36px 36px;
    animation: orbit 1.4s linear infinite;
}

.orbit-loader span:nth-child(2) {
    animation-delay: .15s;
}

.orbit-loader span:nth-child(3) {
    animation-delay: .3s;
}

.orbit-loader span:nth-child(4) {
    animation-delay: .45s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(28px);
    }

    to {
        transform: rotate(360deg) translateX(28px);
    }
}

.blog-content {
    margin-top: 30px;
    padding: 0 0 100px 0;
}


/* Paragraph */

.blog-content p {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 22px;
}


/* Strong text */

.blog-content strong {
    color: #ffffff;
    font-weight: 600;
}


/* Headings */

.blog-content h3 {
    font-size: 1.5em;
    margin: 40px 0 14px;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-content h4 {
    font-size: 14px;
    margin: 30px 0 12px;
    color: #9ca3af;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}


/* Lists */

.blog-content ul,
.blog-content ol {
    margin: 18px 0 28px 20px;
    padding: 0;
}

.blog-content li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #fff;
    list-style: disc;
}


/* Links */

.blog-content a {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: 500;
}


/* Blockquote */

.blog-content blockquote {
    margin: 40px 0;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--main-color);
    font-style: italic;
    color: #e5e7eb;
    border-radius: 8px;
}

.mega-image img {
    width: 80%;
    height: 300px;
    object-fit: cover;
    margin: 100px 0 0 0;
    display: block;
    mix-blend-mode: luminosity;
}

.service-layout strong {
    color: #000;
    display: block;
    margin: 20px 0 0 0;
    font-size: 1.1em;
    font-weight: 600;
}

.service-layout strong span {
    font-weight: 300;
}


/* FLEX SYSTEM */

.service-sec .flex {
    display: flex;
}

.service-sec .gap-xl {
    gap: 150px;
}

.service-sec .col {
    flex: 1;
}

.service-sec .col-right {
    max-width: 600px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}


/* TITLES */

.service-sec .title {
    font-weight: 500;
}

.service-sec .title-xl {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
}


/* LIST */

.service-sec .list {
    list-style: none;
}

.list-divider .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    padding: 25px 0;
    border-bottom: 1px solid #e6e6e638;
    cursor: pointer;
}


/* TEXT */

.list-text {
    transition: transform 0.3s ease;
}


/* ARROW */

.list-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
    /* default */
}


/* HOVER EFFECT */

.list-item:hover .list-text {
    transform: translateX(12px);
}

.list-item:hover .list-arrow {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
    /* ⏱ delay for arrow */
}


/* RESPONSIVE */

@media (max-width: 1024px) {
    .flex {
        flex-direction: column;
    }

    .title-xl {
        font-size: 48px;
    }

    .col-right {
        max-width: 100%;
    }
}

.media-box video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.service-sec {
    width: 100%;
    padding: 200px 0;
}

.service-bg-white {
    background-color: #fff;
}

.service-bg-white .service-sec .title-xl {
    color: #000;
}

.service-divide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
}

.media-box .parallax-item {
    height: 70vh;
}

.service-bg-white .title-xl {
    color: #000;
}

.service-bg-white .list-text {
    color: #000;
}

.service-bg-white .list-divider .list-item {
    border-bottom: 1px solid #3d3a3a38;
}

.service-bg-white .list-arrow {
    color: #000;
}

.service-page .inner-banner.no-pin-banner {
    margin: 250px 0 0 0;
}

.service-layout:last-child .reveal-blur.reveal-show {
    text-align: center;
}

.service-layout:last-child .reveal-blur.reveal-show img {
    max-width: 225px;
}

.insights .btn-2:hover {
    color: #fff !important;
}

.insights a.btn.btn-2.outline::after {
    background: #000;
}

.mobile-text-fade-in {
    display: none;
}

.mobile-big-text {
    display: none;
}

.case-studies-mobile {
    display: none;
}

.no-pin-margin {
    margin-top: 0 !important;
}

.service-layout {
    position: relative;
}

.service-layout::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #db4a2b;
    border-radius: 100px;
    top: 0;
    margin: 0 0 10px 0;
    display: block
}

.service-layout img {
    display: none;
}
.clients-section {
    background: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.client-card {
  
    border: 1px solid #e5e5e5;
  

    display: flex;
    align-items: center;
    justify-content: left;
   flex-wrap: wrap;
    padding: 60px;
    transition: all .4s ease;
}

.client-card:nth-child(4n) {
    border-right: 0;
}

.client-card img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: .4s ease;
}

.client-card:hover {
    background: #fafafa;
}

.client-card:hover img {
    filter: grayscale(0);
    transform: scale(1.08);
}
.impact-menu li a {
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger {
   visibility: hidden;
}
.parallex-video-wrap {
     width: 100%;
    height: 100%; /* your required height */
    overflow: hidden;
}
.parallex-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


 
/* =========================
   THANK YOU POPUP
========================= */

.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.thankyou-overlay.active {
  opacity: 1;
  visibility: visible;
}

.thankyou-popup {
  position: relative;
  width: 100%;
  max-width: 440px;

  background: #fff;
  border-radius: 24px;
  padding: 45px 35px 35px;

  text-align: center;

  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);

  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.thankyou-overlay.active .thankyou-popup {
  transform: translateY(0) scale(1);
}


/* SUCCESS ICON */

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-icon circle {
  fill: none;
  stroke: #25D366;
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}

.success-icon path {
  fill: none;
  stroke: #25D366;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.thankyou-overlay.active .success-icon circle {
  animation: circleDraw .7s ease forwards;
}

.thankyou-overlay.active .success-icon path {
  animation: checkDraw .5s .5s ease forwards;
}

@keyframes circleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}


/* TEXT */

.thankyou-popup h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
  color: #111;
  font-weight: 700;
}

.thankyou-popup p {
  margin: 0 auto 28px;
  max-width: 340px;

  font-size: 16px;
  line-height: 1.6;
  color: #666;
}


/* BUTTON */

.popup-button {
  border: 0;
  padding: 13px 32px;

  border-radius: 50px;

  background: #111;
  color: #fff;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: all .25s ease;
}

.popup-button:hover {
  transform: translateY(-2px);
  background: #25D366;
}


/* CLOSE */

.popup-close {
  position: absolute;
  top: 15px;
  right: 18px;

  width: 38px;
  height: 38px;

  border: 0;
  background: transparent;

  font-size: 30px;
  line-height: 1;

  color: #999;
  cursor: pointer;

  transition: .2s;
}

.popup-close:hover {
  color: #111;
}


/* MOBILE */

@media (max-width: 500px) {

  .thankyou-popup {
    padding: 40px 25px 30px;
    border-radius: 20px;
  }

  .thankyou-popup h2 {
    font-size: 28px;
  }

  .thankyou-popup p {
    font-size: 15px;
  }

}
 