@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* add this to your custom CSS in the site settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #104df6 #000000;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "DM Sans", sans-serif;
  background-color: #000000;
}
.contenar {
  width: 90%;
  margin: auto;
}
/* الأساس — نفس ستايل الزر في الناف بار */
.btn-outline {
  cursor: pointer;
  position: relative;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 900;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 0.8s;
  display: inline-block;
  color: #104df6;
  text-decoration: none;
}
/* الخطوط المتحركة */
.btn-outline::after,
.btn-outline::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 0.8s;
  border: 0px solid #000;
}
.btn-outline::after {
  top: -1px;
  left: -1px;
  border-top: 4px solid black;
  border-left: 4px solid black;
}
.btn-outline::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 4px solid black;
  border-right: 4px solid black;
}
/* انيميشن الهوفر */
.btn-outline:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.btn-outline:hover::after,
.btn-outline:hover::before {
  width: 100%;
  height: 100%;
}
/* تخصيص الخلفيات */
.btn-one {
  /* الزر الأول */
  background: #e7e7e7;
  margin-left: 30px;
}
.btn-two {
  /* الزر الثاني */
  background: linear-gradient(45deg, #104df6, #8a2be2);
  color: #e7e7e7;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
}
.btn-two::after {
  border-top-color: black;
  border-left-color: black;
}
.btn-two::before {
  border-bottom-color: black;
  border-right-color: black;
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
#hero {
  position: relative;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0));
  pointer-events: none;
  z-index: 1;
}
/* MAIN SLIDER */
.scroll-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* SLIDE */
.scroll-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(20%);
}
.scroll-slide.show {
  opacity: 1;
  animation: waveMove 1.2s ease-in-out;
}
.scroll-slide.hide {
  opacity: 0;
}
/* SLIDE ANIMATION */
@keyframes waveMove {
  0% {
    filter: blur(16px) brightness(0.6);
    transform: scale(1.12);
  }
  50% {
    filter: blur(8px) brightness(0.9);
    transform: scale(1.06);
  }
  100% {
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
/* IMAGE 2 (UNDER MAIN IMAGE) */
.scroll-slide::before {
  content: "";
  width: 300px;
  height: 200px;
  background-image: var(--img2);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 41%;
  top: 50%;
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 1.1s ease-in-out,
    opacity 1.1s;
  position: absolute;
  z-index: 1;
  filter: opacity(60%);
}
.scroll-slide.show::before {
  transform: translateY(150px);
  opacity: 1;
}
.scroll-slide.hide::before {
  transform: translateY(120%);
  opacity: 0;
}
/* ---- MAIN IMAGE CAN (قابل للتخصيص عبر CSS variables) ---- */
.scroll-slide::after {
  content: "";
  position: absolute; /* مهم: لجعل left/top تعمل */
  left: var(--img-left, 70%); /* تحكم أفقي (قيمة افتراضية 70%) */
  top: var(--img-top, 50%); /* تحكم رأسي (قيمة افتراضية 50%) */
  width: var(--img-width, 420px);
  height: var(--img-height, 420px);
  background-image: var(--img);
  background-size: var(--img-fit, contain); /* contain / cover / auto */
  background-repeat: no-repeat;
  background-position: var(--img-position, center); /* داخل العنصر */
  z-index: 2;

  /* الحركة: نستخدم translate(-50%,-50%) لمركزة العنصر على left/top
     ثم نضيف translateX متغيرة لحركة الدخول/الخروج */
  transform: translate(-50%, -50%) translateX(var(--img-anim, 120%));
  opacity: 0;
  transition:
    transform 1.1s ease-in-out,
    opacity 1.1s;
}

/* عند الظهور نضبط المتغير المسؤول عن الحركة إلى 0 */
.scroll-slide.show::after {
  --img-anim: 0; /* يدخل للمكان المحدد */
  opacity: 1;
}

/* عند الاختفاء نقدر نستخدم قيمة سالبة للخروج لليسار (أو غيرها) */
.scroll-slide.hide::after {
  --img-anim: -120%;
  opacity: 0;
}
.scroll-slide.slide-1 {
  --img: url("assets/tr (3).webp");
  --img-width: 900px;
  --img-height: 900px;
  --img-left: 50%;
  --img-top: 50%;
  --img-position: center;
  --img-fit: contain;
}

/* Slide 2: صورة أقرب للمنتصف */
.scroll-slide.slide-2 {
  --img: url("assets/tr (2).webp");
  --img-width: 900px;
  --img-height: 900px;
  --img-left: 50%;
  --img-top: 50%;
}

/* Slide 3: صورة أكثر يمينًا وأعلى شوية */
.scroll-slide.slide-3 {
  --img: url("assets/tr (1).webp");
  --img-width: 900px;
  --img-height: 900px;
  --img-left: 50%;
  --img-top: 50%;
}

/* FOOTER FULL WIDTH IMAGE */
.slide-bottom-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 250px;
  background-image: var(--img3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1.1s ease-in-out;
  z-index: 9;
  filter: blur(3px);
}
.scroll-slide.show .slide-bottom-img {
  transform: translateY(0);
  opacity: 1;
}
.scroll-slide.hide .slide-bottom-img {
  transform: translateY(100%);
  opacity: 0;
}

/* TEXT */
.slide-info {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(-100px);
  max-width: 500px;
  opacity: 0;
  transition: all 1.1s ease-in-out;
  z-index: 10;
}
.slide-info h1 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #e7e7e7;
}
.slide-info p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #e7e7e7;
}
.slide-info button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #ff3b3f;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.slide-info button:hover {
  background-color: #e63236;
}
.scroll-slide.show .slide-info {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.scroll-slide.hide .slide-info {
  opacity: 0;
  transform: translateY(-50%) translateX(-120px);
}

/* BACKGROUND TITLE */
.slide-big-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.096);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  animation: moveBgTitle 8s ease-in-out infinite alternate;
}
@keyframes moveBgTitle {
  0% {
    transform: translate(-50%, -50%) translateX(-20px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(20px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(-20px);
  }
}

/* FLOATING ICONS */
.float-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  transition: all 1s ease-in-out;
}

/* FLOAT ANIMATIONS */
@keyframes float1 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float3 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float4 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float5 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* قاعدة عامة لكل الفلوات */
.scroll-slide .float-icon {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* تمرير اللمس للسلايدر */
  opacity: 1;
  transition: all 0.9s ease;
}
/* Slide 1 icons */
.scroll-slide:nth-child(1) .float-icon:nth-child(3) {
  top: 20%;
  left: 25%;
  width: 180px;
  height: 180px;
  z-index: 9;
  background-image: url("assets/fl (1).webp");
  animation: float1 6s infinite;
}
.scroll-slide:nth-child(1) .float-icon:nth-child(4) {
  top: 60%;
  left: 30%;
  width: 130px;
  height: 130px;
  background-image: url("assets/fl (2).webp");
  animation: float2 7s infinite;
}
.scroll-slide:nth-child(1) .float-icon:nth-child(5) {
  top: 40%;
  left: 65%;
  width: 100px;
  height: 100px;
  filter: blur(2px);
  background-image: url("assets/fl (3).webp");
  animation: float3 8s infinite;
}
/* Slide 2 icons */
.scroll-slide:nth-child(2) .float-icon:nth-child(3) {
  top: 25%;
  left: 30%;
  width: 180px;
  height: 180px;
  z-index: 9;
  background-image: url("assets/as (2).webp");
  animation: float1 7s infinite;
}
.scroll-slide:nth-child(2) .float-icon:nth-child(4) {
  top: 50%;
  left: 55%;
  width: 160px;
  height: 160px;
  background-image: url("assets/as (5).webp");
  animation: float2 8s infinite;
}
.scroll-slide:nth-child(2) .float-icon:nth-child(5) {
  top: 65%;
  left: 40%;
  width: 80px;
  height: 80px;
  filter: blur(2px);
  background-image: url("assets/as (1).webp");
  animation: float3 9s infinite;
}
.scroll-slide:nth-child(2) .float-icon:nth-child(6) {
  top: 35%;
  left: 60%;
  width: 140px;
  height: 140px;
  background-image: url("assets/as (8).webp");
  animation: float4 10s infinite;
}
/* Slide 3 icons */
.scroll-slide:nth-child(3) .float-icon:nth-child(3) {
  top: 30%;
  left: 35%;
  width: 150px;
  height: 150px;
  background-image: url("assets/go (3).webp");
  animation: float1 6s infinite;
}
.scroll-slide:nth-child(3) .float-icon:nth-child(4) {
  top: 60%;
  left: 50%;
  width: 145px;
  height: 145px;
  background-image: url("assets/go (2).webp");
  animation: float2 7s infinite;
}
.scroll-slide:nth-child(3) .float-icon:nth-child(5) {
  top: 45%;
  left: 65%;
  width: 120px;
  height: 120px;
  filter: blur(4px);
  background-image: url("assets/go (1).webp");
  animation: float3 8s infinite;
}
@media (max-width: 768px) {
  .slide-info {
    left: 0%;
    top: 30%;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
  }
  .slide-info h1 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .slide-info p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .scroll-slide.slide-1 {
    --img: url("assets/tr (3).webp");
    --img-width: 450px;
    --img-height: 450px;
    --img-left: 50%;
    --img-top: 65%;
    --img-position: center;
    --img-fit: contain;
  }
  /* Slide 2: صورة أقرب للمنتصف */
  .scroll-slide.slide-2 {
    --img: url("assets/tr (2).webp");
    --img-width: 270px;
    --img-height: 270px;
    --img-left: 50%;
    --img-top: 65%;
  }
  /* Slide 3: صورة أكثر يمينًا وأعلى شوية */
  .scroll-slide.slide-3 {
    --img: url("assets/tr (1).webp");
    --img-width: 450px;
    --img-height: 450px;
    --img-left: 50%;
    --img-top: 65%;
  }
  .slide-big-title {
    font-size: 25vw;
  }
  /* Slide 1 icons */
  .scroll-slide:nth-child(1) .float-icon:nth-child(3) {
    width: 120px;
    height: 120px;
  }
  .scroll-slide:nth-child(1) .float-icon:nth-child(4) {
    width: 100px;
    height: 100px;
  }
  .scroll-slide:nth-child(1) .float-icon:nth-child(5) {
    width: 80px;
    height: 80px;
  }
  /* Slide 2 icons */
  .scroll-slide:nth-child(2) .float-icon:nth-child(3) {
    width: 150px;
    height: 150px;
  }
  .scroll-slide:nth-child(2) .float-icon:nth-child(4) {
    width: 120px;
    height: 120px;
  }
  .scroll-slide:nth-child(2) .float-icon:nth-child(5) {
    width: 60px;
    height: 60px;
  }
  .scroll-slide:nth-child(2) .float-icon:nth-child(6) {
    width: 70px;
    height: 70px;
  }
  /* Slide 3 icons */
  .scroll-slide:nth-child(3) .float-icon:nth-child(3) {
    width: 100px;
    height: 100px;
  }
  .scroll-slide:nth-child(3) .float-icon:nth-child(4) {
    width: 100px;
    height: 100px;
  }
  .scroll-slide:nth-child(3) .float-icon:nth-child(5) {
    width: 80px;
    height: 80px;
  }
  .scroll-slide::before {
    left: 15%;
    top: 55%;
  }
  .slide-bottom-img {
    bottom: -50px;
    height: 400px;
    filter: blur(2px);
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
#about {
  width: 100%;
  padding: 80px 0;
}
.content-about {
  width: 100%;
  text-align: center;
}
.tit-sec {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin: auto;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 -4px 10px rgba(16, 77, 246, 0.459),
    0 4px 15px rgba(0, 0, 0, 0.5);
  padding: 10px 10px;
  border-top: solid 1px #104df6;
  border-radius: 50px;
}
.tit-sec .fas {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #104df6, #8a2be2);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7e7e7;
  font-size: 18px;
}
.content-about h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}
.content-about p {
  font-size: 48px;
  font-weight: 400;
  max-width: 80%;
  margin: 0 auto 30px auto;
  color: #e7e7e7;
}
#reveal-text span {
  opacity: 0.2;
  color: rgba(231, 231, 231, 0.3);
  transition:
    opacity 0.5s ease,
    color 0.5s ease;
}
#reveal-text span.revealed {
  opacity: 1;
  color: #e7e7e7;
}
#reveal-text span.highlight.revealed {
  background: linear-gradient(45deg, #104df6, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* Button styles for about section */
.content-about .btn-outline {
  cursor: pointer;
  position: relative;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 900;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 0.8s;
  display: inline-block;
  color: #104df6;
  text-decoration: none;
}
.content-about .btn-outline::after,
.content-about .btn-outline::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 0.8s;
  border: 0px solid #000;
}
.content-about .btn-outline::after {
  top: -1px;
  left: -1px;
  border-top: 4px solid black;
  border-left: 4px solid black;
}
.content-about .btn-outline::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 4px solid black;
  border-right: 4px solid black;
}
.content-about .btn-outline:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.content-about .btn-outline:hover::after,
.content-about .btn-outline:hover::before {
  width: 100%;
  height: 100%;
}
.content-about .btn-two {
  background: linear-gradient(45deg, #104df6, #8a2be2);
  color: #e7e7e7;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
}
.content-about .btn-two::after {
  border-top-color: black;
  border-left-color: black;
}
.content-about .btn-two::before {
  border-bottom-color: black;
  border-right-color: black;
}
.content-about .btn-two:hover {
  background: linear-gradient(45deg, #8a2be2, #104df6);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #about {
    padding: 50px 0;
  }
  .content-about p {
    font-size: 20px;
    max-width: 100%;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* How We Work Section */
#how-we-work {
  width: 100%;
  padding: 80px 0;
  background: url("assets/How We Work.avif") no-repeat center center;
  background-size: cover;
}
.content-how-we-work {
  width: 100%;
  text-align: center;
}
/* Logo strip for How We Work section */
#how-we-work .logos {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  padding: 20px 0;
  background: linear-gradient(45deg, #8a2be2, #104df6);
}
#how-we-work .logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollLogoStrip 25s linear infinite;
}
#how-we-work .logo-track img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
#how-we-work .logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}
/* Black shadows on sides for How We Work */
#how-we-work .logos::before,
#how-we-work .logos::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 600px;
  z-index: 10;
  pointer-events: none;
}
#how-we-work .logos::before {
  left: -10px;
  background: linear-gradient(to right, rgb(0, 0, 0), transparent);
}
#how-we-work .logos::after {
  right: -10px;
  background: linear-gradient(to left, rgb(0, 0, 0), transparent);
}
/* Animation for logo strip */
@keyframes scrollLogoStrip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.content-how-we-work h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}
.content-how-we-work h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 30px auto;
  color: #e7e7e7;
}
.content-how-we-work p {
  font-size: 16px;
  font-weight: 400;
  max-width: 35%;
  line-height: 26px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.5);
}
/* Button styles for features section */
.content-how-we-work .btn-outline {
  cursor: pointer;
  position: relative;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 900;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 0.8s;
  display: inline-block;
  color: #104df6;
  text-decoration: none;
}
.content-how-we-work .btn-outline::after,
.content-how-we-work .btn-outline::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 0.8s;
  border: 0px solid #000;
}
.content-how-we-work .btn-outline::after {
  top: -1px;
  left: -1px;
  border-top: 4px solid black;
  border-left: 4px solid black;
}
.content-how-we-work .btn-outline::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 4px solid black;
  border-right: 4px solid black;
}
.content-how-we-work .btn-outline:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.content-how-we-work .btn-outline:hover::after,
.content-how-we-work .btn-outline:hover::before {
  width: 100%;
  height: 100%;
}
.content-how-we-work .btn-two {
  background: linear-gradient(45deg, #104df6, #8a2be2);
  color: #e7e7e7;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
}
.content-how-we-work .btn-two::after {
  border-top-color: black;
  border-left-color: black;
}
.content-how-we-work .btn-two::before {
  border-bottom-color: black;
  border-right-color: black;
}
.content-how-we-work .btn-two:hover {
  background: linear-gradient(45deg, #8a2be2, #104df6);
  transform: scale(1.05);
}

.feature-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}
.feature-box {
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 190%;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  width: 33%;
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df6 40%,
    #8a2be2 50%,
    #104df6 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 -100%
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.feature-box:hover {
  transform: translateY(-10px);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #104df6, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
}
.feature-icon i {
  color: #e7e7e7;
  font-size: 24px;
}
.feature-box h4 {
  font-size: 34px;
  font-weight: 500;
  color: #e7e7e7;
  margin-bottom: 20px;
}
.colored-underline {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #e7e7e700, #e7e7e78e, #e7e7e700);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}
.feature-box p {
  font-size: 16px;
  font-weight: 400;
  max-width: 90%;
  line-height: 26px;
  margin: 0 auto 20px auto;
  color: rgba(255, 255, 255, 0.5);
}
.feature-box img,
.feature-box video {
  width: 100%;
  height: max-content;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.085);
}
@media (max-width: 768px) {
  #how-we-work {
    padding: 50px 0;
  }
  .content-how-we-work h3 {
    font-size: 35px;
  }
  .content-how-we-work p {
    max-width: 100%;
  }
  #how-we-work .logos {
    padding: 15px 0;
  }
  #how-we-work .logo-track {
    animation: scrollLogoStrip 15s linear infinite;
    gap: 40px;
  }
  #how-we-work .logo-track img {
    height: 40px;
  }
  #how-we-work .logos::before,
  #how-we-work .logos::after {
    width: 200px;
  }
  #how-we-work .logos::before {
    left: -20px;
    background: linear-gradient(to right, rgb(0, 0, 0), transparent);
  }
  #how-we-work .logos::after {
    right: -20px;
    background: linear-gradient(to left, rgb(0, 0, 0), transparent);
  }
  .feature-boxes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .feature-box {
    width: 100%;
    padding: 20px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* Services Section */
#services {
  width: 100%;
  padding: 80px 0;
}
.content-services {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.content-services h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}
.content-services h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 20px auto;
  color: #e7e7e7;
}
.content-services p {
  font-size: 16px;
  font-weight: 400;
  max-width: 35%;
  line-height: 26px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}
.service-card {
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df6 40%,
    #8a2be2 50%,
    #104df6 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 -100%
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-10px);
}
.all-icon {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #104df6, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 77, 246, 0.6);
}
.service-icon i {
  color: #e7e7e7;
  font-size: 24px;
}
.service-arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-arrow i {
  color: rgba(255, 255, 255, 0.47);
  font-size: 16px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.service-card:hover .service-arrow {
  background: rgba(255, 255, 255, 1);
}

.service-card:hover .service-arrow i {
  color: #104df6;
}
.service-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #e7e7e7;
  margin-bottom: 7px;
}
.service-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff9;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.service-card .colored-underline {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #e7e7e700, #e7e7e75a, #e7e7e700);
  margin: 0 0 25px 0;
  border-radius: 2px;
}
.service-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
  color: #fff9;
}
.service-card video {
  width: 100%;
  height: max-content;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.085);
}
/* Responsive Design for Services Section */
@media (max-width: 768px) {
  #services {
    padding: 50px 0;
  }
  .content-services h3 {
    font-size: 35px;
  }
  .content-services p {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon i {
    font-size: 24px;
  }
  .service-card h4 {
    font-size: 20px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* Case Studies Section */
#case-studies {
  width: 100%;
  padding: 80px 0;
}
.content-case-studies {
  width: 100%;
  text-align: start;
  margin-bottom: 60px;
}
.tit-sec2 {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 -4px 10px rgba(16, 77, 246, 0.459),
    0 4px 15px rgba(0, 0, 0, 0.5);
  padding: 10px 10px;
  border-top: solid 1px #104df6;
  border-radius: 50px;
}
.tit-sec2 .fas {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #104df6, #8a2be2);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7e7e7;
  font-size: 18px;
}
.content-case-studies h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}
.content-case-studies h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 30px auto;
  color: #e7e7e7;
}
.content-case-studies p {
  font-size: 16px;
  font-weight: 400;
  max-width: 35%;
  line-height: 26px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.5);
}
.case-studies-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}
.case-study-video {
  width: 35%;
  position: relative;
}
.case-study-video video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.case-study-video video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.all-card {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.case-study-card {
  display: flex;
  gap: 10px;
}
.case-study-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 65%;
  background: radial-gradient(
    circle at -4.319463292169845% 117.95234454314665%,
    rgb(22, 24, 101) 0%,
    rgb(21, 19, 38) 100%
  );
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px 0 0 12px;
  padding: 25px;
  position: relative;
}
.case-study-text::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df6 40%,
    #8a2be2 50%,
    #104df6 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 -100%
  );
  z-index: -1;
}
.case-study-text h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.case-study-text span {
  width: max-content;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(138, 43, 226, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}
.case-study-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: #e7e7e7;
  margin-bottom: 15px;
}
.case-study-text p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.case-study-charts {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.chart-container {
  flex: 1;
  min-width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.chart-container canvas {
  max-width: 100%;
  max-height: 100%;
}
.case-study-content {
  padding: 25px;
  width: 35%;
  background: url("./assets/Case-bak.webp") no-repeat center center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.case-study-content::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df6 40%,
    #8a2be2 50%,
    #104df6 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 -100%
  );
  z-index: -1;
}
.case-study-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.metric {
  width: 100%;
  text-align: center;
  flex: 1;
  padding: 18px 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.metric:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 77, 246, 0.2);
}
.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* Responsive Design for Case Studies Section */
@media (max-width: 768px) {
  #case-studies {
    padding: 50px 0;
    min-height: 100vh; /* Ensure full viewport height for pinning */
  }
  .content-case-studies h3 {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .content-case-studies p {
    max-width: 100%;
  }
  .case-studies-grid {
    gap: 20px;
    flex-direction: column;
  }
  .case-study-video {
    width: 100%;
  }
  .all-card {
    width: 100%;
    gap: 0;
    position: relative;
    height: 100vh;
  }
  .case-study-card {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    flex-direction: column;
    gap: 5px;
    opacity: 1;
  }
  .case-study-text {
    width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 20px;
  }
  .case-study-content {
    padding: 20px;
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
  .case-study-metrics {
    gap: 10px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* Why Choose Us Section */
#why-choose-us {
  width: 100%;
  padding: 80px 0;
  background: url("assets/How We Work.avif") no-repeat center center;
  background-size: cover;
}
.content-why-choose-us {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.content-why-choose-us h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}
.content-why-choose-us h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 20px auto;
  color: #e7e7e7;
}
.content-why-choose-us p {
  font-size: 16px;
  font-weight: 400;
  max-width: 35%;
  line-height: 26px;
  margin: 0 auto 20px auto;
  color: rgba(255, 255, 255, 0.5);
}
.why-choose-items {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.why-choose-item {
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  border-radius: 15px;
  padding: 40px;
  text-align: left;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: calc(33.333% - 20px);
}
.why-choose-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df6 40%,
    #8a2be2 50%,
    #104df6 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 -100%
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.why-choose-item:hover {
  transform: translateY(-10px);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #104df6, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
  transition: all 0.3s ease;
}
.why-choose-item:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 77, 246, 0.6);
}
.why-icon i {
  color: #e7e7e7;
  font-size: 24px;
}
.why-choose-item h4 {
  font-size: 20px;
  font-weight: 500;
  color: #e7e7e7;
  margin-bottom: 15px;
}
.why-choose-item .colored-underline {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #e7e7e700, #e7e7e75a, #e7e7e700);
  margin: 0 0 25px 0;
  border-radius: 2px;
}
.why-choose-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff9;
}
/* Responsive Design for Why Choose Us Section */
@media (max-width: 768px) {
  #why-choose-us {
    padding: 50px 0;
  }
  .content-why-choose-us h3 {
    font-size: 35px;
  }
  .content-why-choose-us p {
    max-width: 100%;
  }
  .why-choose-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .why-choose-item {
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;
  }
  .why-icon {
    width: 60px;
    height: 60px;
  }
  .why-icon i {
    font-size: 24px;
  }
  .why-choose-item h4 {
    font-size: 20px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* Our Clients Section Styles */
#our-clients {
  width: 100%;
  padding: 80px 0;
}
.content-our-clients {
  width: 100%;
  text-align: start;
  margin-bottom: 60px;
}
.content-our-clients h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}
.content-our-clients h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 20px auto;
  color: #e7e7e7;
}
.content-our-clients p {
  font-size: 16px;
  font-weight: 400;
  max-width: 35%;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.5);
}
/* Client Logos Marquee Styles */
.clients-marquee-container {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
  position: relative;
}
.clients-marquee-container::before,
.clients-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.clients-marquee-container::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
}
.clients-marquee-container::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
}
.clients-marquee {
  display: flex;
  animation: scroll-left 80s linear infinite;
  width: max-content;
}
.clients-marquee.reverse {
  animation: scroll-right 80s linear infinite;
}
.marquee-content {
  display: flex;
  gap: 60px;
  padding: 0 60px;
  flex-shrink: 0;
}
.client-logo-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 80px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.client-logo-wrapper:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 77, 246, 0.5);
  box-shadow: 0 10px 30px rgba(16, 77, 246, 0.2);
}

.client-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.client-logo-wrapper:hover .client-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Responsive Design for Our Clients Section */
@media (max-width: 768px) {
  #our-clients {
    padding: 50px 0;
  }
  .content-our-clients h3 {
    font-size: 35px;
  }
  .content-our-clients p {
    max-width: 100%;
  }

  /* Mobile Marquee Styles */
  .clients-marquee-container {
    margin: 30px 0;
  }

  .clients-marquee-container::before,
  .clients-marquee-container::after {
    width: 60px;
  }

  .marquee-content {
    gap: 40px;
  }

  .client-logo-wrapper {
    min-width: 100px;
    min-height: 60px;
    padding: 15px 20px;
  }

  .client-logo {
    height: 35px;
  }

  .clients-marquee {
    animation-duration: 25s;
  }

  .clients-marquee.reverse {
    animation-duration: 25s;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
#our-process {
  overflow-x: hidden;
}
#our-process {
  padding: 0;
  background: #000;
  position: relative;
}
#our-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 90%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}
#our-process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 90%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}
#scroll-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
#video-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: sans-serif;
  font-size: 18px;
  z-index: 10;
}
/* Workflow Content Styles */
#workflow-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  width: 90%;
  max-width: 600px;
  text-align: center;
  pointer-events: none;
}
.workflow-step {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateX(100%);
  width: 100%;
  background: rgba(0, 0, 0, 0.39);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #104df6, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7e7e7;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(16, 77, 246, 0.4);
  z-index: 10;
}
.workflow-step.active {
  opacity: 1;
  transform: translateX(-50%) translateX(0);
}
.workflow-step h3 {
  background: linear-gradient(135deg, #104df6, #ffffff, #6b46c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.workflow-step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}
/* Responsive for Our Process */
@media (max-width: 768px) {
  #scroll-video {
    height: 100vh;
  }

  #loading-text {
    font-size: 16px;
  }

  #workflow-content {
    width: 95%;
    max-width: 400px;
  }

  .workflow-step {
    padding: 40px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
    font-size: 16px;
  }

  .workflow-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .workflow-step p {
    font-size: 14px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* Testimonials Section Styles */
#testimonials {
  width: 100%;
  padding: 80px 0;
}

.content-testimonials {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.content-testimonials h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}

.content-testimonials h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 20px auto;
  color: #e7e7e7;
}

.content-testimonials p {
  font-size: 16px;
  font-weight: 400;
  max-width: 50%;
  line-height: 26px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df640 40%,
    #104df680 50%,
    #104df640 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.quote-icon {
  font-size: 24px;
  color: rgba(16, 77, 246, 0.6);
  margin-bottom: 15px;
  display: block;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0;
  max-width: 100%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.star-rating {
  display: flex;
  gap: 5px;
}

.star-rating i {
  font-size: 14px;
  color: #ffd700;
  transition: all 0.3s ease;
}

.star-rating i:hover {
  transform: scale(1.2);
  color: #ffed4e;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e7e7e7;
  margin: 0 0 5px 0;
}

.author-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Testimonials Section */
@media (max-width: 768px) {
  #testimonials {
    padding: 50px 0;
  }

  .content-testimonials h3 {
    font-size: 35px;
  }

  .content-testimonials p {
    max-width: 90%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-content p {
    font-size: 15px;
  }

  .star-rating i {
    font-size: 12px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */

/* FAQ Section Styles */
#faq {
  width: 100%;
  padding: 80px 0;
  background: url("assets/How We Work.avif") no-repeat center center;
  background-size: cover;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 60px;
}

.content-faq {
  width: 40%;
  text-align: left;
}

.content-faq h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}

.content-faq h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #e7e7e7;
}

.content-faq p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.5);
}

.faq-container {
  width: 55%;
  max-width: 800px;
}

.faq-item {
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df640 40%,
    #104df680 50%,
    #104df640 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e7e7e7;
  margin: 0;
  flex: 1;
}

.faq-question i {
  font-size: 14px;
  color: rgba(16, 77, 246, 0.6);
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #104df6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 77, 246, 0.3);
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  #faq {
    padding: 50px 0;
  }
  .faq-header {
    flex-direction: column;
    gap: 30px;
  }
  .content-faq {
    width: 100%;
  }
  .content-faq h3 {
    font-size: 35px;
  }
  .faq-container {
    width: 100%;
  }
  .faq-question {
    padding: 20px 25px;
  }
  .faq-question h4 {
    font-size: 16px;
  }
  .faq-answer p {
    padding: 0 25px 20px;
    font-size: 15px;
  }
}
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */
/* ********************************************************************************* */

/* Contact Section Styles */
#contact {
  width: 100%;
  padding: 80px 0;
}

.content-contact {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.content-contact h2 {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
}

.content-contact h3 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 auto 20px auto;
  color: #e7e7e7;
}

.content-contact p {
  font-size: 16px;
  font-weight: 400;
  max-width: 50%;
  line-height: 26px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
}

.contact-container {
  display: flex;
  gap: 60px;
  margin: 0 auto;
}

.contact-info {
  width: 40%;
}

.contact-item {
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #00000000 0%,
    #00000000 10%,
    #00000000 20%,
    #00000000 30%,
    #104df640 40%,
    #104df680 50%,
    #104df640 60%,
    #00000000 70%,
    #00000000 80%,
    #00000000 90%,
    #00000000 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 77, 246, 0.3);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(16, 77, 246, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: #104df6;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e7e7e7;
  margin: 0 0 10px 0;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(16, 77, 246, 0.1);
  border: 1px solid rgba(16, 77, 246, 0.3);
  border-radius: 50%;
  color: #104df6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 77, 246, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  background: rgba(16, 77, 246, 0.2);
  border-color: rgba(16, 77, 246, 0.5);
  color: #1a5cff;
  box-shadow: 0 5px 15px rgba(16, 77, 246, 0.3);
}

.social-link:hover::before {
  left: 100%;
}

.social-link i {
  font-size: 16px;
  z-index: 1;
}

.contact-form {
  width: 60%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 20px 25px;
  background:
    linear-gradient(rgba(8, 8, 8, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #e7e7e7;
  font-size: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(16, 77, 246, 0.6);
  background:
    linear-gradient(rgba(8, 8, 8, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/bak-box.webp") no-repeat center center,
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  background-size: 180%;
  box-shadow: 0 8px 25px rgba(16, 77, 246, 0.3);
  transform: translateY(-2px);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  padding-right: 50px;
}

.form-group select option {
  background: #1a1a1a;
  color: #e7e7e7;
  padding: 10px;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  padding: 22px 40px;
  background: linear-gradient(135deg, #104df6 0%, #1a5cff 100%);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(16, 77, 246, 0.3);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(16, 77, 246, 0.4);
  background: linear-gradient(135deg, #1a5cff 0%, #104df6 100%);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(8px) rotate(45deg);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
  #contact {
    padding: 50px 0;
  }

  .content-contact h3 {
    font-size: 35px;
  }

  .content-contact p {
    max-width: 90%;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .contact-item {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-details h4 {
    font-size: 16px;
  }

  .contact-details p {
    font-size: 15px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link i {
    font-size: 14px;
  }
}
