/* ===========Font Import=============== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "ClashDisplay-Extralight";
  src:
    url("/fonts/ClashDisplay-Extralight.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Extralight.woff") format("woff"),
    url("/fonts/ClashDisplay-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Light";
  src:
    url("/fonts/ClashDisplay-Light.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Light.woff") format("woff"),
    url("/fonts/ClashDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Regular";
  src:
    url("/fonts/ClashDisplay-Regular.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Regular.woff") format("woff"),
    url("/fonts/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Medium";
  src:
    url("/fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Medium.woff") format("woff"),
    url("/fonts/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Semibold";
  src:
    url("/fonts/ClashDisplay-Semibold.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Semibold.woff") format("woff"),
    url("/fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Bold";
  src:
    url("/fonts/ClashDisplay-Bold.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Bold.woff") format("woff"),
    url("/fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Variable";
  src:
    url("/fonts/ClashDisplay-Variable.woff2") format("woff2"),
    url("/fonts/ClashDisplay-Variable.woff") format("woff"),
    url("/fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "inter-regular";
  src:
    url("/fonts/Inter.ttc") format("ttc"),
    url("/fonts/InterVariable-Italic.ttf") format("ttf"),
    url("/fonts/InterVariable.ttf") format("ttf");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ==============INDEX PAGE========== */
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "ClashDisplay-bold";
  background-color: #000;
  color: #fff;
}
body {
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.logo {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cir-container-parent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-left: 60px;
  /* background-color: #; */
  transition: all 0.3s ease-in-out;
}
.circle-container-child-1 {
  display: flex;
  justify-content: space-between;
}
.circle {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}
.cir-container-parent:hover {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
/* .header-contact-btn button{
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'ClashDisplay-Bold';
    font-size: 16px;
} */
.header-contact-btn button {
  position: relative;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  font-family: "ClashDisplay-Bold";
  font-size: 16px;
  overflow: hidden;
  transition: color 0.35s ease;
}

/* the white fill under the border */
.header-contact-btn button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: bottom 0.35s ease;
  z-index: 0;
}

/* slide the white fill upward on hover */
.header-contact-btn button:hover::after {
  bottom: 0;
}

/* keep text above the animation */
.header-contact-btn button span {
  position: relative;
  z-index: 1;
}

/* text becomes black when background becomes white */
.header-contact-btn button:hover {
  color: #000;
  cursor: none;
}

/* 1. Link Hover & Active States */
.nav-links li a {
  color: rgba(255, 255, 255, 0.5); /* Default greyish for non-active */
  transition: color 0.3s ease;
  text-decoration: none;
}
.overlay-content li {
  text-decoration: none;
  list-style-type: none;
}

.nav-links li a:hover {
  color: #808080; /* Grey hover */
}

/* Use a class to mark the current page (Home) as white */
.overlay-content li a.active {
  color: #808080;
}

/* 2. Fullscreen Overlay Styling */
.nav-overlay {
  height: 100%;
  width: 0; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #000;
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.overlay-content a {
  padding: 15px;
  font-size: 100px;
  line-height: 0.8;
  font-family: "ClashDisplay-Bold", sans-serif;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.overlay-content a:hover {
  color: #888;
}

/* Class to open the overlay */
.nav-overlay.open {
  height: 100vh;
  width: 100%;
}
/* ======magic pointer====== */

.magic-cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  pointer-events: none;
  background: white;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

/* ======magic pointer====== */

/* ==============HERO SECTION========== */
.hero {
  width: 100%;
  height: 100vh;
  /* background: #000; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* subtle black dotted texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.hero-inner {
  z-index: 0;
  position: relative;
}
.tagline-container {
  position: relative;
  z-index: 5;
  /* margin-top: 24px; */
  display: flex;
  justify-content: center;
  width: 100%;
}

.tagline-container p {
  font-family: "ClashDisplay-Regular";
  font-size: 24px;
  color: #808080;
  text-align: center;
  max-width: 60%;
  line-height: 1.2;

  /* IMPORTANT FIX */
  opacity: 1;
  transform: none;
}

.slide-down h1 {
  opacity: 0;
  transform: translateY(-50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.slide-down h1.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* RED gradient + vignette + transparency */
.hero h1 {
  font-family: "ClashDisplay-semibold", sans-serif;
  font-size: 14.5vw;
  text-transform: uppercase;
  line-height: 0.82;
  font-weight: 700;
  text-align: center;
  line-height: 1em;

  /* main red gradient */
  background: radial-gradient(ellipse, #ff3d00 60%, #a10f00 70%, #3d0000 100%);

  /* transparent vignette overlay */
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  /* transparency like the reference */
  opacity: 0.88;

  /* dark shadow behind text edges */
  filter: drop-shadow(0 0 22px rgba(0, 0, 0, 0.7));
}

/* improve letters spacing like screenshot */
.hero h1 span {
  display: block;
  letter-spacing: -0.02em;
}

/* ==============HERO SECTION========== */

.location-container {
  width: 100%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location-inner,
.global-acceptance,
.certified {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.location-inner img,
.global-acceptance img,
.certified img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-bottom: 5px;
}
.global-acceptance img {
  width: 50px;
  height: 50px;
}
.certified img {
  width: 25px;
  height: 25px;
}
.location-inner span,
.global-acceptance span,
.certified span {
  font-family: "ClashDisplay-Medium";
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}
.location-container p {
  font-family: "ClashDisplay-Medium";
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: #808080;
}
.about-us-container {
  width: 100%;
  height: 100vh;
  background: url(/assets/cjC9zD2KVSP4qColCX9aOrsCDQ.png) no-repeat center
    center;
  background-size: fill;
  padding: 0 20px;
}
.about-us-text-container {
  width: 100%;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  margin-top: 2rem;
}
.about-us-text-container p {
  font-family: "ClashDisplay-semibold";
  font-size: 24px;
  color: #fff;
  /* text-transform: uppercase; */
  max-width: 60%;
  line-height: 1.3;
  letter-spacing: 1.2;
  word-spacing: 1.2;
}
.whoami-container {
  width: 100%;
  height: 100px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  font-family: "ClashDisplay-Medium";
}
.three-phases {
  color: #808080;
}
.red-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: flex-start;
  height: fit-content;
  /* align-items: flex-start; */
}
.red-text-2 h1 {
  font-size: 6.5vw;
  text-transform: uppercase;
}
.p-18 {
  width: 30%;
  /* margin: 20px auto; */
  text-align: center;
  margin: 20px 0;
}
.p-18 p {
  font-family: "ClashDisplay-Regular";
  font-size: 18px;
  color: #808080;
}
.number-circle-inner {
  width: 60%;
  height: auto;
  margin: 20px auto;
  display: flex;
  justify-content: space-evenly;
}
.number-circle-1,
.number-circle-2,
.number-circle-3 {
  width: 35px;
  height: 30px;
  background: #292929;
  color: #fff;
  border-radius: 50%;
  font-family: "ClashDisplay-Bold";
  font-size: 12px;
  text-transform: uppercase;
}
.number-circle-1 span,
.number-circle-2 span,
.number-circle-3 span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.testimonial-container {
  width: 100%;
  height: auto;
  padding: 50px 20px;
  margin: 5rem 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.testimonials {
  width: 25%;
  height: auto;
  padding: 20px;
  font-family: "ClashDisplay-Regular";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.three-circle {
  width: 15%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.circle-1,
.circle-2,
.circle-3,
.circle-4,
.circle-5 {
  width: 10px;
  height: 10px;
  background: #292929;
  border-radius: 50%;
}

.three-square {
  width: 50%;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.square-1,
.square-2,
.square-3 {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #292929;
}
.testimonial-head {
  width: 100%;
}
.testimonial-head h2 {
  font-family: "ClashDisplay-Semibold";
  /* font-size: 16px; */
  /* margin-bottom: 5px; */
  text-transform: uppercase;
  text-align: center;
}
.testimonial-para p {
  font-family: "ClashDisplay-Regular";
  font-size: 18px;
  color: #808080;
  text-align: center;
}

/* Project section */
.project-section-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.project-sec-stiky {
  width: 100%;
  background: #000;
  position: sticky;
  top: 0;
  left: 0;
}

.project-section {
  display: flex;
  justify-content: center;
  height: 100vh;
}
.project-container {
  width: 100%;
  height: 95vh;
  margin: 20px;
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 60px;
  align-self: center;
}
.project-l-container {
  width: 35%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* gap: 20px; */
}
.left-div-p {
  font-family: "roboto";
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  /* color: solid #ff3c00; */
}
.project-head {
  width: 100%;
  margin: 20px 0;
}
.project-head h2 {
  font-family: "ClashDisplay-medium";
  font-size: 4vw;
  text-transform: uppercase;
  color: #ff3c00;
  line-break: anywhere;
  line-height: 1em;
  margin-bottom: 1rem;
}

.project-description {
  width: 80%;
  margin-left: 7em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
}
.view-project-container,
.pro-des-con {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* gap: 2rem; */
}
.square-spin {
  width: 25px;
  height: 25px;
  background: #ff3c00;
  /* border: 2px solid #000; */
  /* border-radius: 25px; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* cursor: pointer; */
  overflow: hidden;
  position: relative;
  animation:
    spin 2s linear infinite,
    left-sweep 1s ease;

  /* transition: all 0.3s ease-in-out; */
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes left-sweep {
  from {
    transform: translateX(-300%);
  }
  to {
    transform: translateX(0%);
  }
}
.f-col,
.s-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.project-view a,
.f-col p {
  font-family: "inter-regular";
  font-size: 18px;
  text-transform: uppercase;
  color: #ff3c00;
}
.s-col {
  align-items: flex-end;
}
.s-col p {
  font-family: "inter-regular";
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  text-align: right;
}

.project-r-container {
  /* width: 50%;
  height: 470px;
  overflow: hidden; */

  width: 750px;
  height: 470px;
  overflow: hidden;
  position: relative;
  left: 20px;
}

.project-r-container img {
  width: 100%;
  height: 100%;
  /* transform: scale(1.1); */
  object-fit: cover;
  /* border-radius: 20px; */
}

.p-cont-img {
  background: url(/assets/w4bfShuIHTL7ZRTk6gSFWDIhKA.jpg) no-repeat center
    center;
  background-size: cover;
}
.red-container {
  background: #ff3c00;
  display: flex;
  justify-content: center;
  align-items: center;
}
.more-project {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: "clashDisplay-bold";
  background-color: #ff3c00;
  border-radius: 80px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.more-project a {
  font-family: "ClashDisplay-medium";
  font-size: 80px;
  padding: 20px 40px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
}

.more-project::after {
  content: "VIEW MORE";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 80px;
  background: #fff;
  color: #ff3c00;
  font-family: "ClashDisplay-medium";
  font-size: 80px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  z-index: 15;
  transform: translateY(100%);
}

.more-project::before {
  content: ">>>>  >>>>";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #ff3c00;

  animation: arrowSlide 0.35s ease forwards infinite;
  z-index: 0;
  opacity: 0;
}

.more-project:hover::after {
  transform: translateY(0);
}

.more-project:hover::before {
  animation: arrowSlide 0.35s ease forwards;
  opacity: 1;
  display: flex;
}

@keyframes arrowSlide {
  from {
    transform: translateX(-100%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.lf-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 35vh;
  /* gap: 0.5rem; */
}
.latest-portfolio h1 {
  width: 100%;
  height: auto;
  padding: 50px;
  font-family: "ClashDisplay-semibold";
  font-size: 8vw;
  text-align: left;

  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* gap: 2rem; */
}

.portfolio-container {
  width: 100%;
  height: auto;
  padding: 0 50px 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
.portfolio-container-inner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* gap: 2rem; */
}

.portfolio-items {
  width: 50%;
  height: auto;
  /* background: #121212; */

  /* overflow: hidden; */
  /* cursor: pointer; */
}
.mid-large-box {
  width: 35%;
  height: auto;
  align-self: flex-end;
  overflow: hidden;
}
.port-image img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.port-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}
.small-box-image {
  height: 275px;
}
.port-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.port-desc-items {
  width: 100%;
  height: auto;
  padding: 20px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.five-circle {
  width: 12%;
  gap: 0.3rem;
  display: flex;
  /* justify-content: space-between; */
}
.small-box-circle {
  width: 15%;
}

.c-active {
  background: #fff;
}
.right-arrow-btn,
.bi-arrow-right-short {
  font-size: 24px;
  color: #fff;
}
.bi-arrow-right-short {
  transition: all 0.3s ease-in-out;
}
.right-arrow-btn i:hover {
  transform: translateX(5px);
  transition: all 0.3s ease-in-out;
}

.port-folio-title p {
  font-family: "ClashDisplay-Medium";
  font-size: 16px;
  text-transform: uppercase;
  color: #808080;
}
.port-folio-title h4 {
  font-family: "ClashDisplay-Semibold";
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 5px;
  color: #fff;
}

.middle-box {
  align-self: center;
  justify-content: center;
}

.marque-div {
  width: 100%;
  background: #000;
  padding: 20px 0;
  margin: 5rem 0;
  overflow: hidden;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* scrolling rail */
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  will-change: transform;
  animation: marquee 25s linear infinite;
}

.marquee-inner img {
  width: 150px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* gradient overlay */
.marquee-fade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000 0%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 75%,
    #000 100%
  );
}

/* animation */
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.r-text {
  /* position: relative; */
  width: 100%;
  text-align: center;
}
.white-text {
  font-family: "ClashDisplay-Medium";
  font-size: 6.5vw;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  position: relative;
  top: 20px;
}

.big-r-text {
  line-height: 0.75em;
  font-size: 7.5vw;
}
.more-about-container {
  width: 100%;
  height: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0;
}
.more-about-inner {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 5rem;
  align-items: center;
  overflow: hidden;
}
.more-about-image {
  width: 60%;
  height: 100vh;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.more-about-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.more-about-para,
.more-about-subpara {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.more-about-para p {
  font-family: "ClashDisplay-semibold";
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 1.6em;
}
.more-about-subpara p {
  font-family: "ClashDisplay-regular";
  font-size: 18px;
  color: #808080;
  text-align: center;
  margin-top: 10px;
}

/* ============ SERVICES SECTION ============ */

.services-list-wrapper {
  width: 100%;
  max-width: 60%;
  /* margin: 0 auto; */
  padding: 0 40px 100px 40px;
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
}

.service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease-out;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  /* cursor: pointer; */
  position: relative;
}

/* Dots Styling */
.service-dots {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  width: 10%; /* Fixed width to align titles */
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background-color: #fff;
}

/* Title & Subtitle */
.service-title-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-title-group h3 {
  font-family: "ClashDisplay-regular";
  font-size: 18px;
  color: #fff;
}
.service-title-group h3,
.service-title-group p {
  padding-left: 40px;
}
.service-title-group p {
  font-family: "ClashDisplay-Medium";
  font-size: 14px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Toggle Icon */
.service-toggle-icon {
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

/* ============ EXPANDED CONTENT ============ */

.service-content-expanded {
  display: none; /* Hidden by default */
  padding-bottom: 40px;
  padding-left: 20%; /* Align with text */
}

/* Active State Styles */
.active-item .service-content-expanded {
  display: block;
  animation: slideDown 0.4s ease-out;
}

.active-item .service-toggle-icon {
  transform: rotate(180deg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}

.service-img-col {
  width: 300px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
}

.service-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-details-col li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "ClashDisplay-Medium";
  /* Using your font instead of generic sans-serif */
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
}

.service-details-col li svg {
  color: #fff; /* White checkmarks */
}

.service-details-col li span {
  letter-spacing: 0.05em;
}

/* This part rotates the arrow when the class is added by JS */
.active-item .service-toggle-icon {
  transform: rotate(180deg);
}
.active-item .service-content-expanded {
  display: block;
}
.active-item .service-toggle-icon {
  transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-header {
    flex-wrap: wrap;
  }
  .service-dots {
    width: 100%;
    margin-bottom: 15px;
  }
  .service-content-expanded {
    padding-left: 0;
  }
  .service-card-layout {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-img-col {
    width: 100%;
  }
}

.stats-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    repeating-linear-gradient(
      45deg,
      #111 0px,
      #111 2px,
      #0e0e0e 2px,
      #0e0e0e 4px
    );
  color: #fff;
  padding: 80px 60px;
  font-family: "Inter", sans-serif;
}

.stats-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: 60px;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-no {
  font-weight: 600;
}

.section-title {
  text-align: center;
}

.section-fact {
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-card {
  padding: 60px 20px;
  text-align: center;
  /* border-right: 1px solid #222; */
}

.stat-card:last-child {
  border-right: none;
}

.stat-card h2 {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #aaa;
  font-family: "ClashDisplay-Medium";
}
.stat-card h2 {
  transition: transform 0.3s ease;
}

.stat-card:hover h2 {
  transform: scale(1.05);
}
.experience-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    repeating-linear-gradient(
      45deg,
      #111 0px,
      #111 2px,
      #0e0e0e 2px,
      #0e0e0e 4px
    );
  color: #fff;
  padding: 0 60px;
}

.experience-wrapper {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 150vh; /* important for scroll */
}

/* LEFT STICKY */
.experience-left {
  position: sticky;
  top: 0;
  height: 60vh;
  display: flex;
  /* align-items: center; */
}

.experience-left h2 {
  font-size: 36px;
  font-family: "clashDisplay-Medium";
  /* font-weight: 700; */
  letter-spacing: 2px;
  margin-top: 5rem;
}

/* RIGHT CONTENT */
.experience-right {
  padding: 120px 60px;
  padding-bottom: 0;
}

.exp-item {
  margin-bottom: 120px;
  max-width: 100%;
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exp-item h3 {
  font-size: 28px;
  margin-bottom: 8px;
  font-family: "clashDisplay-Semibold";
}
.desc {
  font-size: 18px;
  font-family: "clashDisplay-Regular";
  /* text-transform: uppercase; */
}

.year {
  font-size: 14px;
  color: #aaa;
}

.role {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 12px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
}

.auto-slider {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    repeating-linear-gradient(
      45deg,
      #111 0px,
      #111 2px,
      #0e0e0e 2px,
      #0e0e0e 4px
    );
  padding: 10px 0;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 420px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background: #222;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* smooth infinite motion */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* pause on hover because humans like control */
.auto-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Pricing Section Styling */
.pricing-section {
  padding: 100px 40px;
  background-color: #000;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-intro h2 {
  font-family: "ClashDisplay-Bold";
  font-size: 3.5vw;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Billing Toggle Switch */
.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.toggle-label {
  font-size: 12px;
  color: #fff;
  font-family: "ClashDisplay-Medium";
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  /* cursor: pointer; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #444;
}
input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-section {
  padding: 100px 40px;
  background-color: #000;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 60px;
}
.price-card {
  font-family: "clashDisplay-Medium";
}
.plan-title-row {
  display: flex;
  /* justify-content: space-between; */
  gap: 2rem;
  /* margin-bottom: 2rem; */
}

.pricing-intro h2 {
  font-family: "ClashDisplay-Bold";
  font-size: 2.5vw;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.toggle-label {
  font-size: 12px;
  color: #fff;
}

/* Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  /* cursor: pointer; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ff3c00;
} /* Orange when active */
input:checked + .slider:before {
  transform: translateX(24px);
}

/* Grid and Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
}

.active-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.price-amount {
  font-family: "ClashDisplay-Bold";
}
.price-amount .value {
  font-size: 24px;
  font-weight: 400;
}
.price-amount .period {
  font-size: 12px;
  color: #666;
  margin-left: 5px;
}
.price-amount .currency,
.plan-badge-plus {
  font-size: 24px;
}
.pro-tag {
  background: #fff;
  color: #000;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-left: 10px;
  font-family: "clashDisplay-bold";
  align-self: center;
}

.features-box {
  margin-top: 30px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  font-size: 14px;
  margin-bottom: 12px;
  font-family: "clashDisplay-regular";
  display: flex;
  align-items: center;
  color: #808080;
}
.feature-list li.not-included {
  color: #444;
}

.feature-list li.included::before {
  content: "✓";
  color: #808080;
  margin-right: 10px;
}
.feature-list li.not-included::before {
  content: "✕";
  color: #831d1d;
  margin-right: 10px;
}

/* FAQS */
.faq-section {
  padding: 100px 20px;
  background-color: #000;
  cursor: none;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-list {
  padding: 60px;
}
.section-title {
  font-family: "ClashDisplay-Bold", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 50px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  /* cursor: pointer; */
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.faq-number {
  font-family: "ClashDisplay-semibold";
  font-size: 12px;
  color: #fff; /* Muted number */
  font-weight: 400;
}

.faq-question {
  font-family: "ClashDisplay-Medium", sans-serif;
  font-size: 18px;
  color: #fff;
  flex-grow: 1;
  text-transform: uppercase;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  right: 15rem;
}

/* Hover effect: Mute others or highlight this one */
.faq-item:hover .faq-question {
  color: #fff;
}

/* Hidden Answer Logic */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-family: "clashDisplay-Regular";
  transition:
    max-height 0.3s ease,
    margin-top 0.3s ease;
  text-align: left;
  padding: 0 5.7rem;
  color: #808080;
  font-size: 18px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg); /* Rotates the + to look like an X */
}
/* When active, change the content of the icon */
.faq-item.active .faq-icon::before {
  content: "−";
  transition: none;
}

/* Ensure the icon is defined properly in HTML or CSS */
.faq-icon::before {
  content: "+";
  /* transform: rotate(45deg); */
}

/* footer */
.footer-text-size {
  width: 100%;
  /* font-size: 100vw; */
}
.footer-text {
  height: 50vh;
  /* font-size: ; */
}
.footer-size {
  font-size: 13.5vw;
}

.footer-copyright {
  width: 100%;
  padding: 10px 100px 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px; /* Adjust width as needed */
  height: 50px;
  background-color: #ffffff;
  color: #000;
  mix-blend-mode: difference;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "ClashDisplay-Bold", sans-serif;
  font-size: 24px;
  pointer-events: none; /* Crucial: clicks go through it to the item */
  transform: translate(-50%, -50%) scale(0); /* Start invisible and centered */
  transition: transform 0.3s ease;
  z-index: 9999;
}

/* Class to show the cursor when hovering */
#custom-cursor.active {
  transform: translate(-50%, -50%) scale(1);
}

/* Ensure your portfolio items are ready for the hover */
.portfolio-items {
  cursor: none; /* Hide the default arrow cursor */
}

.slider-inner {
  animation: marquee 15s linear infinite;
  /* flex: 0 0 auto; */

  overflow: hidden;
  /* background: #222; */
}
.slider-inner img {
  width: 420px;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
}
.white-text-center {
  text-align: center;
  color: #fff;
}

/* ===============Responsive=========== */
@media (max-width: 991px) {
  .project-r-container {
    width: 435px;
    height: 250px;
    left: 50px;
  }
  .more-project a {
    font-size: 50px;
  }
  .five-circle {
    width: 25%;
  }
  .small-box-circle {
    width: 25%;
  }
  .port-image {
    height: 250px;
  }
  .small-box-image {
    height: 175px;
  }
  .services-list-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .slider-inner img {
    width: 250px;
    height: 150px;
  }
  .marque-div {
    margin: 2rem 0;
  }
  .faq-icon {
    right: 5rem;
  }
  .experience-left h2 {
    font-size: 32px;
  }
  .service-title-group h3 {
    padding-left: 40px;
    letter-spacing: 0.5px;
    font-weight: 500;
  }
  .about-us-text-container p {
    max-width: 80%;
    line-height: 1.2;
    letter-spacing: 1;
    word-spacing: 1;
  }
}
