/* ------ FONTS ------ */
@font-face {
  font-family: lightFont;
  src: url(../fonts/Light.otf);
}
@font-face {
  font-family: blackFont;
  src: url(../fonts/Black.otf);
}
@font-face {
  font-family: regularFont;
  src: url(../fonts/Regular.otf);
}
@font-face {
  font-family: boldFont;
  src: url(../fonts/Bold.otf);
}
@font-face {
  font-family: extraBoldFont;
  src: url(../fonts/Extrabold.otf);
}
@font-face {
  font-family: semiBoldFont;
  src: url(../fonts/Semibold.otf);
}
@font-face {
  font-family: thinFont;
  src: url(../fonts/Thin.otf);
}
:root {
  --light-font-family: lightFont; /* 1 */
  --black-font-family: blackFont; /* 2 */
  --regular-font-family: regularFont; /* 3 */
  --bold-font-family: boldFont; /* 4 */
  --extraBold-font-family: extraBoldFont; /* 5 */
  --semiBold-font-family: semiBoldFont; /* 6 */
  --thin-font-family: thinFont; /* 7 */
  --white-color: white;
  --black-color: black;
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
}
.container {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
  padding: 0px 10px;
}
.containerHeader {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 70px;
  padding: 35px 10px;
  background: url(../images/headerLayer.svg) no-repeat center center/cover;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.col-1 {
  flex: 1;
}
.col-2 {
  flex: 2;
}
.col-3 {
  flex: 3;
}
.col-4 {
  flex: 4;
}
.col-5 {
  flex: 5;
}
.center {
  text-align: center;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.btn.gold a {
  width: 120px;
  min-height: 40px;
  border-radius: 25px;
  border-width: 1px;
  background: linear-gradient(180deg, #eac553 0%, #887129 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 2px 2px 0px #00000033;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  /* padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px; */
}
.btn.gold a p {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  color: var(--white-color);
  /* text-shadow: 0px 1px 0px 0px #0000001A; */
  text-shadow: 0px 1px 0px #0000001a;
}
.btn.gold a img {
  width: 15px;
}
.btn a:focus {
  transform: scale(0.9);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--regular-font-family), -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--black-color);
}
.mainHeading h1 {
  font-family: var(--bold-font-family);
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0px 4px 12px #0000001a;
  background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 8px;
}
.mainHeading p {
  font-family: var(--semiBold-font-family);
  color: #a5a5aa;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* NOW MAIN CODE STARTS HERE */
header .containerHeader .navBar {
  width: 100%;
  width: 364px;
  min-height: 40px;
  border-radius: 25px;
  padding-top: 12px;
  padding-right: 18px;
  padding-bottom: 12px;
  padding-left: 18px;
  gap: 22px;
  background: linear-gradient(
    180deg,
    rgba(45, 45, 50, 0.6) 0%,
    rgba(18, 18, 21, 0.6) 100%
  );
  box-shadow: 0px 2px 2px 0px #00000033;
}
header .containerHeader .navBar li a {
  gap: 6px;
}
header .containerHeader .navBar li a p {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  color: var(--white-color);
  text-shadow: 0px 1px 0px #0000001a;
}

/* code for hero section */
.heroSection .row {
  background: radial-gradient(
    132.74% 100% at 50% 0%,
    rgba(45, 45, 50, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.heroSection .col-12 {
  background: url(../images/heroBg.svg) no-repeat center center/cover;
  min-height: 516px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 20px;
}

.heroSection .col-12 p.yellowPara {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;

  color: #eac553;
  text-shadow: 0px 1px 0px #0000001a;

  background: linear-gradient(
    180deg,
    rgba(234, 197, 83, 0.15) 0%,
    rgba(136, 113, 41, 0.15) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  max-width: 268px;
  width: 100%;
  min-height: 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.heroSection .col-12 h1 {
  font-family: var(--semiBold-font-family);
  max-width: 619px;
  font-weight: 700;
  font-size: 50px;
  line-height: 110.00000000000001%;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(180deg, #ffffff 58.64%, #999999 116.82%);
  text-shadow: 0px 4px 12px #0000001a;

  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 18px;
}
.heroSection .col-12 p.simplePara {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #a5a5aa;
  text-align: center;
  /* letter-spacing: .7px; */
  margin-bottom: 44px;
}

.heroSection .col-12 .btnGrid {
  gap: 12px;
}
.heroSection .col-12 .btnGrid .btn.black a {
  width: 106px;
  min-height: 40px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2d2d32 0%, #121215 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 2px 2px 0px #00000033;

  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  color: white;
}

/* CODE FOR WRAP COLLAB */

.scroll-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-container .infinite-scroll-wrapper {
  overflow: hidden;
  padding: 40px 0px;
  width: 100%;
  position: relative;
}

.infinite-scroll-wrapper .infinite-scroll-content {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  width: 100%;
  gap: 16px;
}

.infinite-scroll-wrapper .infinite-scroll-items {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-shrink: 0;
  gap: 16px;
}

.infinite-scroll-items .item-wrap {
  position: relative;

  width: 150px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  /* overflow: hidden; */
}
.infinite-scroll-items .item-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
}
.infinite-scroll-items .item-wrap img:hover {
  transform: scale(1.3);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .infinite-scroll-wrapper:hover .infinite-scroll-content {
    animation-play-state: paused;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.col-Marquee h4 {
  font-family: var(--regular-font-family);
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  color: #a5a5aa;
}
img.fomerImage {
  width: 100%;
  /* height: 288px; */
  object-fit: cover;
  margin-top: 50px;
}
.formerClients .container {
  min-height: 524px;
  background: url(../images/fomerBgImage.svg) no-repeat center center/cover;
}
.contact .row {
  padding: 20px;
  min-height: 352px;
  background: url(../images/contactBg.svg) no-repeat center center/cover;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact .row img.contactEnvalope {
  width: 40px;
  height: 32px;
  margin-bottom: 8px;
}
.contact .row h1 {
  max-width: 714px;
  font-family: var(--bold-font-family);
  font-size: 50px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(180deg, #ffffff 58.64%, #999999 116.82%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0px 4px 12px #0000001a;
  margin-bottom: 32px;
}

.contact .row .btnEmail {
  gap: 16px;
}
.contact .row .btnEmail .mail {
  font-family: var(--bold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  color: #eac553;
  text-shadow: 0px 1px 0px #0000001a;
}
.weDo .mainHeading,
.clients .mainHeading {
  margin-bottom: 44px;
}
.weDo .row {
  margin-bottom: 8px;
  gap: 8px;
}
.weDo .row h2 {
  font-family: var(--bold-font-family);
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--white-color);
  text-shadow: 0px 1px 0px #0000001a;
  margin-bottom: 6px;
}
.weDo .row p {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #a5a5aa;
}
.weDo .row img {
  margin-bottom: 12px;
}
.weDo .row .col-2 {
  max-width: 720px;
  width: 100%;
  min-height: 158px;
  padding-top: 26px;
  padding-right: 22px;
  padding-bottom: 26px;
  padding-left: 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1a1a1d 0%, #0d0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0px 2px 2px 0px #00000033;
}
.weDo .row .col-1 {
  max-width: 472px;
  width: 100%;
  min-height: 158px;
  padding-top: 26px;
  padding-right: 22px;
  padding-bottom: 26px;
  padding-left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0px 2px 2px 0px #00000033;

  border-radius: 12px;
}
footer .logoPara a img {
  width: 42px;
  height: 47px;
  margin-bottom: 14px;
}
footer .logoPara p {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #a5a5aa;
}
footer .logoPara {
  margin-bottom: 52px;
}
footer .links {
  gap: 22px;
}
footer .links .subBox p {
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #a5a5aa;
}
footer .links .subBox a p {
  font-family: var(--bold-font-family);
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white-color);
}
footer .links .subBox a {
  gap: 6px;
}
footer .links .subBox a img {
  width: 14px;
  height: 14px;
}
footer .secBox h4 {
  margin-bottom: 16px;
  font-family: var(--bold-font-family);
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -2%;
  text-shadow: 0px 1px 0px #0000001a;
  color: var(--white-color);
}
footer .secBox a {
  margin-bottom: 12px;
  font-family: var(--semiBold-font-family);
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #a5a5aa;
  display: flex;
  gap: 6px;
}
footer .box.rightBox {
  gap: 80px;
}
footer .row,
footer .links {
  flex-wrap: wrap;
  gap: 20px;
}

/* CODE MOBILE MENU */
/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 22px;
  color: #818181;
  display: flex; /* Display block instead of inline */
  align-items: center;
  justify-content: center;
  font-family: var(--bold-font-family);
  margin-bottom: 20px;
  transition: 0.3s; /* Transition effects on hover (color) */
}
.overlay a img {
  width: 22px;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/* CODE FOR SWIPER SECTIOn */

/* Make the container just tall enough for the tallest (active) slide */
.mySwiper {
  width: 100%;
  height: 405px; /* fits the 350px center slide */
  padding: 16px 0; /* optional breathing room */
  cursor: grab;
  will-change: transform;
}

/* ---- Animation utilities ---- */
.animate { opacity: 0; transform: translateY(16px); }
.in-view { opacity: 1 !important; transform: none !important; }
.anim-fade { transition: opacity .6s ease; }
.anim-slide-up { transition: opacity .6s ease, transform .6s ease; }
.anim-zoom { transform: scale(.96); transition: opacity .6s ease, transform .6s ease; }
/* delay helpers */
.delay-0 { transition-delay: 0ms; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* Let slides keep their own heights instead of stretching to full container height */
.mySwiper .swiper-wrapper {
  align-items: center; /* keep different heights aligned nicely */
}

.mySwiper .swiper-slide {
  position: relative;
  /* size rules */
  height: 380px; /* default height for side slides */
  width: auto; /* let Swiper control width */
  flex: 0 0 auto;
  border-radius: 12px;
  transition: height 0.3s ease, transform 0.3s ease;
  will-change: transform, width, height;

  padding-top: 30.6px;
  padding-right: 14.4px;
  padding-bottom: 18px;
  padding-left: 14.4px;
  border-radius: 10.8px;
  background: linear-gradient(180deg, #1a1a1d 0%, #0d0d10 100%);
  border: 0.9px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 1.8px 1.8px 0px #00000033;

  opacity: 0.6;
}

.mySwiper .swiper-slide::after {
  content: "";
  background: url(../images/boxShine-1.svg) no-repeat center center/cover;
  width: 128.80000305175781px;
  height: 128.80000305175781px;
  position: absolute;
  opacity: 0.5;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9;
  pointer-events: none; /* don't block interactions */
}
.mySwiper .swiper-slide.slide-2::after {
  background: url(../images/boxShine-2.svg) no-repeat center center/cover;
}
.mySwiper .swiper-slide.slide-3::after {
  background: url(../images/boxShine-3.svg) no-repeat center center/cover;
}
.mySwiper .swiper-slide.slide-4::after {
  background: url(../images/boxShine-4.svg) no-repeat center center/cover;
}
.mySwiper .swiper-slide .socialLinks .box {
  margin-bottom: 7.2px;
  width: 100%;
  min-height: 36px;
  padding-top: 10.8px;
  padding-right: 12.6px;
  padding-bottom: 10.8px;
  padding-left: 12.6px;
  border-radius: 9px;
  background: linear-gradient(180deg, #0b0b0c 0%, #0d0d0f 100%);
}
.mySwiper .swiper-slide .socialLinks .box h6 {
  font-family: var(--semiBold-font-family);
  font-size: 12.6px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #a5a5aa;
  text-shadow: 0px 0.9px 0px #0000001a;
}
.mySwiper .swiper-slide img.box {
  width: 73.80000305175781px;
  height: 73.80000305175781px;
  margin: auto !important;
  margin-bottom: 14.4px !important;
  line-height: 73.80000305175781px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3.6px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.mySwiper .swiper-slide .topContent h1 {
  margin-bottom: 1.8px;
  font-family: var(--bold-font-family);
  font-size: 16.2px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  text-shadow: 0px 0.9px 0px #0000001a;
  color: var(--white-color);
}
.mySwiper .swiper-slide .topContent p {
  font-family: var(--semiBold-font-family);
  font-size: 12.6px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
  text-shadow: 0px 0.9px 0px #0000001a;
}

.mySwiper .swiper-slide .topContent {
  margin-bottom: 24px;
}
/* Bigger height & width for the centered/active slide */
.mySwiper .swiper-slide-active {
  height: 400px;

  padding-top: 34px;
  padding-right: 16px;
  padding-bottom: 20px;
  padding-left: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1a1a1d 0%, #0d0d10 100%);
  border: 0.9px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 2px 2px 0px #00000033;
  opacity: 1;
}
@media (max-width: 768px) {
  .mySwiper {
    height: 400px;
    padding: 0; /* remove side padding that can cause peeking */
    overflow: hidden;
  }
  .mySwiper .swiper-wrapper {
    align-items: stretch;
  }

  /* Make every slide take full width on mobile */
  .mySwiper .swiper-slide,
  .mySwiper .swiper-slide-active {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 !important;
    height: 400px;
    opacity: 1; /* keep it readable */
  }
  .swiper-button-next,
  .swiper-button-prev {
    color: transparent !important;
    display: none !important;
  }
}

/* widths handled by Swiper breakpoints */
/* default swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #fff; /* white arrows */
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20; /* above shades */
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}
.swiper-button-prev::after {
  content: "";
  background: url(../images/leftArrow.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  z-index: 2;
}
.swiper-button-next::after {
  content: "";
  background: url(../images/rightArrow.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  z-index: 2;
}
.swiper-button-next,
.swiper-button-prev {
  color: transparent !important;
}
/* Ensure arrows are always clickable and above overlays */
.swiper-button-prev,
.swiper-button-next {
  pointer-events: auto;
}
.mySwiper { position: relative; }
/* Optional: nicer pagination dots contrast */
/* .swiper-pagination-bullet { opacity: 0.6; }
    .swiper-pagination-bullet-active { opacity: 1; } */
.clients .row {
  position: relative;
}
.clients .row .shadeLeftBrand {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 102px;
  z-index: 9;
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none; /* don't block arrows */
}
.clients .row .shadeRightBrand {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 102px;
  z-index: 9;
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transform: rotate(180deg);
  pointer-events: none; /* don't block arrows */
}
@media screen and (max-width: 1076px) {
  .weDo .row .col-1,
  .weDo .row .col-2 {
    max-width: 100% !important;
    flex: 1 !important;
  }
}
@media screen and (max-width: 788px) {
  .weDo .row {
    flex-direction: column !important;
  }
  .weDo .row:nth-child(3) {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 660.99px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 660.98px) {
  .mobile {
    display: none !important;
  }
  .contact .row h1,
  .heroSection .col-12 h1 {
    font-size: 35px;
  }

  .containerHeader {
    padding: 30px 10px 10px 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .clients .row .shadeLeftBrand,
  .clients .row .shadeRightBrand {
    /* display: none !important; */
    width: 32px;
  }
}

@media screen and (max-width: 763px) {
  footer .row {
    gap: 56px;
  }
}
