/* Regular */
@font-face {
  font-family: "NeueMontreal";
  src: url("../assets/fonts/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
}

/* Medium */
@font-face {
  font-family: "NeueMontreal";
  src: url("../assets/fonts/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
}

/* Bold */
@font-face {
  font-family: "NeueMontreal";
  src: url("../assets/fonts/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 700;
}

/* RESET & BASE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navBar-wrapper {
  padding-left: 26px;
  padding-right: 26px;
}
body {
  background: #0d0d0d;
  overflow-x: hidden;
}
.main-hero-section {
  padding-top: 17px;
  position: relative;
}
.company-logo img {
  max-width: 100%;
  height: auto;
}
.nav-bg {
  display: none;
}
.nav-link {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 20.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffe880;
  margin: 0 16px 0 16px;
}
.nav-link:hover,
.nav-link:focus {
  color: #ffe880 !important; /* 🔥 keep same color */
  text-decoration: none; /* 🔥 remove underline */
  background: none !important; /* 🔥 remove bg (if any) */
}
.nav-link {
  position: relative; /* 🔥 required */
}
.nav-link.active {
  color: #ffe880 !important;
}
/* ACTIVE DOT */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px; /* adjust spacing */
  transform: translateX(-50%);

  width: 6px;
  height: 6px;
  background: #ffe880;
  border-radius: 50%;
}
.connect-wrapper {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* LEFT RED CIRCLE */
.icon-part {
  width: 90px;
  height: 45px;
  background: #c9002b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 40px;
  font-size: 18px;
  z-index: 0;
  padding-left: 11px;
}

/* RIGHT YELLOW PILL */
.text-part {
  background: #ffe880;
  width: 125px;
  height: 45px;
  margin-left: -45px; /* 👈 THIS merges both */
  border-radius: 50px;
  color: #c9002b;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 20.8px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.icon-part img {
  max-width: 100%;
  height: auto;
}
.colored-circle-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.colored-circle-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 106px);
  position: relative;
  width: fit-content; /* ✅ THIS IS THE FIX */
  margin: 0 auto; /* center it */
}
.hero-content h1 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  leading-trim: NONE;
  line-height: 100px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  perspective: 900px;
}
.hero-content .text-1 {
  color: #ffe880;
  font-size: 98px;
}
.hero-content .text-2 {
  color: #c00039;
  font-size: 98px;
}
.hero-content .text-3 {
  display: inline-block;
  color: #ffe880;
  background: #c00039;
  font-size: 100px;
  padding: 10px;

  transform: rotate(2.37deg); /* 👈 rotate */
  transform-origin: center; /* optional, controls pivot point */
}
.animate-text span {
  opacity: 0;
  display: inline-block;
  animation: letterFade 0.7s ease forwards; /* slower + smoother */
}

@keyframes letterFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in {
  opacity: 0;
}

.slide-in.active {
  opacity: 1;
  animation: slideRotateY 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes slideRotateY {
  0% {
    transform: translateX(-400px) rotateY(-360deg) rotate(2.37deg);
  }
  100% {
    transform: translateX(0px) rotateY(0deg) rotate(2.37deg);
  }
}

/* BASE LINE */
.v-line {
  position: relative;
  width: 1px;
  background: #ffe880;
}

/* DIFFERENT HEIGHTS */
.line-1 {
  height: 339px;
  position: absolute;
  top: 300px;
  left: -116px;
}

.line-2 {
  height: 174px;
  position: absolute;
  left: 100px;
  top: 350px;
}

.line-3 {
  height: 285px;
  position: absolute;
  right: -140px;
  top: 300px;
}

/* TOP DOT */
.v-line::before {
  content: "";
  position: absolute;
  top: -15px; /* 6px gap + 4px radius */
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}

/* BOTTOM DOT */
.v-line::after {
  content: "";
  position: absolute;
  bottom: -15px; /* same logic */
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}

/* APPLY ANIMATION */
.line-1,
.line-3 {
  animation: moveUp 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 200ms;
}

.line-2 {
  animation: moveDown 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* UP MOVEMENT */
@keyframes moveUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-250px);
  }

  100% {
    transform: translateY(0);
  }
}

/* DOWN MOVEMENT */
@keyframes moveDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(150px);
  }

  100% {
    transform: translateY(0);
  }
}
.star-circle-fisrt {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  position: absolute;
  left: 120px;
  bottom: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.star-circle-second {
  width: 101px;
  height: 101px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  position: absolute;
  right: -50px;
  top: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section-container {
  width: 100%;
  height: auto;
  background-image: url("../assets/images/static/girl-with-VR.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-section-container {
  padding-top: 45px;
}
.border-line {
  max-width: 100%;
  height: 1px;
  background: #ffe880;

  position: relative;
  margin: 0 auto; /* ✅ centers horizontally */
}

/* LEFT CIRCLE */
.border-line::before {
  content: "";
  position: absolute;
  left: -15px; /* half of circle to align center */
  top: 50%;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}

/* RIGHT CIRCLE */
.border-line::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}
.about-section-top {
  padding: 0 40px;
  height: 525px;
}
.top-text-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}
.top-text-part h2 {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-size: 60px;
  line-height: 71px;
  letter-spacing: -1.32px;

  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* standard (future support) */
  background-clip: text;
  color: transparent;
}
.top-text-part p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
}
.about-section-bottom {
  width: 100%;
  height: auto;
  margin-top: 130px;
}
.work-feature-card {
  max-width: 100%;
  height: 410px;
  background: #1d1d1d;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-left: 20px;
  cursor: pointer;
}
.feature-card-shadow {
  position: absolute;
  top: 0;
  left: 0;
}
.work-feature-card h3 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffe880;
}
.card-content img {
  margin-top: 155px;
}
/* base hover bg */
.hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* show on hover */
.work-feature-card:hover .hover-bg {
  opacity: 1;
}

/* 👇 different images */
/* Card 1 */
.card-1 .hover-bg {
  background:
    linear-gradient(#15151566, #15151566),
    /* overlay */ url("../assets/images/bgImages/feature-img-2.png"); /* image */

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-2 .hover-bg {
  background:
    linear-gradient(#15151566, #15151566),
    url("../assets/images/bgImages/feature-img-1.png");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-3 .hover-bg {
  background:
    linear-gradient(#15151566, #15151566),
    url("../assets/images/bgImages/feature-img-3.png");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.feature-card-shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.card-content {
  position: relative;
  z-index: 2; /* 🔥 always above */
}

.work-feature-card h3 {
  color: #ffe880;
  transition: 0.4s ease-out;
}

.card-icon {
  margin-top: 155px;
  transition: 0.4s ease-out;
}

/* make icon white */
.work-feature-card:hover .card-icon {
  filter: brightness(0) invert(1);
}
.company-tag-lines {
  padding: 60px 0;
}
.company-tag-lines h1 {
  font-family: "Big Shoulders Inline", sans-serif;
  font-weight: 500;
  font-style: Regular;
  font-size: 166.25px;
  leading-trim: NONE;
  line-height: 160px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffe880;
  text-align: center;
  margin-bottom: 0;
}
.break-sm {
  display: none;
}
.break-xl {
  display: block;
}
.company-tag-lines span {
  display: inline-block;

  width: 10px;
  height: 10px;
  margin: 0 30px;

  background: #ffe880; /* ✅ filled circle */
  border-radius: 50%;

  vertical-align: middle;
}
.works-section {
  background: #c9002b;
  padding: 50px 0;
  color: #fff;
}

/* TEXT */
.carousel .title {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-size: 70px;
  line-height: 74px;
  letter-spacing: -1.32px;

  /* 🔥 Gradient text */
  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* for better support */
  background-clip: text;
  color: transparent;
}

.carousel .desc {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
}
.carousel {
  margin-bottom: 40px;
}

/* TABS */
.tabs {
  display: flex;
  gap: 40px;
}

.tab {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-size: 18px;
  line-height: 20.8px;
  color: #fff;

  position: relative; /* 🔥 needed */
  cursor: pointer;
}

/* ACTIVE LINE */
.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* 🔥 space between text and line */

  width: 100%;
  height: 2px;
  background: #ffe880;
}

/* WRAPPER */
.carousel-wrapper {
  margin-top: 30px;
  position: relative;
}

/* CAROUSEL */
.works-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;

  padding-right: 40px;

  width: calc(100vw - ((100vw - 1320px) / 2));
  margin-left: auto;
}

.works-carousel:active {
  cursor: grabbing;
}

.works-carousel::-webkit-scrollbar {
  display: none;
}

/* CARD */
.work-card {
  width: 374px;
  height: 318px;
  flex-shrink: 0;
  background: #000;
  position: relative;
  display: flex;
}

.work-card img {
  width: 100%;
  height: 186px;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #1d1d1d;
  padding: 15px 15px;
  height: 150px;
}

.overlay h6 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffe880;
  margin-top: 0px;
  margin-bottomd: 6px;
}
.overlay p {
  font-family: "NeueMontreal";
  font-weight: 300;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 18px;
  letter-spacing: 2%;
  margin-bottom: 0px;
  opacity: 0.8;
}
/* BUTTON */
.view-btn {
  background: #ffe880;
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 40px;
}
.what-we-do {
  background: linear-gradient(90deg, #0a0a0a, #1a0008);
  color: #fff;
  padding: 50px 0px;
  font-family: "NeueMontreal", sans-serif;
  position: relative;
}

/* HEADING */
.heading h2 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-size: 90px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}

.heading p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  margin-top: 20px;
}

/* WE / DO BOX STYLE */
.highlight {
  display: inline-block;
  padding: 5px 9px;
  transform: rotate(-1.96deg);
  font-weight: 700;
}

.highlight.yellow {
  width: 132px;
  height: 98px;
  background: #ffe880;
  color: #c00039;
}

.highlight.red {
  background: #c9002b;
  color: #fff;
  transform: rotate(3.09deg);
  width: 110px;
  height: 98px;
}

/* LIST */
.service-list {
  margin-top: 50px;
}

/* ITEM */
.service-item {
  display: flex;
  flex-direction: column; /* ADD THIS */
  justify-content: space-between;
  align-items: stretch; /* CHANGE center → stretch */
  padding: 0; /* CHANGE — control padding inside header instead */
  border-bottom: 1px solid rgba(255, 232, 128, 0.3);
}

/* LEFT SIDE */
.left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.number {
  color: #ff0040;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}

.text {
  color: #ffe880;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 31px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* RIGHT BUTTON */
.plus {
  width: 50px;
  height: 50px;
  background: #ffe880;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #c00039;
  font-size: 30px;
  font-weight: 400;
}

/* ACCORDION BODY */
.service-body {
  display: none;
  padding: 0px 0 21px;
}
.right {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #5f4e12;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-item.open .service-body {
  display: block;
}

/* TOGGLE BUTTON OPEN STATE */
.service-item.open .plus {
  background: #ffe880;
}

/* SUB CARD GRID */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sub-card {
  background: #1d1d1d;
  border: 1px solid #2e2e2e;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  height: 164px;
  position: relative;
}

.sub-card .icon svg {
  width: 38px;
  height: 38px;
  stroke: #bbb;
  fill: none;
  stroke-width: 1.4;
}

.sub-card .label {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-top: 10px;
}
/* fuewbfiwegbfiyweiff */
.service-item:first-child {
  border-top: 1px solid rgba(255, 232, 128, 0.3);
}
/* RESPONSIVE */
@media (max-width: 700px) {
  .sub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* SERVICE HEADER ROW */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.sub-card-shadow {
  position: absolute;
  top: 0;
  left: 0;
}
.shadow-img-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.shadow-img-right {
  position: absolute;
  top: 0;
  right: 0;
}
/* /////////////////// */
.categories-section {
  background: url("../assets/images/static/category-bg-mask.png");
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;
}

.category-heading h2 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-size: 70px;
  line-height: 74px;
  letter-spacing: -1.32px;

  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

.heading p {
  margin-top: 10px;
  color: #ccc;
}

/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.cat-card {
  width: 320px;
  height: 210px;
  background: #c9002b;
  padding: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.cat-card img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  margin-bottom: 10px;
  filter: grayscale(100%);
}

/* TEXT */
.cat-card h4 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffe880;
  margin-top: 10px;
  margin-bottom: 10px;
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.service-item.open .service-body {
  max-height: 500px;
}
.category-heading p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-top: 10px;
  margin-bottom: 0;
}
.img-bg-1 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-1.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-1 {
  background-image: url("../assets/images/static/category-img-cl-1.png");
}
.img-bg-2 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-2.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-2 {
  background-image: url("../assets/images/static/category-img-cl-2.png");
}
.img-bg-3 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-3.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-3 {
  background-image: url("../assets/images/static/category-img-cl-3.png");
}

.img-bg-4 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-4.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-4 {
  background-image: url("../assets/images/static/category-img-cl-4.png");
}

.img-bg-5 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-5.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-5 {
  background-image: url("../assets/images/static/category-img-cl-5.png");
}

.img-bg-6 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-6.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-6 {
  background-image: url("../assets/images/static/category-img-cl-6.png");
}
.img-bg-7 {
  height: 136px;
  background-image: url("../assets/images/static/category-img-7.png");
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.cat-card:hover .img-bg-7 {
  background-image: url("../assets/images/static/category-img-cl-7.png");
}

/* TEXT COLOR CHANGE */
.cat-card h4 {
  color: #f7c948;
  transition: 0.4s;
}

.cat-card:hover h4 {
  color: #ffffff;
}
.category-titles {
  margin-top: 0 !important;
}

.process-section {
  background: #ffe880;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
/* CARD */
.process-card {
  padding: 20px;
}

/* ICON */
.process-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* TITLE */
.process-card h4 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 31px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #c00039;
}

/* TEXT */
.process-card p {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #151515;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-card {
    margin-bottom: 30px;
  }
}
.why-phozo-container {
  width: 100%;
  background: #0d0d0d;
  position: relative;
  padding-top: 50px;
  padding-bottom: 57px;
}
.why-phozo-card {
  max-width: 660px;
  width: 100%;
  height: 97px;
  position: relative;
  padding: 20px;
  margin-bottom: 30px;
}
.why-phozo-card-shadow {
  position: absolute;
  right: 0;
  top: 0;
}
.why-phozo-card h5 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffe880;
}
.why-phozo-card p {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffff;
}
.row-2 {
  margin-left: 200px;
}
.row-3 {
  margin-left: 400px;
}
.why-phozo-wrapper {
  position: relative;
}
.why-phozo-bg {
  position: absolute;
  right: 0;
  top: 0;
}
.why-phozo-quote-mobile h3 {
  display: none;
}
.why-phozo-title h2 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 90px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  display: block;
}
.why-phozo-title .yellow {
  color: #ffe880;
}
.why-phozo-title .red {
  color: #c00039;
}
.why-phozo-title-mobile h2 {
  display: none;
}
.why-phozo-quote h3 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-size: 60px;
  line-height: 74px;
  letter-spacing: -1.32px;

  /* 🔥 Gradient */
  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );

  /* 🔥 Apply to text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;

  display: inline-block; /* important */
}
.why-phozo-card-top {
  margin-top: 18px;
}
.demand-section {
  width: 100%;

  background: #0d0d0d;
  padding: 80px 0;
}
.demand-section-container h2 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 150px;
  leading-trim: NONE;
  line-height: 160px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffe880;
}
.demand-bg-red {
  max-width: 100%;
  height: 180px;
  background: #c00039;
  margin-top: 120px;
}
.demand-design-card {
  width: 429px;
  height: 210px;
  background: #c00039;
  margin-top: -73px;
  padding: 10px 10px 0 10px;
}
.demand-design-card img {
  max-width: 100%;
  height: auto;
}
.demand-design-card h6 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffe880;
  margin-top: 10px;
}
/* SECTION */
.industries-section {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #0d0d0d;
}

/* HEADER */
.industries-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

/* TITLE */
.industries-header h2 {
  font-size: 48px;
  font-weight: 500;
  color: #bfbfbf;
  margin-bottom: 5px;
}

/* SUBTEXT */
.industries-header p {
  font-size: 14px;
  color: #888;
}

/* DECORATIVE LINES */
.line {
  width: 218px;
  height: 1px;
  background: #d4af37;
  position: relative;
}

/* RIGHT CIRCLE */
.line::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #d4af37;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px; /* 10px circle + 6px gap */
}

/* LEFT CIRCLE */
.line::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #d4af37;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px; /* 10px circle + 6px gap */
}
/* GRID */
.industries-grid {
  row-gap: 50px;
}

/* ITEM */
.industry-item {
  text-align: center;
}

/* ICON */
.industry-item img {
  max-width: 100%;
  height: auto;
}

/* TEXT */
.industry-item h4 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 31px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #c00039;
  margin-top: 5px;
}
.industries-title h2 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-size: 70px;
  line-height: 74px;
  letter-spacing: -1.32px;
  text-align: center;

  /* GRADIENT TEXT */
  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* for better support */
  background-clip: text;
  color: transparent;
}
.industries-title p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 10px;
}
.footer-section {
  max-width: 100%;
  height: 462px;
  background: #1d1d1d;
  padding-top: 50px;
}
/* PARENT MUST HAVE THIS */
.footer-section {
  position: relative;
}

/* COMMON LINE STYLE */
.border-line-left,
.border-line-right {
  position: absolute;
  width: 1px;
  height: 329px;
  background: #ffe880;
  top: 70px;
}

/* LEFT */
.border-line-left {
  left: 86px;
}

/* RIGHT */
.border-line-right {
  right: 86px;
}

/* COMMON CIRCLES */
.border-line-left::before,
.border-line-left::after,
.border-line-right::before,
.border-line-right::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}

/* TOP CIRCLE */
.border-line-left::before,
.border-line-right::before {
  top: -16px; /* 10px + 6px gap */
}

/* BOTTOM CIRCLE */
.border-line-left::after,
.border-line-right::after {
  bottom: -16px;
}
.footer-logo img {
  max-width: 100%;
  height: auto;
}
.footer-text p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
.footer-contact-card img {
  max-width: 100%;
  height: auto;
}
.footer-contact-card p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -4%;
  color: #ffffff;
  text-align: center;
}
.contact-container {
  margin-top: 80px;
}
.footer-bottom {
  max-width: 100%;
  height: 91px;
  background: #121212;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copy-right p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: -4%;
  vertical-align: middle;
  color: #d8d8d7;
  margin-bottom: 0;
}
.copy-right p span {
  color: #ffe880;
}
.top-move-btn {
  position: relative;
  width: 55px;
  height: 55px;
  background: #ffe880;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* OUTER DOTTED RING */
.top-move-btn::before {
  content: "";
  position: absolute;
  inset: -6px; /* space between circle and dots */
  border-radius: 50%;
  border: 2px dashed #ffe880; /* better than dotted */
}
.top-move-btn img {
  max-width: 100%;
  height: auto;
}
.privacy-policy p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: -4%;
  vertical-align: middle;
  margin-bottom: 0;
  color: #d8d8d7;
}

/* ABOUT-PAGE-STYLE */
.about-hero-section {
  position: relative;
}
.inner-hero-section {
  width: 100%;
  height: 194px;
  padding-left: 50px;
  padding-right: 50px;
}
.inner-hero-section-row {
  height: 194px;
  position: relative;
}
.about-main-title h2 {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-size: 60px;
  line-height: 71px;
  letter-spacing: -1.32px;

  /* GRADIENT TEXT */
  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}
.about-title h1 {
  font-family: "NeueMontreal";
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 190px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}
.about-circle-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-page-about {
  padding-top: 55px;
  padding-bottom: 55px;
}
.about-section-border {
  position: relative;
  max-width: 90%;
  height: 1px;
  background: #ffe880;
  margin: auto;
}

/* LEFT CIRCLE */
.about-section-border::before {
  content: "";
  position: absolute;
  left: -16px; /* 10px circle + 6px gap */
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}

/* RIGHT CIRCLE */
.about-section-border::after {
  content: "";
  position: absolute;
  right: -16px; /* 10px circle + 6px gap */
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ffe880;
  border-radius: 50%;
}
.about-text h2 {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -1.32px;
  text-align: center;

  /* GRADIENT TEXT */
  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  margin-top: 20px;
}
.about-text p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.about-section-border-bottom {
  margin-top: 20px;
}
.about-why-choose-section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.about-why-choose-title h2 {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 90px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffe880;
  text-align: center;
  margin-bottom: 50px;
}
.about-why-choose-title h2 span {
  color: #c00039;
}
.about-why-choose-card {
  width: 100%;
  position: relative;
  padding: 20px;
}
.about-card-shadow {
  position: absolute;
  right: 0;
  top: 0;
}
.about-why-choose-card h5 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffe880;
}
.about-why-choose-card p {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffff;
}
.about-choose-phozo {
  margin-top: 50px;
}
.about-than-design-title h3 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-size: 60px;
  line-height: 74px;
  letter-spacing: -1.32px;
  text-align: center;

  /* GRADIENT TEXT */
  background: linear-gradient(
    71.83deg,
    #fffff7 0%,
    rgba(255, 255, 247, 0.34) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  margin-top: 50px;
}
.about-bg {
  position: absolute;
  right: 0;
  top: 0;
}
/* /////////////////// */

/* SECTION */
.portfolio-section {
  background: #0d0d0d;
  padding: 60px 0;
  color: #fff;
}

/* FILTER */
.portfolio-filter {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.portfolio-filter span {
  color: #ffffff;
  cursor: pointer;
  font-size: 14px !important;
  position: relative;
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 20.8px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.portfolio-filter span.active {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 20.8px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.portfolio-filter span {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.portfolio-filter span.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* ✅ FULL WIDTH */
  height: 2px;
  background: #ffe880;
}

/* CARD */
.portfolio-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 278px;
  background: #1d1d1d;
}

/* IMAGE */
.portfolio-card img {
  width: 100%;
  height: 186px;
  object-fit: cover;
}

/* OVERLAY */
.overlay-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 0px;
  padding-left: 14px;
  padding-right: 24px;
}

/* TITLE */
.overlay-title h4 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffe880;
  margin-top: 5px;
}

/* DESC */
.overlay-title p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  margin-top: 0px;
}
.client-card {
  max-width: 320px;
  height: 195px;
  border: 1px solid #9999994d;
  border-radius: 20px;
  padding-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 24px;
}
.client-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.client-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.client-row {
  margin-top: 20px;
}

/* CARD COMMON */
.contact-card,
.info-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

/* INPUTS */
.contact-card label {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 150%;
  letter-spacing: 0%;

  display: block;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  height: 55px;
  background: #151515;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  outline: none;
  margin-bottom: 10px;
}

.contact-card textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.connect-btn {
  margin-top: 20px;
  width: 100%;
  background: linear-gradient(90deg, #e5093f, #ffe880);
  border: none;
  border-radius: 30px;
  padding: 12px;
  color: #000;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* arrow circle */
.connect-btn .arrow {
  position: absolute;
  left: 10px;
  background: #e5093f;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT CARD */
.info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.info-item {
  margin: 20px 0;
}

.info-item p {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: -4%;
  text-align: center;
  color: #ffffff;
}
/* BUTTON FULL WIDTH */
.btn-connect {
  width: 100%; /* 🔥 full width */
  background: none;
  border: none;
  padding: 0;
}

/* FLEX WRAPPER */
.btn-flex {
  display: flex;
  width: 100%; /* 🔥 take full width */
  align-items: center;
  margin-top: 24px;
}

/* LEFT RED PART */
.btn-icon {
  width: 90px; /* smaller like UI */
  height: 45px;
  background: #c9002b;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 10px;
  border-radius: 50px;
  z-index: 1;
}

/* RIGHT YELLOW PART */
.btn-text {
  flex: 1;
  height: 45px;
  margin-left: -50px; /* overlap */
  border-radius: 50px;

  background: #ffe880;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #c9002b;
  font-family: "NeueMontreal";
  font-size: 18px;
  z-index: 2;
}
input::placeholder,
textarea::placeholder {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #666666;
}
select {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #666666 !important;
}
.contact-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* SERVICE_PAGE */
.service-card {
  max-width: 420px;
  height: 210px;
  background: #c00039;
  padding: 10px 10px 0 10px;
}
.service-card img {
  max-width: 100%;
  height: auto;
}
.service-card h6 {
  font-family: "NeueMontreal";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffe880;
  margin-top: 10px;
}
.service-row {
  margin-top: 40px;
}
.service-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.break-res-b {
  display: none;
}
.hover-card-1 {
  padding-right: 0;
}
.hover-card-2 {
  padding-left: 0;
  padding-right: 0;
}
.hover-card-3 {
  padding-left: 0;
}
/* MOBILE ONLY */
@media (max-width: 991px) {
  .custom-menu {
    position: fixed;
    top: 0;
    right: 0; /* keep fixed */
    width: 80vw;
    height: 100vh;
    background: #141414;
    padding: 80px 20px;

    transform: translateX(100%); /* 🔥 hidden outside */
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);

    z-index: 9999;
    display: flex;
    flex-direction: column;

    will-change: transform; /* 🔥 smooth GPU */
  }
  .nav-bg {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  /* SHOW MENU */
  .custom-menu.show {
    transform: translateX(0); /* 🔥 smooth slide in */
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 🔥 push items to right */
    gap: 20px;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%; /* 🔥 take full width */
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    text-align: right; /* 🔥 text to right edge */
    padding-right: 20px;
  }

  .connect-wrapper {
    margin-top: 30px;

    display: flex; /* 🔥 change from inline-flex */
    justify-content: flex-end; /* 🔥 push to right */
    width: 100%; /* 🔥 full width */
  }

  .custom-menu a {
    width: 100%;
    display: block;
    text-decoration: none;
  }
  /* ✅ show only when menu open */
  .custom-menu.show .menu-close {
    display: flex;
  }
  /* BUTTON */
  .custom-toggler {
    width: 50px;
    height: 50px;
    background: #ffe880;
    border-radius: 50%;
    border: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    cursor: pointer;
    z-index: 10001;
  }

  /* LINES */
  .custom-toggler span {
    width: 18px;
    height: 2px;
    background: #c9002b;
    transition: all 0.4s ease;
  }

  /* 🔥 OPEN → TURN INTO X */
  .custom-toggler.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .custom-toggler.active span:nth-child(2) {
    opacity: 0;
  }

  .custom-toggler.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-bg {
    display: block;
  }
}
.swal2-loader {
  border-color: #ffe880 transparent #ffe880 transparent !important;
}
