/* =========================
   FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;

  background:
    linear-gradient(
      90deg,
      #efe3aa 0%,
      #e8d8c5 48%,
      #ddb9d6 100%
    );

  min-height: 100vh;
}
/* =========================
   MARKET TICKER
========================= */

.market-ticker {

  position: relative;

  height: 42px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background:

    radial-gradient(
      circle at 18% 75%,
      rgba(47, 73, 180, 0.45),
      transparent 28%
    ),

    radial-gradient(
      circle at 58% 45%,
      rgba(29, 50, 130, 0.45),
      transparent 32%
    ),

    radial-gradient(
      circle at 90% 78%,
      rgba(0, 135, 125, 0.22),
      transparent 25%
    ),

    #050812;

  border-bottom: 1px solid rgba(255,255,255,0.05);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ticker-track {

  display: flex;
  align-items: center;

  gap: 46px;

  width: max-content;

  animation: marketTicker 26s linear infinite;
}

/* ITEMS */

.ticker-track span {

  display: flex;
  align-items: center;

  gap: 10px;

  white-space: nowrap;

  color: rgba(255,255,255,0.78);

  font-size: 12px;
  font-weight: 400;

  letter-spacing: 0.3px;
}

/* ICON */

.ticker-track span i {

  color: #ddb9d6;

  font-size: 11px;

  opacity: 0.9;
}

/* VALUE */

.ticker-track strong {

  padding: 4px 10px;

  border-radius: 30px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* POSITIVE */

.ticker-track .up {

  color: #9ff3c8;

  background: rgba(34,197,94,0.12);

  border: 1px solid rgba(34,197,94,0.15);
}

/* NEGATIVE */

.ticker-track .down {

  color: #ffb0c3;

  background: rgba(239,68,68,0.10);

  border: 1px solid rgba(239,68,68,0.12);
}

/* HOVER */

.market-ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ANIMATION */

@keyframes marketTicker {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   TOP BAR
========================= */

.top-banner {

  height: 42px;

  color: #fff;

  font-size: 13px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================
   HERO SECTION
========================= */

.hero-section {
  min-height: auto;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 75%,
      rgba(47, 73, 180, 0.45),
      transparent 28%
    ),

    radial-gradient(
      circle at 58% 45%,
      rgba(29, 50, 130, 0.45),
      transparent 32%
    ),

    radial-gradient(
      circle at 90% 78%,
      rgba(0, 135, 125, 0.25),
      transparent 25%
    ),

    #050812;

  color: #ffffff;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  padding: 18px 0;
}

.logo-area {
  display: flex;
  align-items: center;

  text-decoration: none;
}

/* =========================
   NAV LINKS
========================= */

.navbar-nav {
  gap: 40px;
}

.nav-link {
  color: #ffffff !important;

  font-size: 15px;
  font-weight: 400;

  transition: 0.3s ease;
}

.nav-link:hover {
  color: #7288ff !important;
}

.login-link {
  color: #ffffff;

  text-decoration: none;

  margin-right: 22px;

  font-size: 15px;
}

/* =========================
   BUTTONS
========================= */

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 26px;

  border-radius: 50px;

  background:
    linear-gradient(
      90deg,
      #efe3aa 0%,
      #e6d3c2 48%,
      #d8b4d3 100%
    );

  color: #111111;

  border: 1px solid rgba(255,255,255,0.45);

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.4s ease;
}

.demo-btn:hover {
  background:
    linear-gradient(
      135deg,
      #f2e7b7 0%,
      #ead8ca 50%,
      #ddb9d6 100%
    );

  color: #000000;

  box-shadow:
    0 10px 28px rgba(214,184,204,0.22);

  transform: translateY(-3px);
}

.docs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 24px;

  border-radius: 50px;

  border: 1px solid rgba(255,255,255,0.75);

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: 0.3s ease;
}

.docs-btn:hover {
  background: rgba(255,255,255,0.08);

  color: #ffffff;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  align-items: center;

  padding-top: 105px;
  padding-bottom: 105px;
}

.hero-left h1 {
  margin: 0;

  font-size: 66px;
  line-height: 1.04;

  font-weight: 300;

  letter-spacing: -2px;

  max-width: 880px;
}
.logo-area img {
  transition: 0.3s ease;
}
.hero-left h1 span {
      background: linear-gradient(25deg, #efe3aa 0%, #e6d3c2 48%, #d8b4d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-right {
  padding-left: 30px;
}

.hero-right p {
  margin-bottom: 24px;

  color: rgba(255,255,255,0.9);

  font-size: 20px;
  line-height: 1.8;

  font-weight: 300;

  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* =========================
   HERO VIDEO
========================= */

.hero-video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0.95;

  filter:
    blur(2px)
    brightness(0.55)
    saturate(1.1);
}

/* PREMIUM DARK GLASS OVERLAY */

.hero-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.72) 100%
    );

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  z-index: 1;
}

/* CONTENT ABOVE VIDEO */

.custom-navbar,
.hero-content {
  position: relative;
  z-index: 3;
}
/* =========================
   MOBILE NAVBAR
========================= */

.navbar-toggler {
  border: none;
  padding: 0;

  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;

  width: 28px;
  height: 2px;

  background: #ffffff;

  position: relative;

  transition: 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";

  position: absolute;
  left: 0;

  width: 28px;
  height: 2px;

  background: #ffffff;

  transition: 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* SCROLLED NAV */

.custom-navbar.nav-scrolled .navbar-toggler-icon,
.custom-navbar.nav-scrolled .navbar-toggler-icon::before,
.custom-navbar.nav-scrolled .navbar-toggler-icon::after {
  background: #111111;
}

/* MOBILE MENU */

@media (max-width: 991px) {

  .custom-navbar {
    padding: 14px 0;
  }

  .navbar-collapse {
    margin-top: 18px;

    padding: 24px;

    border-radius: 20px;

    background: rgba(247,247,247,0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(222,222,222,0.7);

    box-shadow:
      0 10px 40px rgba(0,0,0,0.08);
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-link {
    color: #111111 !important;

    font-size: 16px;

    padding: 10px 0;
  }

  .nav-right {
    margin-top: 22px;

    display: flex;
    flex-direction: column;

    align-items: flex-start !important;

    gap: 16px;
  }

  .login-link {
    color: #111111;

    margin-right: 0;
  }

  .demo-btn {
    width: 100%;

    justify-content: center;
  }

}

@media (max-width: 991px) {

  .hero-section {
    min-height: auto;
  }

  .custom-navbar {
    padding: 14px 0;
  }

  .hero-content {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .hero-left h1 {
    font-size: 46px;

    line-height: 1.08;

    margin-bottom: 35px;
  }

  .hero-right {
    padding-left: 0;
  }

  .hero-right p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

}
/* default nav */
.custom-navbar {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 999;


  transition: all 0.35s ease;
}

/* after scroll */
.custom-navbar.nav-scrolled {
  position: fixed;

  background: rgba(247,247,247,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid #dedede;

  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.custom-navbar.nav-scrolled .nav-link,
.custom-navbar.nav-scrolled .login-link {
  color: #111111 !important;
}
/* =========================
   TRUSTED CAROUSEL
========================= */
.trusted-section {
  padding: 80px 0;
  background: transparent;
  overflow: hidden;
}

.trusted-title {
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 45px;
  text-align: center;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      #efe3aa 0%,
      rgba(239,227,170,0.85) 35%,
      transparent 100%
    );
}

.logo-carousel::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #ddb9d6 0%,
      rgba(221,185,214,0.85) 35%,
      transparent 100%
    );
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 45s linear infinite;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: 75px;
  padding-right: 75px;
}

.logo-set img {
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;

  opacity: 0.78;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-set img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-set {
    gap: 45px;
    padding-right: 45px;
  }

  .logo-set img {
    max-width: 120px;
    max-height: 34px;
  }
}

/* =========================
   FEATURES SECTION
========================= */
.features-section {
  position: relative;

  padding: 110px 0;

  background: #ffffff;

  overflow: hidden;
}

/* LEFT SHADE */

.features-section::before {
  content: "";

  position: absolute;

  left: -220px;
  top: 434px;

  width: 720px;
  height: 720px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(214, 179, 192, 0.42) 0%,
      rgba(214, 179, 192, 0.22) 38%,
      rgba(214, 179, 192, 0.08) 58%,
      transparent 76%
    );

  filter: blur(35px);

  z-index: 0;
}

/* RIGHT SHADE */

.features-section::after {
  content: "";

  position: absolute;

    right: 30px;
    bottom: -340px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(222, 197, 183, 0.42) 0%,
      rgba(222, 197, 183, 0.24) 38%,
      rgba(222, 197, 183, 0.10) 58%,
      transparent 76%
    );

  filter: blur(40px);

  z-index: 0;
}

/* KEEP CONTENT ABOVE SHADES */

.features-section .container {
  position: relative;
  z-index: 2;
}

.features-heading {
  margin-bottom: 42px;
}

.features-heading h2 {
  color: #3d4a59;
  font-size: 52px;
  font-weight: 600;
}

.features-heading p {
  color: #3d4a59;
  font-size: 22px;
  font-weight: 300;
}

.project-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(61,74,89,0.10);
  border: 1px solid rgba(61,74,89,0.06);
}

.project-top {
  padding: 22px 26px 16px;
}

.project-top h3 {
  color: #263241;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-top p {
  margin: 0;
  color: #596575;
  font-size: 13px;
}

.project-top p span {
  margin-right: 14px;
  color: #263241;
}

.project-top i {
  color: #b89cd2;
  margin-right: 5px;
}

.project-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.status-badge,
.type-badge {
  width: max-content;
     padding: 6px 16px;
    border-radius: 40px;
    font-size: 11px;
  
  font-weight: 500;
}

.status-badge {
  background: linear-gradient(90deg, #efe3aa 0%, #e6d3c2 48%, #d8b4d3 100%);
  color: #263241;
}

.status-badge.dark {
  background: #3d4a59;
  color: #ffffff;
}

.type-badge {
  background: rgba(255,255,255,0.88);
  color: #3d4a59;
  border: 1px solid rgba(216,180,211,0.55);
}

.yield-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 98px;
  height: 82px;
  border-radius: 14px;
  background: rgba(0,0,0,0.80);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.yield-badge strong {
  font-size: 27px;
  line-height: 1;
}

.yield-badge small {
  font-size: 11px;
  margin-top: 6px;
}

.countdown-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 18px 24px;

  background: rgba(239,227,170,0.72);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.countdown-box span {
  color: #263241;
  font-size: 13px;
}

.countdown-box strong {
  color: #263241;
  font-size: 22px;
}

.project-body {
  padding: 24px 26px 28px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  color: #263241;
  margin-bottom: 12px;
}

.progress-info span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #b89cd2;
  border-radius: 50%;
  margin-right: 8px;
}

.progress-bar {
  height: 12px;
  border-radius: 40px;
  background:#efefef;
  overflow: hidden;
  margin-bottom: 28px;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(90deg, #efe3aa 0%, #e6d3c2 48%, #d8b4d3 100%);
}

.project-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.project-stats.bottom {
  border-top: 1px solid rgba(216,180,211,0.55);
  padding-top: 22px;
  margin-bottom: 0;
}

.project-stats small {
  display: block;
  color: #596575;
  font-size: 13px;
  margin-bottom: 6px;
}

.project-stats strong {
  color: #263241;
  font-size: 19px;
  font-weight: 600;
}

.project-btn {
  display: block;
  text-align: center;
  color: #3d4a59;
  text-decoration: none;
  font-weight: 700;
  padding-top: 24px;
  border-top: 1px solid rgba(216,180,211,0.55);
}
.image-info-box {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.image-info-box div {
 padding: 12px 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* TOP LINE */

.image-info-box span {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #596575;

  font-size: 12px;
  line-height: 1;

  margin-bottom: 10px;
}

/* ICON */

.image-info-box i {
  color: #b89cd2;
  font-size: 13px;
}

/* NUMBER */

.image-info-box strong {
  display: block;

  color: #263241;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.2;
}
.image-info-bar {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  background:
    linear-gradient(
      90deg,
      rgba(239,227,170,0.72) 0%,
      rgba(230,211,194,0.72) 48%,
      rgba(216,180,211,0.72) 100%
    );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-info-bar div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.image-info-bar span {
  color: #3d4a59;

  font-size: 13px;
  font-weight: 400;
}

.image-info-bar i {
  color: #9f7cc4;

  font-size: 13px;
  margin-right: 5px;
}

.image-info-bar strong {
  color: #263241;

  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
#underStudyCarousel {
  position: relative;
}

#underStudyCarousel .carousel-inner {
  overflow: hidden;
}

.small-project-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.small-project-card .project-image {
  height: 230px;
  overflow: hidden;
  background: #f3f3f3;
}

.small-project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#underStudyCarousel .carousel-control-prev,
#underStudyCarousel .carousel-control-next {
  width: 46px;
  height: 46px;

  border-radius: 14px;

  top: 44%;

  background: linear-gradient(
    135deg,
    rgba(239, 227, 170, 0.50) 0%,
    rgba(232, 216, 197, 0.50) 50%,
    rgba(221, 185, 214, 0.50) 100%
  );

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.22);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.08);

  opacity: 1;

  transition: all 0.3s ease;
}

/* ICON */

#underStudyCarousel .carousel-control-prev-icon,
#underStudyCarousel .carousel-control-next-icon {
  filter: brightness(0);

  width: 14px;
  height: 14px;

  transition: transform 0.25s ease;
}

/* POSITION */

#underStudyCarousel .carousel-control-prev {
  left: -20px;
}

#underStudyCarousel .carousel-control-next {
  right: -20px;
}

/* HOVER */

#underStudyCarousel .carousel-control-prev:hover,
#underStudyCarousel .carousel-control-next:hover {

  background: linear-gradient(
    135deg,
    #efe3aa 0%,
    #e8d8c5 50%,
    #ddb9d6 100%
  );

  transform: translateY(-3px);

  box-shadow:
    0 14px 30px rgba(0,0,0,0.14);

  border: 1px solid rgba(255,255,255,0.4);
}

/* ICON ANIMATION */

#underStudyCarousel .carousel-control-prev:hover .carousel-control-prev-icon {
  transform: translateX(-2px);
}

#underStudyCarousel .carousel-control-next:hover .carousel-control-next-icon {
  transform: translateX(2px);
}

#underStudyCarousel .carousel-control-prev {
  left: -18px;
}

#underStudyCarousel .carousel-control-next {
  right: -18px;
}
.projects-load-area {
  text-align: center;
  margin: 42px 0 20px;
}

.load-more-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.load-more-line span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8b4d3;
  animation: loadDots 1.4s infinite ease-in-out;
}

.load-more-line span:nth-child(2) {
  animation-delay: 0.15s;
}

.load-more-line span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loadDots {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(216,180,211,0.55);
  background: #ffffff;
  color: #263241;

  padding: 13px 24px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 14px 38px rgba(61,74,89,0.08);
  transition: 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(90deg, #efe3aa, #e6d3c2, #d8b4d3);
  color: #263241;
  box-shadow: 0 18px 45px rgba(61,74,89,0.14);
}

.load-more-btn i {
  font-size: 13px;
  transition: 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(2px);
}

.load-more-btn.last-load:hover i {
  transform: translateX(4px);
}

.extra-project {
  display: none;
}

.extra-project.show {
  display: block;
}


@media (max-width: 991px) {
  .features-heading h2 {
    font-size: 36px;
  }

  .features-heading p {
    font-size: 18px;
  }
}

/* =========================
   CUSTOMERS TABS SECTION
========================= */

.customers-section {
  position: relative;

  padding: 110px 0 130px;

  background: #ffffff;

  overflow: hidden;
}

/* LEFT SHADE */

 

/* RIGHT SHADE */

.customers-section::after {
  content: "";

  position: absolute;

  right: -50px;
  bottom: 0px;

  width: 520px;
  height: 520px;

  border-radius: 50%;


  background:
   radial-gradient(
  circle,
  rgba(222, 197, 183, 0.42) 0%,
  rgba(222, 197, 183, 0.24) 38%,
  rgba(222, 197, 183, 0.10) 58%,
  transparent 76%
);

  filter: blur(40px);

  z-index: 0;
}

/* CONTENT ABOVE SHADE */

.customers-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */

.section-heading span {
  color: #9b8da0;

  font-size: 13px;
  font-weight: 500;

  letter-spacing: 1px;
}

.section-heading h2 {
  margin-top: 8px;

  color: #2b2b2b;

  font-size: 34px;
  line-height: 1.35;
  font-weight: 300;
}

.section-heading h2 strong {
      background: linear-gradient(25deg, #efe3aa 0%, #e6d3c2 48%, #d8b4d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-weight: 500;
}

/* TABS */

.customer-tabs {
  max-width: 680px;

  margin: 80px auto 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 34px;
}

.customer-tab {
  position: relative;

  border: none;
  background: transparent;

  color: #3b3550;

  font-size: 14px;
  font-weight: 400;

  padding-bottom: 13px;

  cursor: pointer;
}

.customer-tab::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  border-radius: 10px;

  background: rgba(255,255,255,0.45);
}

.customer-tab span {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0%;
  height: 3px;

  z-index: 2;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      #9d8cff,
      #dca8d8
    );
}

.customer-tab.active {
  font-weight: 600;
}

.customer-tab.active span {
  animation: tabProgress 4s linear forwards;
}

@keyframes tabProgress {

  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* CONTENT */

.customer-content {
  display: none;

  grid-template-columns: 1fr 1.15fr;

  gap: 80px;

  align-items: center;

  max-width: 980px;
  margin: 0 auto;

  animation: fadeSlide 0.55s ease forwards;
}

.customer-content.active {
  display: grid;
}

@keyframes fadeSlide {

  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* IMAGE SIDE */

.customer-image {
  min-height: 360px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* GLASS CARDS */

.mock-card {
  background:
    rgba(255,255,255,0.32);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.45);

  box-shadow:
    0 18px 40px rgba(170,140,170,0.12);

  border-radius: 18px;

  color: #2f2f45;

  font-weight: 600;
}

.mock-card-back {
  position: absolute;

  width: 190px;
  height: 220px;

  padding: 18px;

  transform: translate(70px, -45px);

  opacity: 0.8;
}

.mock-card-front {
  position: absolute;

  width: 215px;
  height: 350px;

  padding: 18px;

  transform: translate(-35px, 40px);
}

/* KEY SYSTEM */

.key-system {
  position: relative;

  width: 290px;
  height: 290px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo {
  width: 92px;
  height: 92px;

  border-radius: 16px;

  background: #2b2b2b;

  color: #caa2dd;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 46px;
  font-weight: 700;

  box-shadow:
    0 18px 45px rgba(170,140,170,0.18);
}

.key-box {
  position: absolute;

  width: 76px;
  height: 76px;

  border-radius: 16px;

  background:
    rgba(255,255,255,0.35);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 30px rgba(170,140,170,0.12);
}

.key-box.top {
  top: 0;
}

.key-box.left {
  left: 0;
}

.key-box.right {
  right: 0;
}

.key-box.bottom {
  bottom: 0;
}

/* TEXT */

.customer-text h3 {
  color: #2f2f45;

  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;

  max-width: 620px;

  margin-bottom: 24px;
}

.customer-text p {
  color: #514b61;

  font-size: 15px;
  line-height: 1.8;

  max-width: 610px;

  margin-bottom: 22px;
}

.customer-text ul {
  list-style: none;

  padding: 0;
  margin: 0 0 36px;
}

.customer-text li {
  position: relative;

  color: #514b61;

  font-size: 14px;
  line-height: 1.8;

  padding-left: 30px;

  margin-bottom: 15px;
}

.customer-text li::before {
  content: "✓";

  position: absolute;
  left: 8px;

  color: #dedede;

  font-weight: 600;
}

.customer-text h4 {
  color: #2f2f45;

  font-size: 16px;
  font-weight: 700;

  margin-bottom: 44px;
}

.customer-text .brand-text {
  font-size: 34px;
}

/* BUTTON */

.learn-btn {
  display: inline-flex;
  align-items: center;

  color: #8f6dcf;

  border: 1px solid #dedede;

  border-radius: 50px;

  padding: 12px 22px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 400;

  transition: 0.3s ease;
}

.learn-btn:hover {
  background: linear-gradient(
    90deg,
    #efe3aa 0%,
    #e6d3c2 48%,
    #d8b4d3 100%
  );
  color: #3d4a59;
}

/* MOBILE */

@media (max-width: 991px) {

  .customers-section {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .customer-tabs {
    grid-template-columns: 1fr;

    gap: 20px;

    margin: 50px auto;
  }

  .customer-content,
  .customer-content.active {
    grid-template-columns: 1fr;

    gap: 35px;

    text-align: center;
  }

  .customer-text li {
    text-align: left;
  }

}

/* =========================
   TOKENIZATION SECTION
========================= */
 
.tokenization-section {
  position: relative;

  padding: 110px 0;

  background: #ffffff;

  overflow: hidden;
}

/* LEFT SHADE */

.tokenization-section::before {
  content: "";

  position: absolute;

  left: -220px;
  top: 0;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(214, 179, 192, 0.42) 0%,
      rgba(214, 179, 192, 0.22) 38%,
      rgba(214, 179, 192, 0.08) 58%,
      transparent 76%
    );

  filter: blur(35px);

  z-index: 0;
}

/* RIGHT SHADE */

.tokenization-section::after {
  content: "";

  position: absolute;

  right: -220px;
  bottom: -10px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(222, 197, 183, 0.42) 0%,
      rgba(222, 197, 183, 0.24) 38%,
      rgba(222, 197, 183, 0.10) 58%,
      transparent 76%
    );

  filter: blur(40px);

  z-index: 0;
}

/* CONTENT */

.tokenization-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */

.token-heading {
  margin-bottom: 45px;
}

.token-heading h2 {
  color: #3d4a59;

  font-size: 52px;
  line-height: 1.2;
  font-weight: 400;

  letter-spacing: -1px;
}

/* MAIN CARD */

.main-token-card {
  position: relative;

  overflow: hidden;

  border-radius: 32px;

  padding: 70px 0 0 60px;

  background:
    linear-gradient(
      90deg,
      #efe3aa 0%,
      #e8d8c5 48%,
      #ddb9d6 100%
    );

  min-height: 620px;
}

/* LEFT CONTENT */

.token-content {
  position: relative;
  z-index: 3;

  max-width: 560px;
}

.token-label {
  display: inline-block;

  color: rgba(61, 74, 89, 0.75);

  font-size: 16px;
  font-weight: 400;

  margin-bottom: 28px;
}

.token-content h3 {
  color: #3d4a59;

  font-size: 38px;
  line-height: 1.22;

  font-weight: 300;

  letter-spacing: -1px;

  margin-bottom: 60px;
}

/* BUTTON */

.token-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  background: #ffffff;

  color: #3d4a59;

  text-decoration: none;

  padding: 10px 10px 10px 24px;

  border-radius: 60px;

  font-size: 20px;
  font-weight: 400;

  transition: 0.35s ease;
}

.token-btn span {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: #e8edf9;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.token-btn:hover {
  transform: translateY(-3px);

  color: #3d4a59;

  box-shadow:
    0 14px 30px rgba(90, 90, 120, 0.12);
}

/* DASHBOARD IMAGE */

.token-dashboard {
 
  width: 980px;

  z-index: 2;
}

.token-dashboard img {
  width: 90%;

  display: block;

  border-radius: 22px;

  box-shadow:
    0 35px 80px rgba(0,0,0,0.24);
}

/* SMALL CARDS */

.small-token-card {
  background: #f7f7f7;

  border-radius: 26px;

  padding: 48px 40px;

  min-height: 290px;

  transition: 0.35s ease;
}

.small-token-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 12px 40px rgba(70,90,180,0.08);
}

.small-token-card h4 {
  color: #3d4a59;

  font-size: 38px;
  line-height: 1.3;

  font-weight: 400;

  margin-bottom: 22px;
}

.small-token-card p {
  color: #5f6992;

  font-size: 22px;
  line-height: 1.6;

  font-weight: 300;

  margin-bottom: 70px;
}

.small-token-card a {
  color: #3d4a59;

  text-decoration: none;

  font-size: 22px;
  font-weight: 400;
}

/* MOBILE */

@media (max-width: 991px) {

  .tokenization-section {
    padding: 80px 0;
  }

  .token-heading h2 {
    font-size: 34px;
  }

  .main-token-card {
    padding: 50px 35px 0;

    min-height: auto;
  }

  .token-content h3 {
    font-size: 30px;
  }

  .token-dashboard {
    position: relative;

    width: 100%;

    right: 0;
    bottom: -40px;

    margin-top: 50px;
  }

  .small-token-card {
    min-height: auto;
  }

  .small-token-card h4 {
    font-size: 28px;
  }

  .small-token-card p {
    font-size: 18px;
  }

}
/* =========================
   PILLAR HOVER SECTION
========================= */

.pillar-section {
  padding: 110px 0;
  background: #ffffff;
}

.pillar-wrapper {
  max-width: 1320px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* CARD */

.pillar-item {
  position: relative;

  height: 640px;

  background: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 8px;

  overflow: hidden;
  cursor: pointer;

  transition: 0.4s ease;
}

/* CARD IMAGE */

.pillar-item img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transform: scale(1.06);

  transition: 0.55s ease;

  z-index: 1;
}

/* DARK OVERLAY */

.pillar-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.80);

  opacity: 0;

  transition: 0.45s ease;

  z-index: 2;
}

/* ACTIVE + HOVER */

.pillar-item.active,
.pillar-item:hover {
  border-color: #050505;
  transform: translateY(-4px);
}

.pillar-item.active img,
.pillar-item:hover img {
  opacity: 1;
  transform: scale(1);
}

.pillar-item.active .pillar-overlay,
.pillar-item:hover .pillar-overlay {
  opacity: 1;
}

/* CONTENT */

.pillar-content {
  position: relative;
  z-index: 3;

  height: 100%;

  padding: 34px 34px 38px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* NUMBER */

.pillar-number {
  background: linear-gradient(
    25deg,
    #efe3aa 0%,
    #e6d3c2 48%,
    #d8b4d3 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 54px;
  line-height: 1;
  font-weight: 500;

  transition: 0.35s ease;
}

/* PLUS ICON */

.pillar-content::after {
  content: "+";

  position: absolute;
  top: 34px;
  right: 34px;

  color: #111111;

  font-size: 30px;
  font-weight: 300;

  transition: 0.35s ease;
}

.pillar-item.active .pillar-content::after,
.pillar-item:hover .pillar-content::after {
  content: "×";
  color: #ffffff;
}

/* BOTTOM */

.pillar-bottom {
  transform: translateY(0);
  transition: 0.4s ease;
}

.pillar-bottom h3 {
  color: #3d4a59;

  font-size: 30px;
  font-weight: 400;

  margin-bottom: 24px;

  transition: 0.35s ease;
}

.pillar-bottom p {
  color: rgba(255,255,255,0.78);

  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;

  max-width: 210px;

  opacity: 0;
  max-height: 0;
  overflow: hidden;

  transition: 0.4s ease;
}

/* ACTIVE + HOVER TEXT */

.pillar-item.active .pillar-bottom,
.pillar-item:hover .pillar-bottom {
  transform: translateY(-90px);
}

.pillar-item.active .pillar-bottom h3,
.pillar-item:hover .pillar-bottom h3 {
  color: #ffffff;
}

.pillar-item.active .pillar-bottom p,
.pillar-item:hover .pillar-bottom p {
  opacity: 1;
  max-height: 240px;
}

/* EXPLORE BUTTON */

.pillar-item.active .pillar-bottom::after,
.pillar-item:hover .pillar-bottom::after {
  content: "Explore";

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 22px;

  width: 104px;
  height: 48px;

  background: linear-gradient(
    90deg,
    #efe3aa 0%,
    #e6d3c2 48%,
    #d8b4d3 100%
  );

  color: #050505;

  border-radius: 20px;

  font-size: 14px;
  font-weight: 400;
}

/* MOBILE */

@media (max-width: 991px) {
  .pillar-section {
    padding: 70px 15px;
  }

  .pillar-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 16px;
  }

  .pillar-item {
    min-width: 260px;
    height: 520px;
  }

  .pillar-bottom h3 {
    font-size: 26px;
  }
}
 
/* =========================
   STATS COUNTER SECTION
========================= */

.stats-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 75%,
      rgba(47, 73, 180, 0.45),
      transparent 28%
    ),

    radial-gradient(
      circle at 58% 45%,
      rgba(29, 50, 130, 0.45),
      transparent 32%
    ),

    radial-gradient(
      circle at 90% 78%,
      rgba(0, 135, 125, 0.25),
      transparent 25%
    ),

    #050812;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  align-items: start;

  gap: 60px;

  text-align: center;
}

.stat-item h3 {
  margin: 0 0 10px;

  background: linear-gradient(25deg, #efe3aa 0%, #e6d3c2 48%, #d8b4d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  font-size: 62px;
  line-height: 1;

  font-weight: 400;

  letter-spacing: -2px;
}

.stat-item .blue {
  background: linear-gradient(25deg, #efe3aa 0%, #e6d3c2 48%, #d8b4d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
  margin: 0;

  color: rgba(255,255,255,0.82);

  font-size: 16px;
  line-height: 1.35;

  font-weight: 300;
}

/* MOBILE */

@media (max-width: 991px) {

  .stats-section {
    padding: 80px 0;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);

    gap: 50px 30px;
  }

  .stat-item h3 {
    font-size: 48px;
  }

  .stat-item p {
    font-size: 14px;
  }

}

@media (max-width: 575px) {

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

}

/* =========================
   LOGIN MODAL OVERLAY
========================= */

.login-modal {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;

  z-index: 9999;
}

.login-modal.active {
  opacity: 1;
  visibility: visible;
}


/* =========================
   LOGIN BOX
========================= */

.login-box {
  width: 420px;
  max-width: 92%;

  background: linear-gradient(145deg, #fff7df, #f4d8ec);

  border-radius: 28px;

  padding: 36px;

  position: relative;

  color: #172033;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  transform: translateY(40px) scale(0.92);
  opacity: 0;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.login-modal.active .login-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}


/* =========================
   CLOSE BUTTON
========================= */

.close-login {
  position: absolute;
  top: 18px;
  right: 22px;

  border: none;
  background: transparent;

  font-size: 30px;

  cursor: pointer;

  color: #172033;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.close-login:hover {
  transform: rotate(90deg);
  opacity: 0.7;
}


/* =========================
   TITLES
========================= */

.login-box h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

.login-subtitle {
  margin: 8px 0 26px;
  opacity: 0.75;
  line-height: 1.5;
}


/* =========================
   LABELS
========================= */

.login-box label {
  display: block;
  margin: 14px 0 8px;
  font-weight: 600;
  font-size: 14px;
}


/* =========================
   INPUTS
========================= */

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;

  padding: 15px 16px;

  border-radius: 16px;

  border: 1px solid rgba(23, 32, 51, 0.15);

  background: rgba(255, 255, 255, 0.85);

  font-size: 15px;

  outline: none;

  transition:
    border 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
  border-color: #172033;

  box-shadow: 0 0 0 4px rgba(23, 32, 51, 0.08);

  background: #fff;
}


/* =========================
   PASSWORD FIELD
========================= */

.password-wrap {
  position: relative;
}

.password-wrap button {
  position: absolute;

  top: 50%;
  right: 14px;

  transform: translateY(-50%);

  border: none;
  background: transparent;

  cursor: pointer;

  font-size: 18px;

  transition: opacity 0.25s ease;
}

.password-wrap button:hover {
  opacity: 0.7;
}


/* =========================
   OPTIONS ROW
========================= */

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: 18px 0;

  font-size: 14px;
}

.remember {
  display: flex !important;
  align-items: center;
  gap: 8px;

  margin: 0 !important;
}

.login-options a,
.signup-text a {
  text-decoration: none;
  color: #172033;
  font-weight: 700;

  transition: opacity 0.25s ease;
}

.login-options a:hover,
.signup-text a:hover {
  opacity: 0.7;
}


/* =========================
   CAPTCHA BOX
========================= */

.captcha-box {
     display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 35px;
    border-radius: 9px;
    border: 1px solid rgba(23, 32, 51, 0.12);
}

.captcha-box label {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0;
}

.captcha-box span {
  font-size: 12px;
  opacity: 0.6;
  font-weight: 600;
}


/* =========================
   LOGIN BUTTON
========================= */

.login-btn {
  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 999px;

  background: #172033;

  color: white;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.login-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 24px rgba(23, 32, 51, 0.25);
}

.login-btn:active {
  transform: scale(0.98);
}


/* =========================
   SIGNUP TEXT
========================= */

.signup-text {
  text-align: center;

  margin-top: 22px;

  font-size: 14px;

  opacity: 0.9;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

  .login-box {
    padding: 28px 22px;
  }

  .login-box h2 {
    font-size: 28px;
  }

  .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

}

.reset-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;

  z-index: 10000;
}

.reset-success-modal.active {
  opacity: 1;
  visibility: visible;
}

.reset-success-box {
  width: 360px;
  max-width: 90%;
  background: #fff;
  border-radius: 26px;
  padding: 34px 28px;
  text-align: center;
  color: #172033;

  transform: translateY(35px) scale(0.9);
  opacity: 0;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.reset-success-modal.active .reset-success-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.checkmark-circle {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;

  border-radius: 50%;
  background: linear-gradient(145deg, #dff7df, #bff0c4);

  display: flex;
  align-items: center;
  justify-content: center;

  animation: popCheck 0.5s ease forwards;
}

.checkmark-circle span {
  font-size: 42px;
  font-weight: 800;
  color: #1f8f3a;
}

.reset-success-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.reset-success-box p {
  margin: 0 0 24px;
  line-height: 1.5;
  opacity: 0.75;
}

.reset-success-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: #172033;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

@keyframes popCheck {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}
/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 90px 0 110px;
  background: #ffffff;
}

/* CTA CARD */

 
.cta-card h2 {
  margin-bottom: 16px;

  color: #3d4a59;

  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
}

.cta-card p {
  max-width: 980px;
  margin: 0 auto 38px;

  color: #556070;

  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* CTA BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 10px 10px 10px 24px;

  background:
    linear-gradient(
      90deg,
      #efe3aa 0%,
      #e6d3c2 48%,
      #d8b4d3 100%
    );

  border-radius: 50px;

  color: #3d4a59;
  text-decoration: none;

  font-size: 15px;
  font-weight: 400;

  transition: 0.35s ease;
}

.cta-btn span {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255,255,255,0.55);

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  color: #111111;

  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.08);
}

/* FAQ HEADING */

.faq-heading {
  margin-bottom: 55px;
}

.faq-heading h2 {
  color: #3d4a59;

  font-size: 36px;
  font-weight: 400;
  letter-spacing: -1px;

  margin-bottom: 14px;
}

.faq-heading p {
  max-width: 850px;
  margin: 0 auto;

  color: #5a6577;

  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* FAQ LIST */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 18px;
}

/* QUESTION */

.faq-question {
  width: 100%;

  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;

  border-radius: 16px;

  padding: 24px 28px;

  color: #3d4a59;

  font-size: 16px;
  font-weight: 400;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  transition: 0.35s ease;
}

.faq-question:hover {
  border-color: rgba(160,180,240,0.6);

  transform: translateY(-2px);

  box-shadow:
    0 10px 30px rgba(90,110,180,0.05);
}

.faq-title {
  text-align: left;
  padding-right: 20px;
}

/* ICON */

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

.faq-icon i {
  color: #3d4a59;

  font-size: 14px;

  transition: 0.35s ease;
}

.faq-item.active .faq-icon i {
  transform: rotate(45deg);
}

/* ANSWER */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: 0.4s ease;
}

.faq-answer p {
  margin: 0;

  padding: 18px 28px 8px;

  color: #5a6577;

  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

/* MOBILE */

@media (max-width: 991px) {
  .faq-section {
    padding: 70px 0 90px;
  }

  .cta-card {
    padding: 40px 24px;
    margin-bottom: 80px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .faq-heading h2 {
    font-size: 30px;
  }

  .faq-question {
    padding: 22px 20px;
  }
}
/* CTA CARD */

.cta-card {
  position: relative;


  margin: 0 auto 110px;

  padding: 70px 80px;

  border-radius: 24px;

  overflow: hidden;

  background:
   linear-gradient(
      rgba(255,255,255,0.2),
      rgba(255,255,255,0.2)
    ),
    url('../images/Slide.jpg');

  background-size: cover;
  background-position: center;

  border: 1px solid rgba(255,255,255,0.55);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* BACKGROUND SHADE */

.cta-card::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -160px;
  top: -160px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(221,185,214,0.35),
      transparent 72%
    );

  filter: blur(30px);
}

/* BADGE */

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  margin-bottom: 26px;

  border-radius: 50px;

  background:
    rgba(255,255,255,0.45);

  border: 1px solid rgba(255,255,255,0.55);

  color: #4f5c72;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.5px;
}

/* TITLE */

.cta-card h2 {
  position: relative;
  z-index: 2;

  margin-bottom: 22px;

  color: #253041;

  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;

  letter-spacing: -2px;
}

/* TEXT */

.cta-card p {
  position: relative;
  z-index: 2;

  max-width: 860px;

  margin: 0 auto 42px;

  color: #556070;

  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

/* ACTIONS */

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  position: relative;
  z-index: 2;
}

/* BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 10px 10px 10px 24px;

  border-radius: 60px;

  text-decoration: none;

  background:
    linear-gradient(
      90deg,
      #efe3aa 0%,
      #e6d3c2 48%,
      #d8b4d3 100%
    );

  color: #253041;

  font-size: 15px;
  font-weight: 500;

  transition: 0.35s ease;
}

.cta-btn span {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255,255,255,0.55);

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  transform: translateY(-3px);

  color: #111111;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.08);
}

/* SECONDARY LINK */

.cta-link {
  color: #556070;

  text-decoration: none;

  font-size: 15px;
  font-weight: 400;

  transition: 0.3s ease;
}

.cta-link:hover {
  color: #111111;
}

/* MOBILE */

@media (max-width: 991px) {

  .cta-card {
    padding: 50px 26px;
  }

  .cta-card h2 {
    font-size: 34px;
  }

  .cta-card p {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

}
.faq-section {
  position: relative;
  overflow: hidden;
}

/* SIMPLE MOVING NETWORK */

.faq-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(61,74,89,0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(61,74,89,0.12) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  animation: moveGrid 12s linear infinite;

  opacity: 0.4;

  z-index: 0;
}

/* GLOW */

.faq-section::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    
    radial-gradient(
      circle at 80% 70%,
      rgba(239,227,170,0.54),
      transparent 30%
    );

  animation: glowMove 8s ease-in-out infinite alternate;

  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

/* ANIMATIONS */

@keyframes moveGrid {

  0% {
    transform: translate(0,0);
  }

  100% {
    transform: translate(-80px,-80px);
  }

}

@keyframes glowMove {

  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-30px);
  }

}

/* =========================
   FOOTER SECTION
========================= */
.footer-section {
  padding: 70px 0 35px;
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;
}

.footer-brand-block img {
  width: 125px;
  margin-bottom: 45px;
}

.footer-contact {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.footer-contact a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: #111827;
  font-size: 16px;
  text-decoration: none;
}

.footer-content {
  padding-top: 18px;
}

.footer-row {
  margin-bottom: 26px;
}

.footer-row h4 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 14px;
}

.footer-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-row a,
.footer-row span {
  color: #111827;
  font-size: 15px;
  text-decoration: none;
}

.footer-row a:hover {
  color: #b58ac0;
}

.footer-disclaimer {
  max-width: 1050px;
  margin-top: 28px;
  font-size: 12.5px;
  line-height: 1.8;
  color: #334155;
}

.footer-bottom {
  margin-top: 44px;
}

.footer-bottom p {
  color: #111827;
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-block img {
    margin-bottom: 30px;
  }
}

/* =========================
   FLOATING BUTTONS
========================= */

/* SUPPORT */

.support-float {
  position: fixed;

  left: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;

  font-size: 20px;

  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.18);

  z-index: 999;

  transition: 0.35s ease;
}

.support-float:hover {
  transform: translateY(-4px) scale(1.05);

  color: #000;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.24);
}

/* SCROLL TOP */

.scroll-top-btn {
  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;

  border: none;
  outline: none;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 18% 75%,
      rgba(47, 73, 180, 0.45),
      transparent 28%
    ),

    radial-gradient(
      circle at 58% 45%,
      rgba(29, 50, 130, 0.45),
      transparent 32%
    ),

    radial-gradient(
      circle at 90% 78%,
      rgba(0, 135, 125, 0.25),
      transparent 25%
    ),

    #050812;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.15);

  color: #fff;

  font-size: 18px;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  z-index: 999;

  transition: 0.35s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.scroll-top-btn:hover {
  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  color: #111;

  transform: translateY(-4px);
}

/* detail page */

.project-detail-section {
  padding: 90px 0;
  background: #ffffff;
}

.project-detail-hero h1 {
  color: #263241;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 28px;
}

.project-detail-labels {
  display: flex;
  gap: 18px;
  color: #596575;
  font-size: 14px;
  margin-bottom: 12px;
}

.project-detail-labels i {
  color: #b89cd2;
}

.project-video-box {
  position: relative;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(61,74,89,0.14);
}

.project-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  padding: 55px;
  background: linear-gradient(
    90deg,
    rgba(239,227,170,0.82) 0%,
    rgba(230,211,194,0.45) 45%,
    rgba(216,180,211,0.16) 100%
  );
  color: #263241;
}

.video-overlay span,
.video-overlay h2 {
  display: block;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
}

.video-overlay button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #263241;
  background: rgba(255,255,255,0.35);
  color: #263241;
  margin-top: 24px;
}
 
 .detail-info-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 175px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  z-index: 3;
}

.detail-info-panel > div {
  min-height: auto;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.detail-info-panel span {
  display: block;
  color: #596575;
  font-size: 13px;
  margin-bottom: 6px;
}

.detail-info-panel i {
  color: #b89cd2;
  margin-right: 6px;
}

.detail-info-panel strong {
  color: #263241;
  font-size: 18px;
  font-weight: 700;
}

.detail-yield-main {
  background: #263241 !important;
}

.detail-yield-main strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
}

.detail-yield-main small {
  color: #ffffff;
  font-size: 13px;
}

 .project-roadmap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 46px 0 58px;
  position: relative;
}

.project-roadmap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #efe3aa, #e6d3c2, #d8b4d3);
}

.roadmap-item {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
  z-index: 2;
}

.roadmap-item h4 {
  color: #263241;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}

.roadmap-item span {
  display: block;
  color: #596575;
  font-size: 13px;
  margin-top: 22px;
}

.roadmap-item::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #d8b4d3;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px #d8b4d3;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.roadmap-item.active::before {
  background: #263241;
  box-shadow: 0 0 0 1px #263241;
}

.roadmap-item.active h4 {
  color: #263241;
}

.roadmap-item.active span {
  color: #596575;
}
 .detail-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(216,180,211,0.55);
  padding-bottom: 18px;
  margin-bottom: 36px;
}

.detail-tabs a {
  color: #3d4a59;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .detail-tabs {
    gap: 13px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 14px;
    margin-bottom: 28px;
    scrollbar-width: none;
  }

  .detail-tabs::-webkit-scrollbar {
    display: none;
  }

  .detail-tabs a {
    flex: 0 0 auto;
    font-size: 14px;
  }
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
}

.detail-block {
  margin-bottom: 42px;
}

.detail-block h2 {
  color: #263241;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 22px;
}

.detail-block p,
.detail-block li {
  color: #596575;
  font-size: 16px;
  line-height: 1.8;
}

.info-banner {
  padding: 16px 22px;
  border-radius: 14px;
  margin-bottom: 24px;
  color: #263241;
  background: linear-gradient(90deg, #efe3aa, #e6d3c2, #d8b4d3);
}
.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  color: #263241;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-head p {
  color: #596575;
  margin: 0;
}

.detail-gallery-section,
.documents-section {
  margin-bottom: 50px;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 18px;
  transition: 0.45s ease;
}

.gallery-slide {
  min-width: calc(33.333% - 12px);
  height: 190px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-zoom,
.gallery-nav {
  border: 0;
  background: rgba(255,255,255,0.82);
  color: #263241;
  backdrop-filter: blur(8px);
}

.gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.document-card {
  position: relative;
  text-align: left;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(216,180,211,0.45);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(61,74,89,0.08);
  cursor: pointer;
}

.document-card > i {
  color: #b89cd2;
  font-size: 26px;
  margin-bottom: 18px;
}

.document-card span {
  display: block;
  color: #263241;
  font-weight: 700;
  margin-bottom: 6px;
}

.document-card small {
  color: #596575;
}

.document-card b {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #263241;
}

.gallery-lightbox,
.feature-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17,24,32,0.78);
  padding: 20px;
}

.gallery-lightbox.active,
.feature-popup.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 86vh;
  border-radius: 22px;
}

.lightbox-close,
.popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #263241;
}

.feature-popup-box {
  position: relative;
  max-width: 430px;
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
}

.popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #263241;
  background: linear-gradient(90deg, #efe3aa, #e6d3c2, #d8b4d3);
}

.feature-popup-box h3 {
  color: #263241;
  font-size: 26px;
  margin-bottom: 12px;
}

.feature-popup-box p {
  color: #596575;
  line-height: 1.7;
}
.under-study-heading {
  margin-top: 70px;
}

@media (max-width: 767px) {
  .under-study-heading {
    margin-top: 45px;
  }
}
@media (max-width: 991px) {
  .gallery-slide {
    min-width: calc(50% - 9px);
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .gallery-slide {
    min-width: 100%;
    height: 230px;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .feature-popup-box {
    padding: 34px 22px;
  }
}
 
.map-box {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(61,74,89,0.10);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sidebar-card.dark-summary {
  position: sticky;
  top: 110px;
  min-height: 650px;
  padding: 32px;
  border-radius: 28px;
  background: #111820;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(17,24,32,0.28);
}

.dark-summary h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 28px;
}

.dark-summary .sidebar-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.dark-summary .sidebar-row span {
  color: rgba(255,255,255,0.68);
}

.dark-summary .sidebar-row strong {
  color: #ffffff;
  text-align: right;
}

.summary-countdown {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(90deg, #efe3aa, #e6d3c2, #d8b4d3);
}

.summary-countdown span {
  display: block;
  color: #263241;
  font-size: 13px;
  margin-bottom: 8px;
}

.summary-countdown strong {
  color: #263241;
  font-size: 22px;
}

.summary-btn {
  display: block;
  text-align: center;
  margin-top: 26px;
  padding: 16px;
  border-radius: 40px;
  color: #263241;
  background: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
/* MODAL */

.investment-modal .modal-dialog {
  max-width: 920px;
}

.investment-modal .modal-content {

  position: relative;

  padding: 70px 80px;

  border-radius: 30px;

  overflow: hidden;

  background:
    linear-gradient(rgba(255,255,255,0.72),
    rgba(255,255,255,0.72)),
    url('../images/Slide.jpg');

  background-size: cover;
  background-position: center;

  border: 1px solid rgba(255,255,255,0.55);

  backdrop-filter: blur(12px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

}

/* LIGHT EFFECT */

.investment-modal .modal-content::before {

  content: "";

  position: absolute;

  top: -120px;
  left: -120px;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(221,185,214,0.28) 0%,
      transparent 72%
    );

  filter: blur(20px);
}

/* CLOSE */

.modal-close {

  position: absolute;

  top: 24px;
  right: 24px;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 14px;

  background:
    rgba(255,255,255,0.55);

  backdrop-filter: blur(8px);

  color: #1f2937;

  transition: 0.3s ease;
}

.modal-close:hover {

  transform: rotate(90deg);

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );
}

/* CONTENT */

.investment-modal-content {
  position: relative;
  z-index: 2;
}

.modal-badge {

  display: inline-flex;

  align-items: center;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255,255,255,0.55);

  border: 1px solid rgba(255,255,255,0.7);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;

  color: #5b6475;

  margin-bottom: 30px;
}

.investment-modal h2 {

  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;

  color: #1f2937;

  margin-bottom: 24px;

  max-width: 700px;
}

.investment-modal p {

  font-size: 20px;
  line-height: 1.8;

  color: #5b6475;

  max-width: 720px;

  margin-bottom: 40px;
}

/* FORM */

.investment-form label {

  display: block;

  font-size: 18px;
  font-weight: 600;

  color: #1f2937;

  margin-bottom: 16px;
}

.investment-form select {

  width: 100%;
  height: 68px;

  padding: 0 24px;

  border-radius: 18px;

  border: 1px solid rgba(31,41,55,0.1);

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(8px);

  font-size: 18px;

  color: #1f2937;

  outline: none;

  transition: 0.3s ease;
}

.investment-form select:focus {

  border-color: #ddb9d6;

  box-shadow:
    0 0 0 4px rgba(221,185,214,0.18);
}

/* BUTTON */

.investment-submit-btn {

  margin-top: 34px;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  height: 68px;

  padding: 0 16px 0 34px;

  border: none;

  border-radius: 60px;

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  font-size: 18px;
  font-weight: 600;

  color: #1f2937;

  transition: 0.35s ease;
}

.investment-submit-btn span {

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255,255,255,0.65);

  display: flex;
  align-items: center;
  justify-content: center;
}

.investment-submit-btn:hover {

  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.12);
}

/* MOBILE */

@media (max-width: 991px) {

  .investment-modal .modal-content {
    padding: 50px 30px;
  }

  .investment-modal h2 {
    font-size: 42px;
  }

  .investment-modal p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .investment-modal h2 {
    font-size: 32px;
  }

  .investment-form select {
    height: 60px;
    font-size: 16px;
  }

  .investment-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* SUCCESS MODAL */

.success-modal-content {

  padding: 70px 50px;

  border-radius: 32px;

  border: 1px solid rgba(255,255,255,0.5);

  background:
    linear-gradient(rgba(255,255,255,0.72),
    rgba(255,255,255,0.72)),
    url('../images/Slide.jpg');

  background-size: cover;
  background-position: center;

  backdrop-filter: blur(12px);

  text-align: center;

  overflow: hidden;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.12);
}

/* CHECK */

.check-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.check-background {

  width: 110px;
  height: 110px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  animation: popIn 0.5s ease;
}

.check-background svg {
  width: 52px;
  height: 52px;

  stroke: #1f2937;
  stroke-width: 6;

  stroke-linecap: round;
  stroke-linejoin: round;

  fill: none;

  stroke-dasharray: 100;
  stroke-dashoffset: 100;

  animation: drawCheck 0.9s ease forwards 0.25s;
}

/* TEXT */

.success-modal-content h3 {

  font-size: 38px;
  font-weight: 600;

  color: #1f2937;

  margin-bottom: 16px;
}

.success-modal-content p {

  font-size: 18px;
  line-height: 1.8;

  color: #5b6475;

  max-width: 500px;

  margin: 0 auto 35px;
}

/* BUTTON */

.success-close-btn {

  height: 60px;

  padding: 0 34px;

  border: none;

  border-radius: 60px;

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  font-size: 17px;
  font-weight: 600;

  color: #1f2937;

  transition: 0.3s ease;
}

.success-close-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 30px rgba(0,0,0,0.12);
}

/* ANIMATIONS */

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 991px) {
  .project-detail-grid,
  .detail-info-panel,
  .project-roadmap {
    grid-template-columns: 1fr;
  }

  .project-roadmap::before {
    display: none;
  }

  .project-detail-hero h1 {
    font-size: 36px;
  }

  .project-video-box {
    height: auto;
  }

  .project-video-box img {
    height: 360px;
  }

  .detail-info-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -80px 18px 20px;
  }
}

@media (max-width: 1199px) {
  .project-detail-grid {
    grid-template-columns: 1fr 340px;
    gap: 28px;
  }

  .sidebar-card.dark-summary {
    padding: 26px;
  }
}

@media (max-width: 991px) {
  .project-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sidebar-card.dark-summary {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 28px;
  }

  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-box {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .project-detail-grid {
    gap: 28px;
  }

  .detail-block {
    margin-bottom: 34px;
  }

  .detail-block h2 {
    font-size: 24px;
  }

  .detail-block p,
  .detail-block li {
    font-size: 15px;
    line-height: 1.7;
  }

  .info-banner {
    padding: 14px 16px;
    font-size: 14px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .detail-gallery img {
    height: 220px;
  }

  .locked-section {
    padding: 38px 20px;
    border-radius: 20px;
  }

  .locked-section h3 {
    font-size: 21px;
  }

  .map-box {
    height: 280px;
    border-radius: 18px;
  }

  .sidebar-card.dark-summary {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .dark-summary h3 {
    font-size: 24px;
  }

  .dark-summary .sidebar-row {
    gap: 12px;
    padding: 15px 0;
  }

  .dark-summary .sidebar-row span,
  .dark-summary .sidebar-row strong {
    font-size: 14px;
  }

  .summary-countdown {
    padding: 16px;
  }

  .summary-countdown strong {
    font-size: 18px;
  }

  .summary-btn {
    padding: 14px;
  }
}
.hero-open-highlight {
  background: linear-gradient(
    90deg,
    rgba(239,227,170,0.95),
    rgba(230,211,194,0.9),
    rgba(216,180,211,0.95)
  ) !important;
}

.hero-open-highlight span {
  color: #263241;
}

.hero-open-highlight span i {
  color: #25b86f;
}

.hero-open-highlight strong {
  display: block;
  color: #263241;
  font-size: 16px;
  line-height: 1.3;
}

.hero-open-highlight small {
  display: block;
  margin-top: 7px;
  color: #596575;
  font-size: 12px;
}

.roadmap-item.done::before {
  background: #25b86f;
  box-shadow: 0 0 0 1px #25b86f;
}

.summary-money-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(239,227,170,0.35);
}

.summary-money-row span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  margin-bottom: 8px;
}

.summary-money-row strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}

.summary-progress-box {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(239,227,170,0.35);
}

.summary-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-progress-top span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.summary-progress-top i {
  color: #25b86f;
  font-size: 10px;
  margin-right: 8px;
}

.summary-progress-top strong {
  color: #ffffff;
  font-size: 18px;
}

.summary-progress-bar {
  height: 13px;
  border-radius: 40px;
  background: rgba(255,255,255,0.18);
 
  overflow: hidden;
}

.summary-progress-bar span {
  display: block;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(
    90deg,
    #efe3aa,
    #e6d3c2,
    #d8b4d3
  );
}

.dark-summary .summary-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {

  .detail-info-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -90px 18px 24px;
  }

  .project-detail-grid {
    grid-template-columns: 1fr;
  }

  .dark-summary {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
  }

  .summary-money-row {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 575px) {

  .project-detail-section {
    padding: 55px 0;
  }

  .project-detail-hero h1 {
    font-size: 34px;
  }

  .project-video-box {
    height: auto;
  }

  .project-video-box img {
    height: 360px;
  }

  .video-overlay {
    padding: 32px;
  }

  .video-overlay span,
  .video-overlay h2 {
    font-size: 38px;
  }

  .detail-info-panel {
    margin: -70px 14px 22px;
  }

  .summary-money-row {
    grid-template-columns: 1fr;
  }

  .project-roadmap {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }

  .project-roadmap::before {
    display: none;
  }

  .roadmap-item {
    text-align: left;
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 14px;
    width: 100%;
  }

  .roadmap-item::before {
    grid-row: 1 / 3;
    margin-top: 5px;
  }

  .roadmap-item h4 {
    margin: 0 0 4px;
  }

  .roadmap-item span {
    margin: 0;
  }

 

  .detail-gallery {
    grid-template-columns: 1fr;
  }

}

.register-section {
  position: relative;
  padding: 80px 0 120px;
  min-height: calc(100vh - 90px);
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url("../images/Slide.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.register-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

/* CARDS */

.register-form-card {
  padding: 55px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.07);
}

.register-visual-card {
  position: relative;
  padding: 70px 80px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
    url("../images/Slide.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PROFESSIONAL PROGRESS */

.register-progress {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 360px;

  margin-bottom: 42px;
}

/* LINE */

.register-progress .progress-line,
.register-progress .progress-fill {

  position: absolute;

  top: 50%;
  left: 18px;

  height: 2px;

  transform: translateY(-50%);

  border-radius: 20px;
}

.register-progress .progress-line {
  width: calc(100% - 36px);
  background: rgba(31,41,55,0.08);
}

.register-progress .progress-fill {
  width: 0%;

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  transition: width 0.4s ease;
}

/* ICONS */

.register-progress span {

  position: relative;
  z-index: 2;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(255,255,255,0.92);

  border: 1px solid rgba(31,41,55,0.06);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #7b8494;
  font-size: 13px;

  box-shadow:
    0 6px 16px rgba(0,0,0,0.04);

  transition: all 0.35s ease;
}

/* ACTIVE */

.register-progress span.active {

  background:
    linear-gradient(
      135deg,
      #efe3aa 0%,
      #e8d8c5 50%,
      #ddb9d6 100%
    );

  color: #1f2937;

  transform: scale(1.04);

  box-shadow:
    0 10px 24px rgba(221,185,214,0.28);
}

/* HOVER */

.register-progress span:hover {
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 575px) {

  .register-progress {
    max-width: 100%;
  }

  .register-progress span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .register-progress .progress-line,
  .register-progress .progress-fill {
    left: 17px;
  }

  .register-progress .progress-line {
    width: calc(100% - 34px);
  }
}
/* FORM STEPS */

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

.form-badge {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 40px;
  background: rgba(255,255,255,0.78);
  color: #5b6475;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 22px;
}

.form-step h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 15px;
}

.form-step p {
  color: #64748b;
  font-size: 17px;
  margin-bottom: 34px;
}

/* FORM FIELDS */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(31,41,55,0.12);
  background: rgba(255,255,255,0.82);
  padding: 0 18px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ddb9d6;
  box-shadow: 0 0 0 4px rgba(221,185,214,0.18);
}

/* UPLOAD */

.upload-box {
  position: relative;
  padding: 45px;
  border-radius: 24px;
  text-align: center;
  border: 1px dashed rgba(31,41,55,0.25);
  background: rgba(255,255,255,0.58);
  transition: 0.3s ease;
}

.upload-box:hover {
  border-color: #ddb9d6;
  background: rgba(255,255,255,0.75);
}

.upload-box i {
  font-size: 42px;
  color: #b58ac0;
  margin-bottom: 18px;
}

.upload-box input {
  margin-top: 22px;
}

/* EMAIL ERROR */

.email-error {
  display: none;
  color: #dc2626;
  margin-top: 8px;
  font-size: 14px;
}

.email-error.show {
  display: block;
}

/* BUTTONS */

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.form-actions .demo-btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.back-btn {
  height: 58px;
  padding: 0 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(31,41,55,0.08);
  transition: 0.3s ease;
}

.back-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* RIGHT VISUAL */

.orbix-illustration {
  position: relative;
  width: 360px;
  height: 360px;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(31,41,55,0.12);
  animation: spin 12s linear infinite;
}

.orbit-two {
  inset: 50px;
  animation-duration: 8s;
  animation-direction: reverse;
}

.center-token {
  position: absolute;
  inset: 115px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efe3aa, #ddb9d6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: #1f2937;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  font-weight: 700;
  color: #1f2937;
  animation: floatCard 3s ease-in-out infinite;
}

.card-one {
  top: 80px;
  left: 55px;
}

.card-two {
  bottom: 90px;
  right: 55px;
}

/* SUCCESS STEP */

.success-step {
  text-align: center;
}

.success-check {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efe3aa, #ddb9d6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 42px;
  color: #1f2937;
  animation: popIn 0.45s ease;
}

/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes popIn {
  from {
    transform: scale(0.65);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .register-wrapper {
    grid-template-columns: 1fr;
  }

  .register-visual-card {
    min-height: 430px;
    padding: 50px 30px;
  }
}

@media (max-width: 575px) {
  .register-section {
    padding: 50px 0 80px;
  }

  .register-form-card {
    padding: 32px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-step h2 {
    font-size: 32px;
  }

  .register-progress {
    max-width: 100%;
  }

  .register-progress span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .register-progress .progress-line,
  .register-progress .progress-fill {
    left: 18px;
  }

  .register-progress .progress-line {
    width: calc(100% - 36px);
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .demo-btn,
  .back-btn {
    width: 100%;
    justify-content: center;
  }
}

.birth-error,
.phone-error {
  display: none;
  color: #dc2626;
  margin-top: 8px;
  font-size: 14px;
}

.birth-error.show,
.phone-error.show {
  display: block;
}

.phone-field,
.password-field {
  display: flex;
  align-items: center;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(31,41,55,0.12);
  background: rgba(255,255,255,0.82);
  overflow: hidden;
}

.phone-field select {
  width: 110px;
  border: none;
  border-right: 1px solid rgba(31,41,55,0.1);
  background: transparent;
  height: 100%;
  padding: 0 14px;
}

.phone-field input,
.password-field input {
  border: none;
  background: transparent;
  height: 100%;
  flex: 1;
}

.toggle-password {
  width: 58px;
  height: 100%;
  border: none;
  background: transparent;
  color: #64748b;
}

.doc-type-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.doc-option input {
  display: none;
}

.doc-option span {
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31,41,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.doc-option input:checked + span {
  background: linear-gradient(135deg, #efe3aa, #ddb9d6);
  color: #1f2937;
  box-shadow: 0 12px 28px rgba(221,185,214,0.28);
}

.uploaded-file-preview {
  margin-top: 18px;
}

.uploaded-file-card {
  
  min-height: 120px;
  border-radius: 18px;
  border: 1px dashed rgba(31,41,55,0.25);
  background: rgba(255,255,255,0.75);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uploaded-file-card i {
  font-size: 26px;
  color: #b58ac0;
}

.uploaded-file-card strong {
  font-size: 13px;
  word-break: break-word;
}

.file-actions {
  display: flex;
  gap: 8px;
}

.file-actions button {
  border: none;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  color: red;
}

.password-rules {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.password-rules span {
  font-size: 14px;
  color: #94a3b8;
}

.password-rules span.valid {
  color: #16a34a;
}

.form-disclaimer {
  margin-top: 24px;
  font-size: 13px !important;
  line-height: 1.7;
  color: #64748b;
}
.form-disclaimer {
  margin-top: 22px;
  font-size: 13px !important;
  line-height: 1.7;
  color: #64748b;
}

.consent-group {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #ddb9d6;
}

.consent-check strong {
  color: #1f2937;
}
@media (max-width: 767px) {
  .doc-type-group {
    grid-template-columns: 1fr 1fr;
  }
}

