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

body,
html {
  height: 100%;
  width: 100%;
  overscroll-behavior: none;
}

body {
  background: #fff;
  color: #101010;
  font-family: 'Inter Tight', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1 {
  font-size: clamp(5rem, 15cqi, 9rem);
  letter-spacing: -0.03em;
  font-weight: lighter;
  line-height: 1.1;
}

h2 {
  font-size: clamp(3.8rem, 9cqi, 7rem);
  letter-spacing: -0.03em;
  font-weight: lighter;
  line-height: 0.9;
}

h3 {
  font-size: clamp(3.2rem, 6cqi, 5rem);
  letter-spacing: -0.02em;
  font-weight: lighter;
  line-height: 1;
}

h4 {
  font-size: clamp(2rem, 4cqi, 3.8rem);
  letter-spacing: -0.02em;
  font-weight: lighter;
  line-height: 1.15;
}

h5 {
  font-size: clamp(1.7rem, 3.5cqi, 2.2rem);
  font-weight: lighter;
  letter-spacing: -0.01em;
  line-height: 1;
}

p {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.bold {
  font-weight: bold;
}

@media (max-width: 320px) {
  h1 {
    font-size: clamp(3.5rem, 15cqi, 9rem);
  }
  h2 {
    font-size: clamp(3rem, 9cqi, 7rem);
  }
  h3 {
    font-size: clamp(2rem, 6cqi, 5rem);
  }
  h4 {
    font-size: clamp(1.6rem, 4cqi, 3.8rem);
  }
  h5 {
    font-size: clamp(1.2rem, 3.5cqi, 2.2rem);
  }
}
::-moz-selection {
  color: #fff;
  background: #535353;
}

::selection {
  color: #fff;
  background: #535353;
}

section {
  width: 100%;
  overflow-x: hidden;
}

#container {
  width: 100%;
  height: 100%;
  padding: 0 4rem;
}

a {
  text-decoration: none;
  color: #101010;
}

/* Break Points */
@media (max-width: 768px) {
  #container {
    padding: 0 2rem;
  }
}
@media (max-width: 540px) {
  #container {
    padding: 0 1rem;
  }
}
/* Smooth Scroller */
.site-main.no_scroll {
  height: 100vh;
  overflow: hidden;
  position: fixed;
}

/* Progress Bar */
.progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #fff;
  mix-blend-mode: difference;
  z-index: 20;
}

/* Underline Link */
.underLine_Link {
  position: relative;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
  display: inline-block;
}
.underLine_Link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5%;
  background: #fff;
  mix-blend-mode: difference;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.underLine_Link:hover::before {
  transform: scale(1);
}

/* button */
.btn {
  position: relative;
  display: block;
  border: 1.5px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  padding: 12px 24px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  mix-blend-mode: difference;
}
.btn span {
  z-index: 2;
  mix-blend-mode: difference;
  position: relative;
  color: #fff;
}
.btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -100%;
  background: #fff;
  z-index: 1;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.btn:hover::before {
  bottom: 0%;
  border-radius: 0;
}

/* Parallax Image */
.parallax_img {
  overflow: hidden;
  position: relative;
}
.parallax_img img {
  position: absolute;
  top: -2%;
  left: 0;
  height: 120%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.loader {
  position: fixed;
  width: 100vw;
  height: 200vh;
  pointer-events: none;
  background-color: #101010;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.is-transitioning {
  pointer-events: none;
  cursor: progress;
}

nav a {
  position: fixed;
  font-size: 1rem;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
  font-weight: 600;
  letter-spacing: -0.04em;
}
nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5%;
  background: #fff;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
nav a:hover::before {
  transform: scale(1);
}
nav a:nth-child(1) {
  top: 1.5rem;
  left: 2rem;
  line-height: 1;
}
.nav-logo-svg { display: none; }
.nav-home-text { display: inline; }
nav a:nth-child(2) {
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
nav a:nth-child(3) {
  right: 2rem;
  top: 1.5rem;
}
nav a:nth-child(4) {
  left: 2rem;
  bottom: 1.5rem;
}
nav a:nth-child(5) {
  right: 2rem;
  bottom: 1.5rem;
}

/* Non-home pages: always show SVG logo (desktop + mobile) */
nav a:nth-child(1).logo-page {
  display: flex;
  align-items: center;
}
nav a:nth-child(1).logo-page .nav-logo-svg {
  display: block;
}
nav a:nth-child(1).logo-page .nav-home-text {
  display: none;
}

@media (max-width: 768px) {
  nav a {
    display: none;
  }
  nav a:nth-child(1) {
    display: flex;
    align-items: center;
    top: 1rem;
    left: 1rem;
    bottom: auto;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  nav a:nth-child(1).nav-logo--visible,
  nav a:nth-child(1).logo-page {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-logo-svg { display: block; }
  .nav-home-text { display: none; }
}

/* Burger button — 2×2 grid, 44px touch target */
.burger {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 200;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  box-sizing: content-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.burger {
  mix-blend-mode: difference;
}
.burger span {
  display: block;
  width: 8.5px;
  height: 8.5px;
  background: white;
  pointer-events: none;
}

@media (max-width: 768px) {
  .burger {
    display: grid;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #101010;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  gap: 2rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.mobile-nav a {
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.mobile-nav.is-open {
  pointer-events: all;
}
.social {
  background: #fff;
  padding: 8rem 0;
  /* Marquee */
  /* Items */
}
@media (max-width: 540px) {
  .social {
    padding: 4rem 0;
  }
}
.social .marquee {
  width: 100vw;
  max-width: 100%;
  height: 12rem;
  overflow-x: hidden;
  position: relative;
}
.social .marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 100s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.social .social_wrapper {
  padding-top: 5rem;
}
.social .social_wrapper .item {
  display: block;
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
}
.social .social_wrapper .item #container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.social .social_wrapper .item #container i {
  font-size: 2rem;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out;
}
.social .social_wrapper .item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #101010;
  transform: scaleY(0);
  transition: transform 0.3s ease-in-out;
}
.social .social_wrapper .item:hover {
  color: #fff;
}
.social .social_wrapper .item:hover #container {
  padding: 0 7rem;
}
.social .social_wrapper .item:hover #container i {
  font-size: 2rem;
  transform: rotate(0deg);
}
.social .social_wrapper .item:hover .overlay {
  transform: scaleY(1);
}
.social .social_wrapper .item:last-child {
  border-bottom: none;
}

/* breakPoints */
@media (max-width: 768px) {
  .social .social_wrapper .item:hover #container {
    padding: 0 4rem;
  }
}
@media (max-width: 540px) {
  .social .marquee {
    height: 7rem;
  }
  .social .social_wrapper {
    padding-top: 2rem;
  }
  .social .social_wrapper .item {
    padding: 1.5rem 0;
  }
  .social .social_wrapper .item #container i {
    font-size: 1.5rem;
  }
  .social .social_wrapper .item:hover #container {
    padding: 0 2rem;
  }
  .social .social_wrapper .item:hover #container i {
    font-size: 1.5rem;
  }
}
footer {
  background: #101010;
  color: #fff;
  padding: 10rem 0 0 0;
}
footer #container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
}
footer #container .footer_header .footer_heading {
  text-align: center;
}
footer #container .footer_header .footer_btns_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 5rem;
}
footer #container .footer_header .footer_btns_wrapper a {
  font-size: 1.2rem;
  padding: 26px 52px;
}
footer #container .footer_bottom {
  width: 100%;
  max-width: 960px;
  border-top: 1px solid #333333;
  text-align: center;
  padding: 2rem 0;
}
footer #container .footer_bottom P:last-child {
  opacity: 0.2;
  margin-top: 1rem;
}

/* breakPoints */
@media (max-width: 768px) {
  footer #container {
    gap: 8rem;
  }
}
@media (max-width: 620px) {
  footer {
    padding: 7rem 0 0 0;
  }
  footer #container {
    gap: 5rem;
  }
  footer #container .footer_header .footer_btns_wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  footer #container .footer_header .footer_btns_wrapper a {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    padding: 1.4rem 0;
  }
}
.title_heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 540px) {
  .title_heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
/* =================== Hero =================== */
.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 4vh, 4.5rem);
  position: relative;
  background: #fff;
  padding: 2rem;
}

.hero_logo img {
  width: clamp(120px, 12.4vw, 238px);
  height: auto;
  display: block;
}

.hero_copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 2.5vh, 2.5rem);
  text-align: center;
}

.header h1 {
  font-size: clamp(2.5rem, 5.2vw, 6.25rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  word-spacing: 0;
}

.hero_sub {
  font-size: clamp(1rem, 1.67vw, 2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  opacity: 0.4;
  margin-top: 0;
}

@media (max-width: 768px) {
  /* Release scroll container on mobile — JS handles it, but CSS as backup */
  .scrollbar-container {
    height: auto !important;
    overflow: visible !important;
  }

  .header {
    height: 95vh;
    height: 95svh;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem 2.5rem;
    gap: 0;
  }

  .hero_logo img {
    width: 150px;
  }

  .hero_copy {
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    width: 100%;
  }

  .header h1 {
    font-size: 2.5rem;
    letter-spacing: -0.04em;
  }

  .hero_sub {
    font-size: 1rem;
  }
}

.about {
  background: #101010;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about {
    padding: 4rem 0;
  }
}
.about #container {
  max-width: 960px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.expertise {
  background: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .expertise {
    padding: 4rem 0;
  }
}
.expertise .expertise_wrapper {
  padding-top: 5rem;
}
.expertise .expertise_wrapper .elem {
  position: relative;
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  cursor: pointer;
}
.expertise .expertise_wrapper .elem .title {
  display: flex;
  gap: 10px;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}
.expertise .expertise_wrapper .elem .overlay {
  width: 100%;
  height: 100%;
  background: #101010;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all 0.3s ease;
}
.expertise .expertise_wrapper .elem:hover {
  color: #fff;
}
.expertise .expertise_wrapper .elem:hover .overlay {
  top: 0;
}
.expertise .expertise_wrapper .elem:last-child {
  border: none;
}

#fixed-img {
  height: 29vw;
  width: 23vw;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: fixed;
  z-index: 10;
  left: 55%;
  top: 20%;
  display: block;
  pointer-events: none;
  opacity: 0;
}
#fixed-img.visible {
  opacity: 1;
}

/* BreakPoints */
@media (max-width: 768px) {
  #fixed-img {
    display: none;
  }
  .expertise .expertise_wrapper .elem {
    height: 120px;
    padding: 0 2rem;
  }
}
@media (max-width: 540px) {
  .expertise .expertise_wrapper .elem {
    height: 120px;
    padding: 0 1rem;
  }
}
.projects {
  background: #101010;
  color: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .projects {
    padding: 4rem 0;
  }
}
.projects #container .case_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5rem;
  column-gap: 2rem;
  padding-top: 5rem;
}
.projects #container .case_wrapper .work_case {
  display: block;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}
.projects #container .case_wrapper .work_case > div {
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.projects #container .case_wrapper .work_case > div img:nth-child(1) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.projects #container .case_wrapper .work_case:hover > div img:nth-child(1) {
  transform: scale(1.04);
}
.projects #container .case_wrapper .work_case > div img:nth-child(2) {
  opacity: 0;
}
.projects #container .case_wrapper .work_case h5 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
.projects #container .case_wrapper .work_case p {
  margin-top: 0.35rem;
  opacity: 0.5;
}

@media (max-width: 680px) {
  .projects #container .case_wrapper {
    grid-template-columns: 1fr;
  }
  .projects #container .case_wrapper .work_case > div {
    max-height: 400px;
  }
}
.Belief {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .Belief {
    padding: 4rem 0;
  }
}
.Belief #container > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Belief #container > div h5 {
  max-width: 960px;
  width: 100%;
}
.Belief #container > div h5:nth-child(2) {
  margin-top: 2rem;
}

.playground {
  background: #101010;
  color: #fff;
  height: 100vh;
}
.playground #container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
  position: relative;
}
.playground #container .horizontal_scroll {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10rem;
  width: 176vw;
  height: 60vh;
}
.playground #container .horizontal_scroll img {
  flex-shrink: 0;
  width: 22vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 35px;
}
.playground #container .horizontal_scroll img:nth-child(1) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(2) {
  transform: rotate(5deg);
}
.playground #container .horizontal_scroll img:nth-child(3) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(4) {
  transform: rotate(5deg);
}
.playground #container .horizontal_scroll img:nth-child(5) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(6) {
  transform: rotate(5deg);
}
.playground #container .horizontal_scroll img:nth-child(7) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(8) {
  transform: rotate(5deg);
}

/* BreakPoints */
@media (max-width: 1440px) {
  .playground #container .horizontal_scroll {
    width: 232vw;
  }
  .playground #container .horizontal_scroll img {
    width: 29vw;
  }
}
@media (max-width: 1040px) {
  .playground #container {
    gap: 10rem;
  }
  .playground #container .horizontal_scroll {
    width: 320vw;
    max-height: 550px;
  }
  .playground #container .horizontal_scroll img {
    width: 40vw;
  }
}
@media (max-width: 768px) {
  .playground #container .horizontal_scroll {
    width: 440vw;
    max-height: 550px;
  }
  .playground #container .horizontal_scroll img {
    width: 55vw;
  }
}
@media (max-width: 540px) {
  .playground #container .horizontal_scroll {
    width: 560vw;
    max-height: 400px;
    gap: 5rem;
  }
  .playground #container .horizontal_scroll img {
    width: 70vw;
  }
}
.work_Cnt {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .work_Cnt {
    padding: 4rem 0;
  }
}
.work_Cnt #container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.work_Cnt #container .work_case {
  display: block;
  min-width: 0;
}
.work_Cnt #container .work_case > div {
  height: 60vh;
  position: relative;
  overflow: hidden;
}
.work_Cnt #container .work_case > div img:nth-child(1) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.work_Cnt #container .work_case:hover > div img:nth-child(1) {
  transform: scale(1.04);
}
.work_Cnt #container .work_case > div img:nth-child(2) {
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  border-radius: 20px;
}
.work_Cnt #container .work_case h5 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
.work_Cnt #container .work_case p {
  margin-top: 0.35rem;
}
.card-client {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.4;
  margin-top: 1rem;
}
.ext-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.35em;
  opacity: 0.5;
  flex-shrink: 0;
}

/* BreakPoints */
@media (max-width: 1040px) {
  .work_Cnt #container .work_case > div {
    max-height: 450px;
  }
  .work_Cnt #container .work_case > div img:nth-child(2) {
    border-radius: 15px;
  }
}
@media (max-width: 680px) {
  .work_Cnt {
    margin-top: 2rem;
  }
  .work_Cnt #container {
    grid-template-columns: 1fr;
    row-gap: 5rem;
    -moz-column-gap: 0rem;
         column-gap: 0rem;
  }
  .work_Cnt #container .work_case > div {
    max-height: 400px;
  }
}
.about_header {
  height: 100vh;
  background: #fff;
  position: relative;
}
.about_header #container {
  display: flex;
  align-items: center;
}
.about_header #container h2 {
  max-width: 960px;
}

.about_header_img .parallax_img {
  height: 100vh;
  overflow: hidden;
}

/* Breakpoints */
@media (max-width: 1040px) {
  .about_header_img .parallax_img {
    height: 80vh;
  }
}
.about_goals {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_goals {
    padding: 4rem 0;
  }
}
.about_goals #container h5 {
  max-width: 960px;
  width: 100%;
}
.about_goals #container .img_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
  gap: 5rem;
}
.about_goals #container .img_wrapper .parallax_img {
  height: 60vh;
  width: 25vw;
  border-radius: 30px;
}
.about_goals #container .img_wrapper .parallax_img:nth-child(2) {
  margin-top: 8rem;
}

/* Breakpoints */
@media (max-width: 1040px) {
  .about_goals #container .img_wrapper {
    gap: 2rem;
  }
  .about_goals #container .img_wrapper .parallax_img {
    width: 35vw;
    max-height: 500px;
  }
}
@media (max-width: 820px) {
  .about_goals #container .img_wrapper {
    gap: 2rem;
  }
  .about_goals #container .img_wrapper .parallax_img {
    width: 40vw;
    max-height: 400px;
  }
}
@media (max-width: 540px) {
  .about_goals #container .img_wrapper {
    gap: 1rem;
    flex-direction: column;
    margin-top: 5rem;
  }
  .about_goals #container .img_wrapper .parallax_img {
    width: 100%;
    max-height: 400px;
    border-radius: 20px;
  }
  .about_goals #container .img_wrapper .parallax_img:nth-child(2) {
    margin-top: 0;
  }
}
.about_weDo {
  background: #101010;
  color: #fff;
}
.about_weDo #container .borderSeprator {
  background: #333333;
}

.about_awwards {
  background: #fff;
  color: #101010;
}
.about_awwards #container .borderSeprator {
  background: #d9d9d9;
}

.about_weDo,
.about_awwards {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_weDo,
  .about_awwards {
    padding: 4rem 0;
  }
}
.about_weDo #container h3,
.about_awwards #container h3 {
  width: 100%;
  max-width: 800px;
}
.about_weDo #container .para,
.about_awwards #container .para {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_weDo #container .para > div,
.about_awwards #container .para > div {
  max-width: 900px;
  width: 100%;
}
.about_weDo #container .para > div h5:nth-child(2),
.about_awwards #container .para > div h5:nth-child(2) {
  margin-top: 2rem;
}
.about_weDo .parallax_img,
.about_awwards .parallax_img {
  height: 100vh;
  margin-top: 8rem;
  border-radius: 50px;
}
.about_weDo .parallax_img img,
.about_awwards .parallax_img img {
  filter: brightness(80%);
}

/* BreakPoitns */
@media (max-width: 1040px) {
  .about_weDo .parallax_img,
  .about_awwards .parallax_img {
    margin-top: 8rem;
    max-height: 600px;
  }
}
@media (max-width: 540px) {
  .about_weDo .parallax_img,
  .about_awwards .parallax_img {
    margin-top: 5rem;
    max-height: 500px;
    border-radius: 20px;
  }
}
.about_clients {
  background: #101010;
  color: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_clients {
    padding: 4rem 0;
  }
}
.about_clients #container h3 {
  max-width: 960px;
}
.about_clients #container .brands {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}
.about_clients #container .brands .brand_wrapper {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  gap: 8rem;
}
.about_clients #container .brands .brand_wrapper img {
  width: 120px;
  filter: brightness(40%);
  transition: filter 0.3s ease-in-out;
}
.about_clients #container .brands .brand_wrapper img:hover {
  filter: brightness(100%);
}

/* BreakPoints */
@media (max-width: 540px) {
  .about_clients #container .brands {
    margin-top: 5rem;
  }
  .about_clients #container .brands .brand_wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .about_clients #container .brands .brand_wrapper img {
    width: 100px;
  }
}
@media (max-width: 320px) {
  .about_clients #container .brands .brand_wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.expertise_header {
  height: 100vh;
  background: #fff;
  position: relative;
}
.expertise_header #container {
  display: flex;
  align-items: center;
}
.expertise_header #container h2 {
  max-width: 960px;
}

.expertise_header_img .parallax_img {
  height: 100vh;
  overflow: hidden;
  filter: brightness(80%);
}

@media (max-width: 1040px) {
  .expertise_header_img .parallax_img {
    height: 80vh;
    overflow: hidden;
    filter: brightness(80%);
  }
}
.expertise_container {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .expertise_container {
    padding: 4rem 0;
  }
}
.expertise_container #container .txt h3 {
  width: 100%;
  max-width: 960px;
}
.expertise_container #container .txt .para {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise_container #container .txt .para h5 {
  width: 100%;
  max-width: 960px;
}

/* Cards */
.expertise_cards_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  margin-top:3rem;
}
.expertise_cards_container .col {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.expertise_cards_container .col .card {
  width: 25vw;
  cursor: pointer;
}
.expertise_cards_container .col .card .parallax_img {
  width: 100%;
  height: 60vh;
  border-radius: 0;
  filter: brightness(90%);
}
.expertise_cards_container .col .card p {
  margin-top: 1rem;
}
.expertise_cards_container .col .card p.tag {
  font-weight: bold;
}
.expertise_cards_container .col .card h5 {
  margin-top: 1rem;
}
.expertise_cards_container .col .card .card-cta {
  margin-top: 1.5rem;
  border-color: #101010;
  color: #101010;
  mix-blend-mode: normal;
}
.expertise_cards_container .col .card .card-cta span {
  color: #101010;
  mix-blend-mode: normal;
}
.expertise_cards_container .col .card .card-cta::before {
  background: #101010;
}
.expertise_cards_container .col:nth-child(2) {
  margin-top: 30rem;
}

/* BreakPoints */
@media (max-width: 1040px) {
  .expertise_cards_container {
    gap: 5rem;
  }
  .expertise_cards_container .col .card {
    width: 35vw;
  }
  .expertise_cards_container .col .card .parallax_img {
    max-height: 450px;
  }
}
@media (max-width: 820px) {
  .expertise_cards_container {
    gap: 2rem;
  }
  .expertise_cards_container .col {
    width: 100%;
  }
  .expertise_cards_container .col .card {
    width: 100%;
  }
  .expertise_cards_container .col:nth-child(2) {
    margin-top: 15rem;
  }
}
@media (max-width: 540px) {
  .expertise_cards_container {
    gap: 4rem;
    flex-direction: column;
    padding-top: 5rem;
  }
  .expertise_cards_container .col {
    gap: 4rem;
  }
  .expertise_cards_container .col .card .parallax_img {
    max-height: 380px;
  }
  .expertise_cards_container .col:nth-child(2) {
    margin-top: 0;
  }
}
#playground {
  height: 100vh;
  overflow: hidden;
  background: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
}
#playground #gallery {
  height: 90%;
  width: 90%;
  position: relative;
}
#playground #gallery .frame {
  position: absolute;
  width: 12vw;
  height: 280px;
  z-index: 1;
  border-radius: 20px;
}
#playground #gallery .frame:hover {
  z-index: 2;
}
#playground #gallery .frame:nth-child(1) {
  top: 0%;
  left: 10%;
  background: url("../../../assets/playground1.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(2) {
  bottom: 1%;
  left: 40%;
  background: url("../../../assets/playground2.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(3) {
  top: 20%;
  left: 25%;
  background: url("../../../assets/playground3.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(4) {
  top: 10%;
  left: 40%;
  background: url("../../../assets/playground4.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(5) {
  bottom: 0%;
  left: 11%;
  background: url("../../../assets/playground5.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(6) {
  top: 50%;
  left: 28%;
  background: url("../../../assets/playground6.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(7) {
  top: 0%;
  right: 8%;
  background: url("../../../assets/playground7.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(8) {
  bottom: 0%;
  right: 8%;
  background: url("../../../assets/playground8.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(9) {
  top: 40%;
  left: 75%;
  background: url("../../../assets/playground9.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(10) {
  top: 18%;
  left: 0%;
  background: url("../../../assets/playground10.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(11) {
  bottom: 8%;
  right: 28%;
  background: url("../../../assets/playground11.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(12) {
  top: 50%;
  left: 4%;
  background: url("../../../assets/playground12.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(13) {
  top: 21%;
  right: 0%;
  background: url("../../../assets/playground13.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(14) {
  top: 31%;
  right: 40%;
  background: url("../../../assets/playground14.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(15) {
  top: 5%;
  right: 25%;
  background: url("../../../assets/playground15.webp") no-repeat 50% 50%;
  background-size: cover;
}

@media (max-width: 1660px) {
  #playground #gallery .frame {
    width: 14vw;
  }
}
@media (max-width: 1040px) {
  #playground #gallery .frame {
    width: 18vw;
  }
}
@media (max-width: 560px) {
  #playground #gallery .frame {
    width: 40vw;
    height: 200px;
  }
}
/* Mousemove Parallax Block For Header */
.block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  width: 40px;
  height: 100vh;
  background: #fff;
  mix-blend-mode: difference;
}

/* Animated Numbering */
.numbering {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 5rem;
}
.numbering p {
  opacity: 0.3;
}

/* Border Seprator */
.borderSeprator {
  height: 1px;
  width: 100%;
  background: #d9d9d9;
  margin: 3rem 0;
}

/* BreakPoints */
@media (max-width: 540px) {
  .block {
    width: 25px;
    height: 60vh;
  }
  .borderSeprator {
    margin: 2rem 0;
  }
}

/* ===================== Work Item Page ===================== */
.work_item_header {
  padding: 10rem 0 4rem;
}
.work_item_header .back_link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  text-decoration: none;
  color: inherit;
  margin-bottom: 3rem;
  transition: opacity 0.3s;
}
.work_item_header .back_link:hover { opacity: 1; }
.wi-client-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1rem;
}
.work_item_header .wi-title {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.wi-niche-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.3;
  margin-top: 0.75rem;
}
.work_item_hero {
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
}
.work_item_hero .parallax_img img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}
.work_item_body {
  padding: 6rem 0;
}
.wi-meta {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}
.wi-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.wi-meta-item span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.wi-meta-item strong {
  font-size: 1rem;
  font-weight: 500;
}
.wi-url {
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wi-short-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  max-width: 700px;
  margin-top: 3rem;
  font-weight: 500;
}
.wi-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 700px;
  margin-top: 1.5rem;
  opacity: 0.8;
}
.work_item_gallery #container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem 0;
}
.wi-gallery-item {
  width: 100%;
}
.wi-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .wi-meta { gap: 2rem; flex-wrap: wrap; }
}

/* ===================== Service Popup ===================== */
#service-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.sp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(4px);
}

.sp-panel {
  position: relative;
  background: #fff;
  max-width: 580px;
  width: 100%;
  padding: 3rem;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}

.sp-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='%23010101'/%3E%3Cpath d='M15 5L5 15' stroke='white' stroke-width='2'/%3E%3Cpath d='M15 15L5 5' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  opacity: 1;
  transition: transform 0.2s ease;
}
.sp-close:hover { transform: rotate(20deg); }

.sp-index {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.35;
  text-transform: uppercase;
}

.sp-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  margin-top: 0.4rem;
  line-height: 1.1;
}

.sp-flagship {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #101010;
  padding: 0.2em 0.6em;
  margin-left: 0.8rem;
  vertical-align: middle;
  opacity: 0.5;
  font-weight: 400;
}

.sp-sub {
  margin-top: 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.65;
}

.sp-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 1.8rem 0;
}

.sp-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.55;
}

.sp-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e8e8e8;
}

.sp-meta-item span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 0.3rem;
}

.sp-meta-item strong {
  font-size: 1rem;
  font-weight: 500;
}

.sp-cta {
  margin-top: 2rem;
}

@media (max-width: 540px) {
  .sp-panel {
    padding: 2rem 1.5rem;
    max-height: 85vh;
  }
  .sp-meta {
    flex-direction: column;
    gap: 1rem;
  }
}
}/*# sourceMappingURL=main.css.map */