@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');

:root {
  --gunmetal: #193035;
  --dark-slate-gray: #3c5b60;
  --ash-gray: #b0bfc1;
  --white: #ffffff;
  --platinum: #eaeaea;
  --sunset: #ffd081;
  --night: #0c0c0c;
}

/* --- GLOBAL RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--night);
  font-family: "Inter", sans-serif;
  color: var(--white);
}

body.no-scroll {
  overflow: hidden;
}

button:focus,
button:focus-visible,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Only apply your custom width for extra large screens */
@media (min-width: 1600px) {
  .custom-container {
    max-width: 1480px;
    margin: 0 auto;
  }
}
body.ar-section *{
  letter-spacing: normal !important;
}

/* --- PRELOADER --- */
.pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--gunmetal) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease-out;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.logo-container {
  text-align: center;
  overflow: hidden; 
}

.pre-loader.fade-effect {
  pointer-events: none;
  animation: slideUp 1.2s ease-out forwards;
}

@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(-1500px);
  }
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
}
header.is-sticky {
  background: rgba(0, 0, 0, 0.2); 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.nav-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 1000;
}

nav .nav-logo {
  z-index: 1000;
}

.nav-icon {
  height: 30px;
  width: 30px;
  stroke: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.nav-button.open .nav-icon-open {
  opacity: 0;
  transform: rotate(90deg);
}

.nav-button.open .nav-icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.nav-button:focus,
.nav-button:focus-visible {
  outline: none;
  box-shadow: none;
}

/* --- MENU OVERLAY --- */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 20, 25, 0.7);
  backdrop-filter: blur(84.6px);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-nav {
  list-style: none;
  text-align: left;
  padding-top: 70px;
}

.menu-nav li {
  padding: 20px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
}

.menu-nav li:last-child {
  border-bottom: none;
}

.menu-nav a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  font-size: 40px;
  transition: color 0.3s ease;
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-nav a:hover {
  color: #6abfa1;
}

/* --- LANGUAGE TOGGLE --- */
.lang-toggle-container {
  display: flex;
  background: linear-gradient(
    121.95deg,
    #6abfa1 -32.88%,
    var(--gunmetal) 116.84%
  );
  border-radius: 43px;
  padding: 8px 5px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  max-width: 194px;
  width: 100%;
  height: 51px;
}

.lang-option {
  font-family: "Inter", sans-serif;
  background-color: transparent;
  border: none;
  color: #83ADA3;
  padding: 4px 12px;
  border-radius: 43px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1;
  transition: color 0.4s ease;
  letter-spacing: 0.46px;
  width: 50%;
}
.lang-option.arabic-option {
  font-family: "Noto Sans Arabic", sans-serif;
}
.lang-option.active {
  color: var(--dark-slate-gray);
}

.lang-option:focus,
.lang-option:active,
.lang-option:focus-visible {
  outline: none;
  box-shadow: none;
  border: none;
}

#active-lang-bg {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: linear-gradient(172.52deg, #d5fff0 35.89%, #6abfa1 214.55%);
  border-radius: 43px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 0;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 180px;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/hero-bg-layer.png");
  background-size: cover;
  background-position: left center;
  z-index: 2;
  background-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 3;
  margin: 0 auto;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.38;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ---MEDIA QUERIES---  */
@media (max-width: 1440px) {
  .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 1200px) {
  .menu-nav a {
    font-size: 38px;
  }
  .lang-option {
    font-size: 15px;
  }
  .hero-title {
    font-size: 48px;
  }
  nav .nav-logo {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .menu-nav a {
    font-size: 34px;
  }
  .lang-toggle-container {
    max-width: 170px;
  }
  .hero-title {
    font-size: 42px;
  }
  nav .nav-logo {
    width: 180px;
  }
}

@media (max-width: 768px) {
  header{
    padding: 22px 0;
  }
  .logo-container img {
    width: 80%;
  }
  .menu-nav a {
    font-size: 28px;
  }
  .lang-option {
    font-size: 13px;
  }
  .hero-title {
    font-size: 38px;
    line-height: 1.1;
  }
}

@media (max-width: 576px) {
   header{
    padding: 16px 0;
  }
  .menu-nav a {
    font-size: 26px;
  }
  .lang-toggle-container {
    max-width: 150px;
    height: 46px;
  }
  .lang-option {
    font-size: 12px;
    padding: 5px 0;
  }
  .hero-title {
    font-size: 32px;
  }
  nav .nav-logo {
    width: 120px;
  }
  .hero-image-layer {
    background-image: url(/assets/images/hero-bg-layer-mobile.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 400px) {
  .menu-nav a {
    font-size: 24px;
  }
}

.ventures-section {
  padding-top: 150px;
  background-image: url(/assets/images/ventures-bg.png);
  background-position:  center;
  background-repeat: no-repeat;
}

.ventures-section .container {
  position: relative;
  z-index: 2;
}

.section-title-gradient {
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(90deg, #eaeaea 0%, #b0bfc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2px;
  max-width: 75%;
  margin: 0 auto 64px auto;
}

.info-card {
  position: relative;
  border-radius: 16px;
  /* padding: 30px 50px; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ventures-section .card-title {
  font-family: "Space Grotesk", sans-serif;
  display: inline-block;
  padding: 7px 27px 4px 27px;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(97.77deg, var(--sunset) -11.45%, #997d4d 122.94%);
  position: absolute;
  top: -5px;
}

.info-card p {
  font-size: 24px;
  letter-spacing: 0.2px;
  color: var(--white);
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}


.about-card,
.vision-card,
.mission-card {
    position: relative;
    z-index: 1;
    overflow: hidden; 
}

.about-card::before,
.vision-card::before,
.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; 
    background-repeat: no-repeat;
    background-size: cover; 
    transition: transform 0.3s ease; 
}

.about-card::before {
    background-image: url("/assets/images/about-card-bg.png");
    background-position: right center;
}

.vision-card::before {
    background-image: url("/assets/images/vision-card-bg.png");
    background-position: right center;
}

.mission-card::before {
    background-image: url("/assets/images/mission-card-bg.png");
    background-position: right center;
}

.about-card {
  min-height: 493px;
  margin-bottom: 0;
  height: 100%;
  padding: 79px 58px 163px 58px;
}

.info-cards-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vision-card {
  min-height: 231px;
  height: 45%;
  padding: 79px 47px 80px 66px;
}

.mission-card {
  min-height: 231px;
  height: 45%;
  padding: 61px 47px;
}

[dir="rtl"] .about-card::before,
[dir="rtl"] .vision-card::before,
[dir="rtl"] .mission-card::before {
    transform: scaleX(-1); 
}

@media (max-width: 1399px) {
  .info-card {
    padding: 22px 50px;
  }
  .info-card p {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 1200px) {
  .section-title {
    font-size: 42px;
    max-width: 85%;
  }

  .info-card {
    padding: 22px 40px;
  }

  .card-title {
    font-size: 22px;
    padding: 8px 22px;
  }

  .info-card p {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 992px) {
  .ventures-section {
    padding-top: 90px;
  }
  .section-title {
    font-size: 36px;
    max-width: 90%;
  }

  .info-card {
    padding: 22px 28px;
  }

  .card-title {
    font-size: 20px;
    padding: 7px 20px;
  }

  .info-card p {
    font-size: 17px;
    margin-top: 30px;
  }

  .about-card,
  .vision-card,
  .mission-card {
    background-position: center right;
  }

 .about-card::before {
    background-image: url("/assets/images/about-card-bg-mobile.png");
  }

  .vision-card::before {
    background-image: url("/assets/images/vision-card-bg-mobile.png");
  }

  .mission-card::before {
    background-image: url("/assets/images/mission-card-bg-mobile.png");
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .info-cards-container {
    display: flex;
    gap: 24px;
  }
  .info-cards-right {
    gap: 24px;
  }

  .about-card {
    min-height: 350px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .info-card {
    padding: 20px;
    margin-bottom: 0;
  }

  .card-title {
    font-size: 18px;
    padding: 7px 18px;
  }

  .info-card p {
    font-size: 18px;
  }
}

@media (max-width: 565px) {
  .ventures-section {
    padding-top: 66px;
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .info-card p {
    font-size: 16px;
    line-height: 1.43;
  }
  .about-card {
    min-height: 263px;
  }
  .vision-card {
    min-height: 161px;
  }

  .mission-card {
    min-height: 161px;
  }
}

@media (max-width: 430px) {
  .card-title {
    font-size: 16px;
  }
  .info-card p {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.43;
  }
}
.bg-wrapper {
  position: relative;
  z-index: 3;
}

.bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("/assets/images/services-bg-effect.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-wrapper-two {
  position: relative;
  z-index: 2;
}
.bg-wrapper-two::before {
  content: "";
  position: absolute;
  top: -830px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/bg-building-framework.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* ======SERVICES SECTION====== */

.services-section {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  color: var(--white);
}



.services-section > * {
  position: relative;
  z-index: 2;
}

.values-box {
  margin-bottom: 130px;
}

.values-heading {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
  max-width: 90%;
}

.sunset-font {
  color: var(--sunset);
  color: var(--sunset);
  background: none !important;
  -webkit-text-fill-color: var(--sunset) !important;
  background-clip: initial !important;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.value-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.2px;
}

.value-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 2.25;
  color: var(--ash-gray);
  margin: 0;
  letter-spacing: 0.2px;
}

.services-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding-right: 40px;
}

.services-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.2px;
  margin: 0;
  color: var(--white);
}
.services-title-ar{
  font-size: 40px;
}

.location-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.18px;
  padding: 1px 13px;
  border-radius: 9999px;
  width: fit-content;
  backdrop-filter: blur(6px);
  color: var(--ash-gray);
  background: linear-gradient(
    92.67deg,
    rgba(25, 48, 53, 0.4) -11.58%,
    rgba(12, 12, 12, 0.4) 97.78%
  );
  border: 0.5px solid var(--dark-slate-gray);
  box-shadow: 0px 1px 2px 0px #00000040;
}

.location-subtitle span {
  color: var(--platinum);
}

.services-cards-wrapper {
  position: relative;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.connector-lines {
  position: absolute;
  top: 28%;
  left: 39%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.services-cards .service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.services-cards .service-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
}
.services-cards .service-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.service-card {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; 
  background-image: url(/assets/images/service-card-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px; 
  transition: transform 0.3s ease;
}

[dir="rtl"] .service-card::before {
  transform: scaleX(-1); 
}
.service-card:hover {
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
}

.card-icon {
  height: 58px;
  width: 58px;
  display: block;
}

.card-description-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.card-description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ash-gray);
  margin: 0;
}

.framework-section {
    padding-top: 150px;
  }


/* Responsive Design */
@media (max-width: 1440px) {
  .values-box {
    padding: 35px 0px;
  }

  .values-heading {
    font-size: 32px;
  }

  .services-title {
    font-size: 36px;
  }

  .service-card {
    padding: 18px;
    min-height: 180px;
  }

  .card-icon {
    height: 36px;
    width: 36px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }

  .connector-lines {
    left: 35%;
  }
}

@media (max-width: 1200px) {
  .services-title {
    font-size: 32px;
  }

  .values-grid {
    gap: 30px;
  }
  .connector-lines {
    top: 29%;
    left: 33%;
  }
}

@media (max-width: 992px) {

  .values-box {
    padding: 30px 0;
    margin-bottom: 50px;
  }

  .values-heading {
    font-size: 28px;
    max-width: 100%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .services-content-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 28px;
  }

  .service-card {
    padding: 16px;
    min-height: 170px;
  }

  .service-card-title {
    font-size: 17px;
  }

  .card-description {
    font-size: 12px;
  }
  .connector-lines {
    top: 24%;
    left: 40%;
  }
}

@media (max-width: 768px) {
  .services-section{
    padding-top: 90px 0;
  }
  .values-box {
    padding: 25px 0;
    margin-bottom: 40px;
  }

  .values-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-title {
    font-size: 26px;
  }

  .connector-lines {
    display: none;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding-top: 66px;
  }

  .values-box {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .values-heading {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .value-icon {
    width: 32px;
    height: 32px;
  }

  .value-title {
    font-size: 16px;
  }

  .value-description {
    font-size: 14px;
    line-height: 1.43;
  }

  .services-title {
    font-size: 22px;
  }

  .location-subtitle {
    font-size: 14px;
  }

  .services-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px;
    overflow-y: hidden;
  }

  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-height: 180px;
    padding: 14px;
  }

  .services-cards .service-card:nth-child(2) {
    align-self: auto;
  }

  .service-card-title {
    font-size: 16px;
  }

  .card-description {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-icon {
    height: 28px;
    width: 28px;
  }

  .services-cards::-webkit-scrollbar {
    display: none;
  }
}

.process-section * {
  box-sizing: border-box;
}

.process-section {
  padding-top: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.process-section-box {
  background-image: url("/assets/images/process-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a1517;
  border-radius: 16px;
  color: var(--white);
  overflow: hidden;
  padding: 43px 150px;
  display: flex;
  flex-direction: column;
}

.process-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-video-logo {
  width: 100%;
  max-width: 466px;
  height: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); 
  background-color: transparent;
}

.process-steps-wrapper {
  width: 100%;
  margin-bottom: 1rem;
}

.process-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}

.process-step {
  color: var(--white);
  font-weight: 300;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.process-step.active {
  color: var(--sunset);
  font-weight: 500;
}

.process-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, #85ffe2 0%, #509988 100%);
  max-width: 162px;
  margin: 0 auto;
}

.process-content-row {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.process-description {
  border-left: 5px solid var(--sunset);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(93.5999984741211px);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.2px;
  padding: 9px 28px;
  display: flex;
  align-items: center;
}

.process-nav-container {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  min-height: 34px;
}

.process-nav-btn {
  background-color: #193035;
  color: var(--sunset);
  border: none;
  cursor: pointer;
  width: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: filter 0.3s ease, transform 0.2s ease;
  padding: 6px 16px;
}

.process-nav-btn.process-prev{
  justify-content: start;
}

.process-nav-btn.process-next{
  justify-content: end;
}

.process-nav-btn:hover {
  filter: brightness(1.2);
}

.process-nav-btn:active {
  transform: scale(0.95);
}

.process-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

#process-next svg {
  transform: rotate(180deg);
}

.hidden {
  display: none !important;
}

@media (max-width: 1440px) {
  .process-line {
    max-width: 100px;
  }
}

@media (max-width: 1200px) {
  .process-step {
    font-size: 36px;
  }
  .process-line {
    max-width: 90px;
  }
  .process-section-box {
    padding: 43px 100px;
  }
  .process-description {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .process-step {
    font-size: 28px;
  }
  .process-line {
    max-width: 80px;
  }
  .process-section-box {
    padding: 30px 70px;
  }
  .process-description {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .process-section{
    padding-top: 90px;
  }
  .process-section-box {
    padding: 40px 20px;
  }

  .process-steps-container {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .process-steps-container::-webkit-scrollbar {
    display: none;
  }
  .process-line {
    max-width: 40px;
    flex-shrink: 0;
  }
    .process-video-logo{
    max-width: 350px;
  }
  .process-description {
    padding: 16px 20px;
    font-size: 20px;
  }
  .process-step {
    font-size: 24px;
  }
  .process-nav-container {
    justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  .process-video-logo{
    max-width: 239px;
  }
  .process-section{
    padding-top: 66px;
  }
  .process-description {
    padding: 10px 12px;
    font-size: 16px;
  }
  .process-step {
    font-size: 16px;
    padding: 0 4px;
  }
  .process-line {
    max-width: 20px;
  }
}

/* LAST TWO SECTIONS */

.verticals-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  box-sizing: border-box;
}
.verticals-container {
  background-image: url("/assets/images/verticals-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 136px;
  border-radius: 16px;
  position: relative;
}

.verticals-section .section-header {
  text-align: center;
}

.verticals-section .section-header p {
  margin-bottom: 24px;
}

.verticals-section .section-header h2 {
  max-width: none;
  margin-bottom: 54px;
}
.verticals-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 40px;
}
.flip-card {
 aspect-ratio: 1 / 1;
  max-height: 320px;
  perspective: 1000px;
  width: 100%;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card-inner.is-flipped {
  transform: rotateY(180deg);
}
.flip-card-inner .flip-card-front {
    opacity: 1;
    transition: opacity 0.3s;
}

.flip-card-inner .flip-card-back {
    opacity: 0;
    transition: opacity 0.3s;
}

/* When flipped */
.flip-card-inner.is-flipped .flip-card-front {
    opacity: 0;
}

.flip-card-inner.is-flipped .flip-card-back {
    opacity: 1;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 33px 20px;
  box-sizing: border-box;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  max-height: 320px;
  max-width: 376px;
   
}
.flip-card-front {
  justify-content: center;
  align-items: center;
  text-align: center;
   background: linear-gradient(180deg, #142528 8.15%, #172C30 100%);
  /* background: linear-gradient( 180deg, rgba(12, 12, 12, 0.25) 8.15%, rgba(25, 48, 53, 0.25) 100% ); */
  backdrop-filter: blur(50px);
}
.flip-card-front::before,
.flip-card-back::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(43, 255, 255, 0.32) 0%,
    rgba(43, 255, 255, 0.1) 50%,
    rgba(43, 255, 255, 0.16) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.flip-card-back {
  transform: rotateY(180deg);
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 28px;
    padding-bottom: 28px; 
  background-image: url(/assets/images/flip-card-back-bg.png);
      background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.verticals-section .card-front-icon {
  width: 130px;
  height: 130px;
}
.verticals-section .card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--platinum);
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.2px;
  margin-top: -15px;
}

.verticals-section .card-back-title {
  font-size: 13px;
  margin-bottom: -15px;
  margin-left: 36px;
}
.verticals-section .cards-subtitle {
  color: var(--platinum);
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1.4;
  height: 44px;
}
.card-back-header {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.card-icon-img-back { 
  position: absolute;
  width: 18px;
  height: 18px;
}
/* .card-back-effect {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  width: 100%;
  opacity: 0.5;
} */
.details-list {
  list-style: none;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.2px;
  color: var(--platinum);
  text-align: left;
  width: fit-content;
  margin: auto 0;
}
.details-list li {
  display: flex;
  align-items: flex-start;
}
.details-list .bullet {
  width: 8px;
  height: 8px;
 color: #6abfa1;
  display: inline-block;
  border-radius: 50%;
  box-shadow: inset 0px -3px 7.1px rgba(25, 48, 53, 0.89);
margin: 0 12px 6px 8px;
}

.flip-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 16px;
  background-color: rgba(133, 255, 226, 0.05);
  color: #d5fff0;
  transition: background-color 0.3s ease;
}
.flip-btn:hover {
  background-color: rgba(133, 255, 226, 0.15);
}

/* Tablet Screens (768px - 1024px) */
@media (max-width: 1300px) {
  .verticals-section .section-header .title {
    width: 80%;
    font-size: 28px;
  }

  .verticals-section .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

}
@media (max-width: 992px) {
  .verticals-container {
    padding: 45px 40px;
  }
}

@media (max-width: 768px) {

  .verticals-section{
    padding-top: 90px;
  }
  .verticals-section .cards-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    gap: 0;
    padding-bottom: 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .verticals-section .cards-grid::-webkit-scrollbar {
    display: none;
  }

  .flip-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    scroll-snap-align: center;
    padding: 0 40px; 
    box-sizing: border-box;
    margin: 0 !important;
    perspective: 1000px; /* 3D effect perspective */
  }


  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    perspective: 1000px; 
  }

  .flip-card-inner.is-flipped {
    transform: rotateY(180deg);
  }

  .flip-card-front {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding-bottom: 16px;
  }

  .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding-bottom: 16px;
  }

  .slider-controls-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    box-sizing: border-box;
    z-index: 5;
  }

  .slider-arrow {
    pointer-events: auto;
    background: transparent;
    border: none;
    cursor: pointer;
            padding: 10px 3px 10px 3px
  }

  .slider-pagination {
    position: absolute;
    bottom: 73px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 7px;
    pointer-events: auto;
  }

  .pagination-dot {
    width: 22px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: 0.3s;
  }

  .pagination-dot.active {
    background-color: #ffd081;
    opacity: 1;
  }
  /* .verticals-section .card-front-icon {
    width: 100px;
    height: 100px;
} */
.verticals-section .card-title{
  font-size: 16px;
}

.verticals-section .card-back-title {
 font-size: 13px;
        margin-left: 32px;
        padding: 0;
}
.verticals-section .cards-subtitle {
  font-size: 14px;
  margin-bottom: 34px;
}

.details-list {
  font-size: 12px;
    padding: 0 ;
}
.slider-arrow:disabled,
.slider-arrow.disabled {
    cursor: default !important; 
    opacity: 0.5;              
    pointer-events: none;     
}
}
@media (max-width: 576px){
  .flip-card{
    padding: 0 ;
  }
}


/* FAQ SECTION  */
.faq-section {
  position: relative;
  z-index: 1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.2px;
  padding-top: 150px;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  width: 1200px;
  height: 1200px;
  opacity: 0.9;
}

.faq-section::before {
  background-image: url("/assets/images/faq-left-bg.png");
  left: 200px;
  top: -100px;
  transform: translateX(-50%);
}

.faq-section::after {
  background-image: url("/assets/images/faq-right-bg.png");
  right: 0;
  top: -700px;
  width: 700px;
}
.faqs-heading {
  max-width: none;
  text-align: left;
}

#faq-list {
    border-bottom: 0.5px solid transparent; 
    border-image: linear-gradient(90deg, rgba(25, 48, 53, 0) 0%, #6BE9FF 49.52%, rgba(25, 48, 53, 0) 100%);
    border-image-slice: 1; 
    margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  opacity: 1;
  max-height: 500px;
  will-change: max-height, opacity, margin-bottom;
  transition: max-height 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.2s ease, transform 0.2s ease, margin-bottom 0.2s ease;
}

.faq-item.hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  margin-bottom: 0;
}

.question {
  display: flex;
  gap: 16px;
  cursor: pointer;
  padding: 8px 0;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 32px;
  color: var(--sunset);
  transition: transform 0.3s ease-in-out;
  line-height: 1;
}

.question-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  padding-left: 60px;
  color: var(--platinum);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.faq-item.active .answer {
  max-height: 200px;
  padding-top: 8px;
  padding-bottom: 16px;
}

.answer p {
  border-left: 1px solid var(--ash-gray);
  padding-left: 10px;
}

.answer p strong {
  font-weight: 700;
}

.decorative-line {
  width: 150px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(78, 142, 124, 0.6),
    transparent
  );
  margin-bottom: 0.5rem;
}

.toggle-btn-container {
  text-align: center;
}
.show-more-btn {
  font-family: "Inter", sans-serif;
  position: relative;
  background-color: #85ffe20d;
  color: transparent;
  background-image: linear-gradient(172.52deg, #d5fff0 35.89%, #6abfa1 214.55%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: none;
  z-index: 1;
  overflow: hidden;
}

.show-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #85ffe20d;
  border-radius: 16px;
  z-index: -1;
}

.show-more-btn svg {
  transition: transform 0.4s ease-in-out;
}

.show-more-btn.less svg {
  transform: rotate(180deg) translateY(-2px);
}

.socials-container {
  margin: 60px 0;
  border-radius: 16px;
}

.socials-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 4rem 2rem;
  background-image: url("/assets/images/socials-content-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  border: 1px solid transparent;
}

.socials-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(43, 255, 255, 0.32) 0%,
    rgba(43, 255, 255, 0.1) 50%,
    rgba(43, 255, 255, 0.16) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.socials-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); 
  width: 241px;
  height: 2px; 
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(43, 255, 255, 0) 0%,
    #2bffff 50%,
    rgba(43, 255, 255, 0) 100%
  );

  backdrop-filter: blur(4px); /* your blur */
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 60%;
  margin: 0 auto;
}
.socials-content p {
  font-size: 20px;
  color: var(--platinum);
  margin: 0;
}

.socials-content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(90deg, #eaeaea 0%, #b0bfc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
  .socials-content-ar h3{
    font-size: 32px;
  }

.socials-icon {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.socials-icon a {
  display: inline-block;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.socials-icon a img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  opacity: 1;
}


.site-footer-bg {
  position: relative;
  padding-top: 70px;
  min-height: 300px;
  display: flex;
  align-items: start;
}

.site-footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.5rem;
}

.footer-logo {
  flex: 1;
  min-width: 170px;
}

.footer-logo img {
  height: 53px;
  width: auto;
}

.footer-center {
  flex: 2;
  text-align: center;
  color: #b0bfc1;
  font-size: 14px;
  font-weight: 500;
}

.footer-center p {
  margin: 0;
}

.footer-socials {
  flex: 1;
  min-width: 164px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.footer-socials a {
  display: inline-block;
}

.footer-socials img {
  height: 35px;
  width: 35px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-footer {
    border-top: 1px solid #ffffff21;
    padding: 40px 0;
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: space-between; 
    gap: 24px; 
  }

  .footer-center {
    order: 1;
    flex: 1 1 100%; 
    text-align: center;
    margin-bottom: 10px; 
  }

  .footer-logo {
    order: 2;
    flex: 0 1 auto; 
    width: auto;
    min-width: auto; 
    text-align: left; 
  }

  .footer-socials {
    order: 3;
    flex: 0 1 auto; 
    width: auto;
    min-width: auto;
    justify-content: flex-end; 
  }

  .social-text {
    max-width: none;
  }
}

@media (max-width: 1440px) {
  .faq-container {
    max-width: 800px;
    margin-top: 180px;
  }

  .faq-container h1 {
    font-size: 42px;
  }

  .question-text {
    font-size: 18px;
  }

  .socials-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 1200px) {
  .faq-container {
    max-width: 700px;
    margin-top: 160px;
  }

  .faq-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .question-text {
    font-size: 17px;
  }

  .answer {
    font-size: 15px;
    line-height: 22px;
  }

  .socials-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .faq-section::before {
    left: 0;
    width: 100%;
    transform: translateX(0)
  }

  .faq-section::after {
    width: 100%;
  }
  .faq-container {
    margin-top: 140px;
    padding: 0 1rem;
  }

  .faq-container h1 {
    font-size: 32px;
  }

  .question-text {
    font-size: 16px;
  }

  .socials-content {
    padding: 3rem 1.5rem;
  }

  .socials-content h3 {
    font-size: 26px;
  }

  .socials-icon a img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .faq-section{
    padding-top: 90px;
  }
  .faq-container {
    margin-top: 120px;
  }

  .faq-container h1 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
  }

  .question {
    gap: 12px;
  }

  .icon {
    font-size: 22px;
  }

  .question-text {
    font-size: 16px;
  }

  .answer {
    font-size: 14px;
    /* padding-left: 24px; */
  }

  .socials-content {
    padding: 2.5rem 1rem;
  }

  .socials-content p {
    font-size: 18px;
  }

  .socials-content h3 {
    font-size: 22px;
    max-width: 90%;
  }

  .socials-icon {
    gap: 18px;
  }

  .socials-icon a img {
    width: 36px;
    height: 36px;
  }

  .socials-content img {
    width: 80%;
  }
}

/* ✅ Phones (max 576px) */
@media (max-width: 576px) {
  .faq-section {
    padding-top: 66px;
  }

  .faq-container {
    margin-top: 100px;
  }

  .faq-container h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .question-text {
    font-size: 15px;
    line-height: 22px;
  }

  .answer {
    font-size: 14px;
    line-height: 22px;
    padding-left: 70px;
  }

  .socials-content {
    padding: 2rem 1rem;
  }

  .socials-content p {
    font-size: 16px;
  }

  .socials-content h3 {
    font-size: 20px;
    max-width: 100%;
  }

  .socials-icon a img {
    width: 42px;
    height: 42px;
  }
  .nav-icon{
   width: 24px;height: 24px;
  }
}

/* ✅ Small phones (max 400px) */
@media (max-width: 400px) {
  .faq-container h1 {
    font-size: 20px;
  }

  .question-text {
    font-size: 14px;
  }

  .socials-content h3 {
    font-size: 18px;
  }

  .show-more-btn {
    font-size: 12px;
    padding: 4px 6px;
  }
}


.framework-kicker {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 33px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
}

.process-columns-box {
  margin-top: 67px;
}

.process-column {
  /* padding: 0; */
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
/* --- Process Item Layout --- */
.process-item {
  display: flex;
  gap: 20px;
  margin-bottom: 42px;
  position: relative;
}

/* --- Number Styling --- */
.process-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(180deg, #ffd081 0%, #eaeaea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2px;
  /* width: 59px; */
}

/* --- Content Wrapper --- */
.process-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 350px;
}

/* --- Vertical Line (Visual Connector) --- */
.process-item::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 60px;
  bottom: -20px;
  width: 1px;
  background: var(--ash-gray);
  display: block;
}

.col-lg-4:last-child .process-item:last-child::before {
  display: none;
}

.process-heading {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 8px 12px 8px 20px;
  border-radius: 47px;
  border: 1px solid transparent;
  background: linear-gradient(257.25deg, #0c0c0c -95.76%, #193035 113.48%)
      padding-box,
    linear-gradient(
        156.14deg,
        rgba(60, 91, 96, 0.24) -1.14%,
        rgba(124, 188, 198, 0.24) 116.42%
      )
      border-box;
}

.process-heading span {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  background: linear-gradient(172.52deg, #d5fff0 35.89%, #6abfa1 214.55%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 4px #00000040;
}

/* --- Description Text --- */
.process-text {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Placeholder Image Styling */
.icon-placeholder {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 1600px) {
  .process-content {
    max-width: 320px;
  }
}

@media (max-width: 1400px) {
  .process-content {
    max-width: 280px;
  }
  .process-heading span {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .process-content {
    max-width: 200px;
  }
  .process-heading span {
    font-size: 14px;
  }

  .process-text {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .process-content {
    max-width: 250px;
  }
  .process-heading span {
    font-size: 16px;
  }

  .process-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .framework-section {
    padding-top: 90px;
  }
  .framework-kicker {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .process-column {
    align-items: center;
  }
  .process-content {
    max-width: none;
     gap: 20px;
  }
  .dekstop-br{
    display: none;
  }
}

@media (max-width: 576px) {
  .framework-section {
    padding-top: 66px;
  }

  .verticals-section{
    padding-top: 66px;
}
  .process-heading {
    gap: 12px;
  }

  .process-heading img {
    width: 24px;
  }

  .process-heading span {
    font-size: 14px;
  }

  .process-text {
    font-size: 12px;
  }

  .process-column {
    align-items: start;
  }
  .process-number {
    font-size: 36px;
  }
  .process-item::before {
    left: 20px;
    bottom: 0;
  }
  .process-content {
     gap: 12px;
  }

}

@media (max-width: 375px) {
  .process-number {
    font-size: 32px;
  }

  .process-item {
    padding: 14px;
  }
  .details-list {
    gap: 6px;
    line-height: 16px;
    font-size: 12px;
}
}

@media (max-width: 350px) {
  .process-number {
    font-size: 28px;
  }
  .process-item {
    padding: 12px;
  }

  .process-heading span {
    font-size: 14px;
  }

  .process-heading img {
    width: 28px;
  }

  .process-text {
    font-size: 12px;
  }
}

  /* --- SCROLL ANIMATIONS --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.no-transition {
  transition: none !important;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 {
  transition-delay: 0.2s;
}
.fade-in-up.delay-2 {
  transition-delay: 0.4s;
}
.fade-in-up.delay-3 {
  transition-delay: 0.6s;
}

.fade-in-up.delay-4 {
  transition-delay: 0.8s;
}
.fade-in-up.delay-5 {
  transition-delay: 1.0s;
}

.fade-in-up.delay-6 {
  transition-delay: 1.2s;
}
.fade-in-up.delay-7 {
  transition-delay: 1.4s;
}
.fade-in-up.delay-8 {
  transition-delay: 1.6s;
}
.fade-in-up.delay-9 {
  transition-delay: 1.8s;
}
