/* ---- Custom: gradients, glow, typography only ---- */
:root {
  --nav-gradient-start: #1a0b2e;
  --nav-gradient-end: #2d1b4e;
  --hero-gradient-start: #0f0618;
  --hero-gradient-mid: #1a0b2e;
  --hero-gradient-end: #2d1b4e;
  --btn-gradient-start: #c94b9a;
  --btn-gradient-end: #6b7cf7;
  --glow-color: rgba(141, 71, 185, 0.25);
  --glow-color-secondary: rgba(107, 124, 247, 0.25);
  --accent-teal: #2dd4bf;
  --accent-blue: #60a5fa;
  --accent-voice: #f472b6;
  --accent-knowledge: #34d399;
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --text-soft: rgba(255, 255, 255, 0.7);
}

/* .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1440px;
} */

a {
  cursor: pointer;
}
body {
  font-family: "Momo Trust Sans", sans-serif;
  background: url(../assets/img/body-bg.png) no-repeat center top #1E1033;
  background-size: contain;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  z-index: 0;
}

body.legal {
  font-family: "Momo Trust Sans", sans-serif;
  background: #1E1033;
  background-size: contain;
  color: #BFB3C9;
  font-size: 1.1rem;
  line-height: 1.5;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
}

/* Navbar */
.navbar-amber {
  /* background: linear-gradient(180deg, #2a1a4a 0%, var(--nav-gradient-start) 35%, var(--nav-gradient-end) 100%) !important; */
  /* padding: 0.75rem 0; */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
  /* position: relative; */
  /* overflow: hidden; */
  margin-top: 15px;
}
 
.navbar-amber .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary) !important;
  text-decoration: none;
}
.navbar-amber .navbar-brand .logo-mark {
  flex-shrink: 0;  
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-amber .navbar-brand .logo-mark svg {
  width: 100%;
  height: 100%;
}
.navbar-amber .navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.navbar-amber .navbar-brand .brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.navbar-amber .navbar-brand .brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.nav-pill-wrap {
  display: flex;
  justify-content: center;
}
.nav-pill {
   background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 27px;
  padding: 0.35rem 0.5rem;
  gap: 0;
}
.navbar-amber .nav-pill .nav-link {
  color:#E1D1EF;
  padding: 0.5rem 2.2rem !important;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}
.navbar-amber .nav-pill .nav-link:hover {
 
  color: var(--text-primary) !important;
}
.navbar-amber .btn-signup {
  background: linear-gradient(135deg, #8b5cf6 0%, var(--btn-gradient-start) 100%);
  color: white !important;
  font-weight: 600;
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 2px 16px rgba(139, 92, 246, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.navbar-amber .btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--glow-color);
  color: white !important;
}
.navbar-amber .login-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.navbar-amber .login-link:hover {
  color: var(--text-primary) !important;
}
.navbar-amber .navbar-collapse {
  flex-grow: 1;
}

.navbar-amber .navbar-nav-wrap {
    justify-content: right;
  }
@media (min-width: 992px) {
  .navbar-amber .navbar-collapse {
    flex-grow: 1;
    justify-content: space-between;
  }
  .navbar-amber .navbar-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: right;
  }
  .navbar-amber .nav-pill-wrap {
    /* Keep nav-pill from stretching oddly on wide screens */
    flex: 1 0 auto;
  }
  .navbar-amber .navbar-end {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

/* Hero */
.hero-section {
  padding-top: 5rem;
  /* background: linear-gradient(180deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 40%, var(--hero-gradient-end) 100%); */
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  /* position: relative; */
  /* overflow: hidden; */
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 300px;
  height: 60%;
  /* background: radial-gradient(ellipse at center, var(--glow-color) 0%, transparent 70%); */
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 50%;
  height: 50%;
  /* background: radial-gradient(ellipse at center, var(--glow-color-secondary) 0%, transparent 70%); */
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  max-width: 1600px;  
  width: 100%;
    z-index: 1;
}
.hero-heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.btn-get-started {
  background:#5512DE;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 20px var(--glow-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 50px;
}
.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow-color);
  color: white;
}
.dashboard-preview-wrap {
  margin-top: 0.5rem;
  /* padding: 0 0.5rem; */
}
.dashboard-preview-card {
  
  max-width: 100%;
  margin: 0 auto;
}
.dashboard-preview-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section common */


.section-tools {
  background: url(../assets/img/tools-section-bg.png) no-repeat center top;
  background-size: cover;
  padding: 4rem 2rem;
}

/* Industry Use Cases (replaces old Tools section on the home page) */
.section-use-cases {
 background: transparent linear-gradient(180deg, #2D046B 0%, #1E103300 100%) 0% 0% no-repeat padding-box;
border-radius: 60px 60px 0px 0px;
     
}

.usecases-header {
  max-width: 920px;
  margin: 0 0;
}

.usecases-header-icon {
  color: #8B5CF6; /* purple accent for the decorative icon */
  filter: drop-shadow(0 10px 22px rgba(139, 92, 246, 0.25));
  margin: 0;
  text-align: left;
}

.usecases-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  text-align: left;
}

.usecase-tile {
  text-align: center;
  padding: 10px 10px 0;
}

.usecase-tile.is-divider {
  position: relative;
}

.usecase-tile.is-divider::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 84px;
  bottom: 92px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  display: none;
  height: 65%;
}

@media (min-width: 992px) {
  .usecase-tile {
    padding-left: 28px;
    padding-right: 28px;
  }
  .usecase-tile.is-divider::before {
    display: block;
  }
}

.usecase-icon-outer {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  margin: 0 0 28px;
  align-items: left;
  justify-content:  left;
}

.usecase-icon-inner {
  width: 100px;
  height: 100px;
  align-items: left;
  justify-content: left;
  color: rgba(255, 255, 255, 0.95);
}

.usecase-title {
  font-size: 1.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 16px;
  text-align: left;
  margin-top: 20px;
}

.usecase-desc {
  margin: 0 0;
  max-width: 280px;
  font-size: 1.05rem;
  line-height: 1.65;
  color:#BFB3C9;
  text-align: left;
}

.usecases-stats-card {
  
  padding: 46px 52px;
  /* UI Properties */
background: rgba(255, 255, 255, 0.054);
border-radius: 37px;
/* opacity: 0.54; */
backdrop-filter: blur(50px);
-webkit-backdrop-filter: blur(50px);
}

.stats-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 14px;
}

.stats-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.stats-icon--bolt {
  color: #7C3AED;
}

.stats-icon--shield {
  color: #22C3FF;
}

.stats-icon--money {
  color: #22C55E;
}

.stats-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991.98px) {
  .usecases-stats-card {
    padding: 36px 0px;
    border-radius: 34px;
  }
  .usecase-tile.is-divider::before {
    display: none;
  }
  .stats-title {
    font-size: 1.25rem;
  }
}

.section-cta {
  position: relative;
  /* Background art/rings (matches the attached design) */
  background: url(../assets/img/footer-cta.png) no-repeat center right;
  background-size: cover;
  overflow: hidden;
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(900px 420px at 70% 35%, rgba(0, 177, 255, 0.14), transparent 55%),
    radial-gradient(650px 360px at 92% 55%, rgba(156, 0, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(15, 6, 24, 0.65) 0%, rgba(26, 11, 46, 0.65) 45%, rgba(20, 10, 39, 0.7) 100%);
  pointer-events: none; */
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

.section-why{
  background: url(../assets/img/content-bg.png) no-repeat center top;
  background-size: cover;
  height: 130vh;
}

.section-features {
  /* height: 100vh; */
  margin-top: -100px;
}

/* Feature Transformation (Knowledge Base + 3 cards) */
.feature-transformation {
  background: url(../assets/img/future_transformation.png) no-repeat center top;
  padding: 50px 0 80px;
  background-size: cover;
}

.ft-header-icon {
  color: #22C3FF;
  filter: drop-shadow(0 12px 24px rgba(34, 195, 255, 0.16));
}

.ft-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.ft-big-card {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  height: 390px;
  background:
    url(../assets/img/card4.png) no-repeat center center;
  background-size: cover;
}
 

.ft-big-left {
  position: relative;
  z-index: 1;
  width: 58%;
  padding:70px 70px 0 70px;
}

.ft-kb-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #FF2D2D;
  line-height: 1.05;
}

.ft-kb-sub {
  margin-top: 8px;
  font-size: 1.05rem;
  color: #BFB3C9;
  font-weight: 400;
}

.ft-big-fade {
  margin-top: 42px;
  color:#D9D9D9 ;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}

.ft-big-right {
  position: absolute;
  top: 50px;
  right: 20px;
  bottom: 0;
  width: 10%;
  z-index: 0;
   
}


.ft-small-row {
  display: flex;
  gap: 26px;
  margin-top: 30px;
}

.ft-small-card {
  flex: 1;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  min-height: 365px;
  padding: 44px 30px 30px;
  /* box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45); */
}

.ft-small-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  pointer-events: none;
}

.ft-small-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 46%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.95) 100%),
    var(--ft-small-right-bg);
  background-size: cover;
  opacity: 0.95;
  pointer-events: none;
}

.ft-small-icon {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 22px;
}

.ft-small-title {
  position: relative;
  z-index: 2;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.ft-small-sub {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  color: #BFB3C9;
  margin-bottom: 18px;
}

.ft-small-fade {
  position: relative;
  z-index: 2;
  color: #D9D9D9;
  font-size: 1.10rem;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 15px;
}

.ft-small-card--clone {
  /* background: linear-gradient(180deg, rgba(255, 0, 210, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%); */
  background: transparent;
}

.ft-small-card--clone::before {
  background: linear-gradient(180deg, rgba(255, 0, 210, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.ft-small-icon--clone {
  color: #E61BFF;
}

.ft-small-card--clone .ft-small-title {
  color: #E61BFF;
}
 
.ft-small-card--tools {
  /* background: linear-gradient(180deg, rgba(0, 196, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%); */
  background: transparent;
}

.ft-small-card--tools::before {
  background: linear-gradient(180deg, rgba(0, 196, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.ft-small-icon--tools {
  color: #2DB6FF;
}

.ft-small-card--tools .ft-small-title--tools {
  color: #2DB6FF;
}
 

.ft-small-card--voices {
  /* background: linear-gradient(180deg, rgba(0, 255, 136, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%); */
  background: transparent;
}

.ft-small-card--voices::before {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.ft-small-icon--voices {
  color: #00FF88;
}

.ft-small-card--voices .ft-small-title--voices {
  color: #00FF88;
}

 
@media (max-width: 991.98px) {
  .ft-big-card {
    height: auto;
    min-height: 340px;
  }

  .ft-big-left {
    width: 100%;
    padding: 78px 28px 40px;
  }

  .ft-big-right {
    width: 20%;
    opacity: 0.5;
  }

  .ft-small-row {
    flex-direction: column;
  }

  .ft-small-card {
    min-height: 320px;
  }
}

/* Why Amber Nexus? */
.section-why::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 280px;
  height: 50%;
  /* background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.12) 0%, transparent 70%); */
  pointer-events: none;
}
.section-why::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  width: 260px;
  height: 40%;
  /* background: radial-gradient(ellipse at center, var(--glow-color) 0%, transparent 70%); */
  pointer-events: none;
}
.section-why .container {
  /* position: relative; */
  /* z-index: 1; */
  padding-bottom: 25%;
}
.logo-icon-sm {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  box-shadow: 0 0 30px var(--glow-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end));
  border-radius: 12px;
  color: white;
  font-weight: 800;
}
.section-why-icon .logo-icon,
.section-why-icon .logo-icon-sm {
  display: inline-flex;
}
.section-why-heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #9D00FF;
}
.section-why-subtitle {
  font-size: 1.55rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-primary);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.section-why-desc {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 500px;
  line-height: 1.65;
}

/* htnk (2-column cards) inside Why section */
.section-why .why-htnk-row {
  /* justify-content: left; */
  text-align: left;
}

.section-why .why-htnk-card {
  height: 100%;
  border-radius: 37px;
  padding:8% 10%;
  background: rgba(255, 255, 255, 0.035);
  border: 0px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-top: 25px;
}

.section-why .why-htnk-icon {
  width: 100px;
  margin-bottom: 15px;
}
 

.section-why .why-htnk-title {
  margin: 0 0 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.5rem;
  line-height: 1.5;
}

.section-why .why-htnk-desc {
  margin: 0;
  color:#BFB3C9;
  line-height: 1.7;
  font-size: 1rem;
}

/* Features - 4 cards */
.section-features-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #00B1FF;
  letter-spacing: -0.02em;
  padding-bottom: 50px;
}
.section-features-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-blue);
}
.feature-card {
  border-radius: 20px;
  padding: 1.75rem;
  /* border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden; */
}
.feature-card-default {
  background: url(../assets/img/card1.png) no-repeat center center;
  background-size: cover;
  padding: 12%;
}
.feature-card-default::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.feature-card-voice {
   background: url(../assets/img/card2.png) no-repeat center center;
  background-size: cover;
  padding: 12%;
}
.feature-card-voice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244, 114, 182, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.feature-card-voice-clone {
   background: url(../assets/img/card3.png) no-repeat center center;
  background-size: cover;
  padding: 12%;
}
.feature-card-voice-clone::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: radial-gradient(circle, rgba(244, 114, 182, 0.08) 1px, transparent 1px); */
  background-size: 20px 20px;
  pointer-events: none;
}
.feature-card-knowledge {
    background: url(../assets/img/card4.png) no-repeat center center;
  background-size: cover;
  padding: 12%;
}
.feature-card-knowledge::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(rgba(52, 211, 153, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.06) 1px, transparent 1px); */
  background-size: 24px 24px;
  pointer-events: none;
}
.feature-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #CE00FF;
  margin-bottom: 1.75rem;
  position: relative;
}
.feature-card-title-accent {
  color: #FF0043;
}

.feature-card-title-voice {
   color: #6400FF;
}
.feature-card-title-teal {
  color: #00FF88;
}
.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
  position: relative;
  margin-bottom: 25px;
}

/* Tools - Client / Server */
.section-tools-heading {
  /* font-size: clamp(1.75rem, 3.5vw, 2.5rem); */
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.tools-card {
  border-radius: 20px;
  padding: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* background: linear-gradient(145deg, rgba(45, 27, 78, 0.95), rgba(26, 11, 46, 0.98)); */
  background: url(../assets/img/client-bg.png) no-repeat center center;
  position: relative;
  overflow: hidden;
}

.tools-card1 {
  border-radius: 20px;
  padding: 5.3rem 5.3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* background: linear-gradient(145deg, rgba(45, 27, 78, 0.95), rgba(26, 11, 46, 0.98)); */
  background: url(../assets/img/server-bg.png) no-repeat center center;
  position: relative;
  overflow: hidden;
}
.tools-card  p {
  padding-bottom: 30px;
}
.tools-card-icon {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  /* box-shadow: 0 0 24px currentColor; */
}
.tools-card-icon-purple {
  /* background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end)); */
  color: rgba(255, 255, 255, 0.95);
}
.tools-card-icon-blue {
  /* background: linear-gradient(135deg, #3b82f6, #6366f1); */
  color: rgba(255, 255, 255, 0.95);
  /* box-shadow: 0 0 24px rgba(59, 130, 246, 0.5); */
}
.tools-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-right: 3.5rem;
}
.tools-card-desc {
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.cta-card {
  border-radius: 0;
  padding: 0;
  /* background: linear-gradient(145deg, rgba(45, 27, 78, 0.9), rgba(26, 11, 46, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08); */
  background: transparent;
  /* box-shadow:
    0 0 60px var(--glow-color),
    0 0 100px var(--glow-color-secondary),
    0 25px 50px -12px rgba(0, 0, 0, 0.4); */
  position: relative;
  overflow: hidden;
}
.cta-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #20f3ff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: 1.45rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}
.cta-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 480px;
}
.cta-visual {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 85%;
  max-width: 420px;
  height: 280px;
  /* background:
    radial-gradient(ellipse 80% 50% at 70% 50%, var(--glow-color) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 30% 40%, var(--glow-color-secondary) 0%, transparent 45%),
    radial-gradient(ellipse 60% 60% at 60% 60%, rgba(192, 132, 252, 0.2) 0%, transparent 50%);
  filter: blur(20px);
  border-radius: 50%; */
  pointer-events: none;
}
@media (min-width: 992px) {
  .cta-card {
    padding: 0;
  }
}

/* New CTA layout adjustments */
.section-cta .btn-get-started {
  margin-bottom: 0; /* override hero/old CTA spacing */
  box-shadow: 0 4px 20px rgba(85, 18, 222, 0.25);
}

.cta-signup-btn {
  padding: 0.85rem 2.4rem;
}

/* Hide unused decorative element if still present somewhere */
.section-cta .cta-visual {
  display: none;
}

/* Footer */
.footer-amber {
  background: #0A0313;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0px 0px 20px;
}

.footer-amber hr {
    margin: 0.4rem 0;
    color: inherit;
    border: 0;
    border-top:#6E4F9B solid 1px;
    opacity: .25;
}

/* Footer (Amber Nexus home page) */
.footer-amber-home {
  background:#10071E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0 26px;
}

.footer-amber-home .footer-brand img {
  height: 40px;
  width: auto;
}

.footer-amber-home .footer-social {
  color: var(--text-primary);
}

.footer-amber-home .footer-social-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-amber-home .footer-social-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-amber-home .footer-title {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-amber-home .footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-amber-home .footer-links a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.footer-amber-home .footer-group-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-amber-home .footer-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-amber-home .footer-group-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.25rem;
  text-transform: lowercase;
}

.footer-amber-home .footer-group-logo svg {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}

.footer-amber-home .footer-group-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-top: 6px;
  white-space: nowrap;
}

.footer-amber-home .footer-companies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 26px;
}

.footer-amber-home .footer-company {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 2px 0;
}

.footer-amber-home .footer-company-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-amber-home .footer-company-name {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  font-size: 0.98rem;
  text-transform: lowercase;
  line-height: 1.2;
}

.footer-amber-home .footer-company:hover .footer-company-icon {
  border-color: rgba(157, 0, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(157, 0, 255, 0.14);
}

.footer-amber-home .footer-bottom {
  margin-top: 0px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-amber-home .footer-copyright {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-amber-home .footer-back-to-top {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  /* display: inline-flex; */
  /* align-items: center; */
  /* gap: 10px; */
  font-weight: 700;
  font-size: 0.9rem;
  text-align: right;
}

.footer-amber-home .footer-back-to-top:hover {
  color: rgba(255, 255, 255, 0.98);
}

@media (max-width: 991.98px) {
  .footer-amber-home .footer-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
}

@media (max-width: 576px) {
  .footer-amber-home .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-amber-home .footer-group-subtitle {
    white-space: normal;
  }
}

.footer-brand {
  font-weight: 400;
  font-size: 1.15rem;
  color: #A493B2;
  text-decoration: none;
}
.footer-brand:hover {
  color: var(--text-primary);
}
.footer-brand .logo-mark-sm {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.footer-brand .logo-mark-sm svg {
  width: 100%;
  height: 100%;
}
.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-soft);
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  margin-left: 1.25rem;
  transition: color 0.2s ease;
}
.footer-nav a:first-child {
  margin-left: 0;
}

.tab-content h1 {
  font-size: 45px;
  margin-bottom: 25px;
  color: #9D00FF;
  line-height: 1.7;
}

.tab-content h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  margin-bottom: 25px;
  margin-top: 40px;
  color: #fff;
  line-height: 1.7;
}


.tab-content h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.7;
}


.tab-content h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  margin-bottom: 20px;
  margin-top: 10px;
  color: #fff;
  line-height: 1.7;
}

.nav-tabs li.nav-item button{
	background: transparent;
	border: none;
  color: #BFB3C9;
  font-size: clamp(1.00rem, 2.0vw, 1.25rem);
  padding-left: 0px;
  padding-right: 35px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: var(--bs-nav-tabs-link-active-color);
	background-color: transparent;
	color:#fff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.0;
  text-decoration: underline;
}

.nav-tabs {
  border-bottom: none;
}

.table-light {
  background-color:transparent ;
  color: #fff;
  margin-bottom: 20px;
}

 body.legal table,
    body.legal .table {
      background-color: transparent !important;
      border-color: rgba(0, 0, 0, 0.1) !important;
      border-right: none !important;
    }
    body.legal table th {
      /* font-size: 20px !important; */
      background-color: transparent !important;
    border:none;
    }

     body.legal table td {
      /* font-size: 1.1rem !important; */
      background-color: transparent !important;
    border:none;
    color: #BFB3C9; 
    line-height: 1.7;
    padding: 10px ;
    border-bottom: solid #ffff 1px !important;
    border-right:#ffff solid 1px !important;
    }
         body.legal table td:last-child {
      border-right: none !important;  
         }

    body.legal table thead {
      background-color: #421C7A !important;
      color: #fff !important;
      border: solid 1px #fff  !important;
    }
    body.legal table thead th {
      background-color: transparent !important;
      color: inherit !important;
      border: none !important;
      padding: 10px;
      border-radius: 0 !important;
      font-size: clamp(1.0rem, 2.2vw, 1.3rem);
      font-weight: 600;
      border-right:#ffff solid 1px !important;
      vertical-align: middle;
      line-height: 1.8;
    }
    body.legal table thead th:first-child {
      border-top-left-radius: 10px !important;
      border-bottom-left-radius: 10px !important;
      border-right:#ffff solid 1px !important;
    }
    body.legal table thead th:last-child {
      border-top-right-radius: 10px !important;
      border-bottom-right-radius: 10px !important;
      border-left: solid #ffff 1px !important;
      border-right: none !important;
    }
    body.legal table tbody {
      border: solid 1px #fff;
      border-top: none;
    }
    
     body.legal table tbody tr {
      border-top: none !important;
     }
    
     body.legal table tbody tr:last-child {
      border-bottom:#ffff solid 1px !important;
    }

     body.legal table tbody td:first-child {
      border-right:#ffff solid 1px !important;
    }
    body.legal table tbody td:last-child {
      border-left: solid #ffff 1px !important;
    }

     body.legal table thead tr {
      border: none;
      border-right:#ffff solid 0px !important;
     }

.tab-content p {
  margin-bottom: 30px;
  line-height: 1.7;
}


.tab-content p a, .tab-content ul li a {
    color: #9D00FF; 
  display: inline-block;
  padding: 0px;
}


.tab-content ul li {
  margin-bottom: 30px; 
}


.tab-content ul li::marker {
  color: #9D00FF;
}

@media (min-width: 992px) {
  .footer-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    justify-content: flex-end;
  }
  .footer-nav a {
    margin-left: 0;
  }
}
.footer-nav a:hover {
  color: var(--text-primary);
}
.footer-legal {
  font-size: 0.875rem;
  text-align: right;
  font-weight: 400;
  color: #A493B2;
}
.footer-legal a {
  color: var(--text-soft);
  text-decoration: none;
  margin-left: 1rem;
}
.footer-legal a:hover {
  color: var(--text-muted);
}

.modal-content {
  background: #1E1033;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  color: #fff;
  z-index: 1050;
  position: relative;
}

.modal {
  z-index: 1055;
}

.modal-backdrop {
  z-index: 0;
}

.modal-dialog {
  z-index: 1050;
  position: relative;
}

.modal-header .btn-close {
  color: #fff;
}



/*about */

body.about-bg {
background: url(../assets/img/body-bg-about.png) no-repeat center top #1E1033;
background-size: 100%;
}



.about-nexus-hero{
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 110px);
  /* background: url(../assets/img/about_banner.png) no-repeat center top; */
  background-size: cover;
}
 
.about-nexus-hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  
}

.about-nexus-title{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
   
}

.about-nexus-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  filter: drop-shadow(0 22px 26px rgba(139, 92, 246, 0.16));
}

.about-nexus-mark img{
  width: 86px;
  height: auto;
}

.about-nexus-text{
  margin: 0 auto;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.about-nexus-paragraph{
  margin: 0;
  padding: 0;
}

.about-nexus-paragraph + .about-nexus-paragraph{
  margin-top: 26px;
}

@media (max-width: 576px){
  .about-nexus-mark img{
    width: 64px;
  }

  .about-nexus-text{
    max-width: 520px;
  }
}

.about-nexus-subtitle{
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

/* Our Philosophy Section - New Original Styles */
.our-philosophy {
  
  padding: 100px 0;
}
 
.our-philosophy .container {
  position: relative;
  z-index: 2;
}
 
 

.philosophy-heading {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
  line-height: 1.1;
   
}
 

.philosophy-desc {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 2;
   
}

.philosophy-header {
  position: relative;
  z-index: 2;
}

.philosophy-grid {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.philosophy-card {
 
   
}
  
#intelligent {
  background: url(../assets/img/intelligence-over-automation.png) no-repeat top center/cover;
  padding: 15%;
  height: 100%;
}
#action-over {
  background: url(../assets/img/action-over-answers.png) no-repeat top center/cover;
  padding: 15%;
  height: 100%;
}
#human {
  background: url(../assets/img/humanity.png) no-repeat top center/cover;
  padding: 15%;
  height: 100%;
}
.philosophy-card-icon {
  width: 100%;
  height: auto;
  margin: 0 auto;
} 
.card-icon {
  width: 120px;
  height: 120px;
   
}

.philosophy-card-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(157, 0, 255, 0.3);
}

.philosophy-card-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.0rem);
  color: #D9D9D9;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design for Philosophy Section */
@media (max-width: 768px) {
  .our-philosophy {
    padding: 80px 0;
  }
  
  .philosophy-icon {
    width: 90px;
    height: 90px;
  }
  
  .philosophy-logo {
    width: 50px;
    height: 50px;
  }
  
  .philosophy-heading {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 25px;
  }
  
  .philosophy-desc {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 90%;
  }
  
  .philosophy-grid {
    margin-top: 40px;
  }
  
  .philosophy-card {
    padding: 25px 15px;
  }
  
  .philosophy-card-icon {
    width: 70px;
    height: 70px;
  }
  
  .card-icon {
    width: 35px;
    height: 35px;
  }
  
  .philosophy-card-title {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  }
  
  .philosophy-card-desc {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
  }
}

@media (max-width: 480px) {
  .our-philosophy {
    padding: 60px 0;
  }
  
  .philosophy-icon {
    width: 70px;
    height: 70px;
  }
  
  .philosophy-logo {
    width: 40px;
    height: 40px;
  }
  
  .philosophy-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  
  .philosophy-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }
  
  .philosophy-grid {
    margin-top: 30px;
  }
  
  .philosophy-card {
    padding: 20px 12px;
    margin-bottom: 20px;
  }
  
  .philosophy-card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .philosophy-card-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }
  
  .philosophy-card-desc {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  }
}


/* New Section Sales Styles - Completely Original */
.section-sales {
  background: url(../assets/img/About_spark.png) no-repeat center top;
  background-size: 642px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin: 10% auto;
}
  

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.section-sales .container {
  position: relative;
  z-index: 2;
}

.section-sales .section-why-icon {
  width: 140px;
  height: 140px;
  margin: 80px auto 0px;
   
  display: flex;
  align-items: center;
  justify-content: center;
   
}
 

.section-sales .section-why-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(1.2) contrast(1.1);
}

.section-sales-heading {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 700;
  color: #9D00FF;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(157, 0, 255, 0.3);
  position: relative;
}
 

.section-sales .hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #BFB3C9;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.section-sales .hero-desc:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-sales {
    padding: 60px 0;
  }
  
  .section-sales .section-why-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
  }
  
  .section-sales .section-why-icon img {
    width: 60px;
    height: 60px;
  }
  
  .section-sales-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
  }
  
  .section-sales .hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .section-sales {
    padding: 40px 0;
  }
  
  .section-sales .section-why-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  
  .section-sales .section-why-icon img {
    width: 45px;
    height: 45px;
  }
  
  .section-sales-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  }
}


/*contact*/



body.contact-bg {
background: url(../assets/img/body-bg-contact.png) no-repeat center top #1E1033;
background-size: 100%;
}



.contact-nexus-hero{
  position: relative;
  padding-top: 20%;  
  background-size: cover;
}
 
.contact-nexus-hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  
}

.contact-nexus-title{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
   
}

.contact-nexus-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  filter: drop-shadow(0 22px 26px rgba(139, 92, 246, 0.16));
}

.contact-nexus-mark img{
  width: 86px;
  height: auto;
}
 

.contact-nexus-paragraph{
  margin: 0;
  padding: 0;

}

.contact-nexus-paragraph + .contact-nexus-paragraph{
  margin-top: 26px;
}

@media (max-width: 576px){
  .contact-nexus-mark img{
    width: 64px;
  }

  .contact-nexus-text{
    max-width: 520px;
  }
}

.contact-nexus-subtitle{
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}



/* Contact Form Styles */
.contact-form {
  max-width: 800px;
  margin: 100px auto 0;
  
  padding: 40px;
  position: relative;
  overflow: hidden;
}
 
.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form .form-label {
  display: block;
  color: #B4C1CC;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: left;
}

.contact-form  a {
   color: #B4C1CC;
   font-weight: 500;
   font-size: 16px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(157, 0, 255, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form .form-control::placeholder,
.contact-form .form-select option {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #9D00FF;
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
  color: #FFFFFF;
  outline: none;
}

.contact-form .form-select {
  cursor: pointer;
}

.contact-form .form-select option {
  background: #2D1B4E;
  color: #FFFFFF;
}

.btn-submit {
  background: linear-gradient(45deg, #9D00FF, #6A1B9A);
  border: none;
  border-radius: 12px;
  padding: 15px 50px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(157, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(157, 0, 255, 0.4);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:active {
  transform: translateY(0);
}

/* Responsive Contact Form */
@media (max-width: 768px) {
  .contact-form {
    margin: 30px auto 0;
    padding: 30px 20px;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .btn-submit {
    padding: 12px 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    margin: 20px auto 0;
    padding: 25px 15px;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .btn-submit {
    padding: 10px 30px;
    font-size: 15px;
  }
}



/* product page */



body.product-bg {
background: url(../assets/img/prodcut-bg.png) no-repeat center top #1E1033;
background-size: 100%;
}



.product-nexus-hero{
  position: relative;
  padding: 22% 0 5%;
  
  background-size: cover;
}
 
.product-nexus-hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  
}

.product-nexus-title{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #FFFFFF;
}

.product-nexus-subtitle{
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

/* Product Features Section */
.product-features {
  background: url(../assets/img/product-bg-brain.png) no-repeat center top;
  background-size: 100%;
  padding: 10% 5%;
  position: relative;
  overflow: hidden;
  margin: 2% auto;
}

.product-features1 {
  background: url(../assets/img/product-bg-voice.png) no-repeat center top;
  background-size: 100%;
  padding: 10% 5%;
  position: relative;
  overflow: hidden;
  margin: 2% auto;
}

.product-features2 {
  background: url(../assets/img/product-bg-hands.png) no-repeat center top;
  background-size: 100%;
  padding: 10% 5%;
  position: relative;
  overflow: hidden;
  margin: 2% auto;
}
.feature-content {
  position: relative;
  z-index: 2;
  padding: 8% 5%;
}

.feature-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom:5px;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(157, 0, 255, 0.3);
}

.feature-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #D9D9D9;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}
  
/* Responsive Design */
@media (max-width: 991px) {
  .feature-content {
    padding-left: 0;
    margin-bottom: 20px;
  }
  
  .feature-card {
    max-width: 100%;
  }
  
  .product-features,
  .product-features1,
  .product-features2 {
    padding: 8% 3%;
    margin: 1% auto;
  }
  
  .feature-content {
    padding: 5% 3%;
  }
  
  .feature-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
  }
  
  .feature-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
  }
  
   
  
  .feature-text h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }
  
  .feature-text p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
  }
   
}
 

 .how-section {
       background: transparent linear-gradient(180deg, #4E3C6A 0%, #1E103300 100%) 0% 0% no-repeat padding-box;
      border-radius: 60px 60px 0px 0px;
      opacity: 1;
      color: #fff;
      padding: 80px 0;
    }

   

    .section-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 60px;
    }

    .step {
      text-align: left;
      position: relative;
      padding: 20px;
    }

    /* Divider line (only desktop) */
    .step:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 20px;
      bottom: 0;
      height: 60%;
      width: 1px;
      background:#6D5297;
    }

    /* Icon circle */
    .icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 0 20px;
      /* border-radius: 50%;
      background: radial-gradient(circle, rgba(255,204,0,0.6) 0%, rgba(255,204,0,0.2) 60%, transparent 100%); */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrapper i {
      font-size: 28px;
      color: #fff;
      background: #ffc107;
      padding: 15px;
      border-radius: 50%;
    }

    .step h5 {
      font-size: 30px;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .step p {
  
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: #BFB3C9;
      line-height: 1.6;
      margin-bottom: 0px;
      font-weight: 300;
      padding-right: 0px;
      max-width: 95%;
    }

    @media (max-width: 767px) {
      .step:not(:last-child)::after {
        display: none;
      }
    }


     .country-dropdown {
      position: relative;
    }

    .country-trigger {
      width: 100%;
      min-height: 54px;
      border: 1px solid rgba(157, 0, 255, 0.3);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      text-align: left;
      padding: 14px 42px 14px 16px;
      font-size: 16px;
      line-height: 1.3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .country-trigger .country-placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .country-trigger:focus-visible {
      outline: none;
      border-color: #9d00ff;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
    }

    /* Ensure Bootstrap Icons font is loaded */
    .bi {
      font-family: "bootstrap-icons" !important;
      font-style: normal;
      font-weight: normal !important;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .country-chevron {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      transition: transform 0.2s ease;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 6px solid rgba(255, 255, 255, 0.7);
      z-index: 10;
    }

    .country-dropdown.open .country-chevron {
      transform: translateY(-50%) rotate(180deg);
    }

    .country-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      width: 100%;
      z-index: 20;
      background: #2d1b4e;
      border: 1px solid rgba(157, 0, 255, 0.3);
      border-radius: 12px;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
      padding: 10px;
    }

    .country-search {
      width: 100%;
      border: 1px solid rgba(157, 0, 255, 0.3);
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 14px;
      margin-bottom: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
    }

    .country-search::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .country-search:focus-visible {
      outline: none;
      border-color: #9d00ff;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
    }

    .country-list {
      max-height: 220px;
      overflow-y: auto;
      border-radius: 10px;
      border: 1px solid rgba(157, 0, 255, 0.25);
      background: rgba(255, 255, 255, 0.02);
    }

    .country-option {
      width: 100%;
      border: 0;
      background: transparent;
      text-align: left;
      padding: 10px 12px;
      font-size: 14px;
      color: #ffffff;
      transition: background 0.16s ease;
    }

    .country-option:hover,
    .country-option.active {
      background: rgba(157, 0, 255, 0.22);
    }

    .country-empty {
      margin: 0;
      padding: 10px 12px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
    }


.thanks-nexus-hero{
  position: relative;
  padding:10%;  
  background-size: cover;
}
.thanks-nexus-hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
}

.thanks-nexus-title {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #FFFFFF;
}

/* Form Validation Styles */
.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
  font-weight: 400;
}

.country-trigger.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

input[type="checkbox"].is-invalid {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}

/* Form field focus styles */
.form-control:focus,
.country-trigger:focus {
  border-color: #9D00FF;
  box-shadow: 0 0 0 0.2rem rgba(157, 0, 255, 0.25);
}

.form-control.is-invalid:focus,
.country-trigger.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Success state (optional) */
.is-valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #28a745;
  font-weight: 400;
}

/* Checkbox validation styling */
.form-group input[type="checkbox"].is-invalid + span {
  color: #dc3545;
}

.form-group input[type="checkbox"].is-invalid + span a {
  color: #dc3545 !important;
  text-decoration: underline !important;
}

/* Responsive validation styles */
@media (max-width: 768px) {
  .invalid-feedback {
    font-size: 0.8rem;
  }

  .valid-feedback {
    font-size: 0.8rem;
  }
}

/* Product CTA Section Styles */
.product-cta-section {
  background: url(/assets/img/stop-loosing-bg.png) no-repeat center top;
  padding: 100px 0;
  background-size: cover;
  font-family: "Momo Trust Sans", sans-serif;
}
 

.cta-content {
  padding-right: 40px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2AFFF8;
  margin-bottom: 25px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.cta-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-btn-primary {
  background:#5512DE;
  border: none;
  border-radius:27px;
  padding: 15px 20px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(157, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(157, 0, 255, 0.4);
  color: #FFFFFF;
  text-decoration: none;
  background: #5512DE;
  ;  
}
 

.cta-btn-primary:active {
  transform: translateY(0);
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid #5512DE;
  border-radius: 27px;
  padding: 13px 38px;
  color: #5512DE;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
}

.cta-btn-secondary:active {
  transform: translateY(0);
}

.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-image {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Product CTA Section Responsive Design */
@media (max-width: 991px) {
  .product-cta-section {
    padding: 80px 0;
  }
  
  .cta-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
  }
  
  .cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 35px;
  }
  
  .cta-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 35px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .product-cta-section {
    padding: 60px 0;
  }
  
  .cta-content {
    margin-bottom: 40px;
  }
  
  .cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 15px;
  }
  
  .cta-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 12px 30px;
    font-size: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .product-cta-section {
    padding: 40px 0;
  }
  
  .cta-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 12px;
  }
  
  .cta-subtitle {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    margin-bottom: 25px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 10px 25px;
    font-size: 14px;
  }
}


@media (max-width: 1600px) {
  .product-features, .product-features1, .product-features2 {
    padding: 1% 5% 8%;
    margin-bottom: 50px;
  }

   .product-features1 {
    margin-bottom: 100px;
   }
}

p.ql-align-justify span {
    color: #fff !important;
}