body {
  width: 100%;
  height: 100vh;
  background-color: #000;
  background-image: radial-gradient(circle at top right, rgba(121, 68, 154, 0.13),       transparent),
    radial-gradient(circle at 20% 80%, rgba(41, 196, 255, 0.13), transparent)
}

/* allow interaction ONLY inside sections */
.slider-btn,
.hero-cta a {
  pointer-events: auto;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  /* Single smooth base layer */
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  transform: translate3d(0,0,0);
}

.bg-glow::before {
  background: rgba(41, 196, 255, 0.6);
  left: 5%;
  top: 45%;
}

.bg-glow::after {
  background: rgba(121, 68, 154, 0.6);
  right: 15%;
  top: 5%;
}



.navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  transition: all 0.3s ease;
}

[data-theme="dark"] .navbar.scrolled {
  background-color: rgba(18,18,18,0.95);
}

/* Brand */
.navbar-brand {
  font-weight: 700;
  color: #fff !important;
}

.navbar-brand h2
{
  padding-top: 5px;
  font-size: 20px;
}




/* Desktop Nav Links */
.nav-link {
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  color: #fff !important;
}

/* Better animated underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* Hover effect */
.nav-link:hover::after {
  transform: scaleX(1);
}


/* ===== MOBILE NAVBAR IMPROVEMENTS ===== */
@media (max-width: 991.98px) {

  /* Collapsed mobile menu background */
  .navbar-collapse {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: var(--shadow-soft);
  }

  /* Slide down effect */
  .navbar-collapse.collapsing {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar-collapse:not(.show) {
    transform: translateY(-10px);
    opacity: 0;
  }

  /* Mobile nav links styling */
  .navbar-nav .nav-link {
    padding: 12px 0;
    font-weight: 500;
    color: #fff !important;
    font-size: 1.05rem;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
  }

  /* Rounded toggle button */
  .navbar-toggler {
    border-radius: 50%;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    color: #fff;
  }

  .navbar-toggler:hover {
    background-color: var(--primary);
    color: #fff;
  }

  /* Dark mode adjustments */
  [data-theme="dark"] .navbar-collapse {
    background-color: #1f1f1f;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  }

  [data-theme="dark"] .navbar-nav .nav-link {
    color: #fff !important;
  }

  [data-theme="dark"] .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
  }
}


/* Prevent canvas interference layering */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto; /* ensure it always receives mouse */
}


/* App container sits ABOVE canvas */
.app {
  position: relative;
  z-index: 2;
  padding-top: 120px;

  pointer-events: none; /* allow canvas to always "feel" mouse */
}

/* Glass effect base */
.glass {
  background: rgba(255, 255, 255, 0); /* more transparent */
  backdrop-filter: blur(4px); /* reduced blur */
  -webkit-backdrop-filter: blur(0px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

  color: #fff;
  padding: 40px;
  margin: 40px auto;
  max-width: 1100px;
}

/*value model*/
/* ========================= */
/* VALUE SLIDER */
/* ========================= */

.value-slider-section {
  position: relative;
  overflow: hidden;
}

.value-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.value-slide {
  min-width: calc(100% - 30px);
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* slider arrows */

.value-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);

  width: 45px;
  height: 45px;

  border-radius: 50%;
  color: #fff;

  cursor: pointer;
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.value-slider-btn.left {
  left: 15px;
}

.value-slider-btn.right {
  right: 15px;
}

/* ========================= */
/* ICONS */
/* ========================= */

.layer-icon{
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  margin-bottom: 20px;
}

.layer-icon i,
.workflow-icon i {
  font-size: 22px;
  color: #fff;
}

/* ========================= */
/* WORKFLOW */
/* ========================= */

/* ========================= */
/* HOW WE WORK SLIDE */
/* ========================= */

.workflow-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.workflow-box h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.workflow-sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.75;
  font-size: 16px;
  line-height: 1.7;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workflow-step {
  position: relative;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 18px;
  padding: 30px 25px;

  transition: all 0.3s ease;

  min-height: 280px;
}

.workflow-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
}

.workflow-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  margin-bottom: 18px;
}

.workflow-icon i {
  font-size: 24px;
}

.workflow-step span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-bottom: 10px;
}

.workflow-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.workflow-step p {
  opacity: 0.8;
  line-height: 1.7;
  font-size: 15px;
}

.value-model h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.value-model p {
  opacity: 0.8;
  margin-bottom: 30px;
}

@media (max-width: 991px) {

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 767px) {

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-box h2 {
    font-size: 30px;
  }

}

.layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.layer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 25px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.layer:hover {
  transform: translateY(-5px);
}

.layer h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.layer ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.layer li {
  margin-bottom: 6px;
  opacity: 0.9;
}

.layer p {
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .layers {
    grid-template-columns: 1fr;
  }
}

/* Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0);
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.industries h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.industries p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 25px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.industry:hover {
  transform: translateY(-5px);
}

.industry h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.industry ul {
  padding-left: 18px;
  margin: 0;
}

.industry li {
  margin-bottom: 6px;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.capabilities .industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h2 {
  font-size: 18px;
  opacity: 0.85;
  margin-top: 15px;
}

.hero-content p {
  margin-top: 15px;
  opacity: 0.7;
}

.hero-cta a {
  margin-right: 10px;
  padding: 10px 20px;
  border-radius: 8px;
}

.btn-primary {
  background: #fff;
  color: #000;
  border: none;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
}

.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  padding: 35px;
  text-align: left;

  background: rgba(255,255,255,0.05);
  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.08);

  transition: transform 0.3s ease;
}

.slide h3 {
  margin-bottom: 10px;
}

.slide p {
  opacity: 0.8;
}

/* arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background: rgba(255,255,255,0.2);
}

.slider-btn.left {
  left: -10px;
}

.slider-btn.right {
  right: -10px;
}

@media (max-width: 991px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

.hero-slider {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-slider .slides {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.hero-slider .slide {
   min-width: calc(100% - 10px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

/* centered glass box */
.hero-box {
  max-width: 700px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;

  padding: 50px;
  backdrop-filter: blur(6px);
}

/* typography */
.hero-box h1 {
  font-size: 36px;
  font-weight: 700;
}

.hero-box p {
  margin-top: 15px;
  opacity: 0.8;
}

/* buttons */
.hero-cta {
  margin-top: 20px;
}

/* arrows */
.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.hero-slider .left {
  left: 10px;
}

.hero-slider .right {
  right: 10px;
}


/* ==========================
   SOS CURTAIN OFFER
========================== */

#sos-curtain {
  position: fixed;

  top: -250px;
  left: 20px;

  width: 340px;

  z-index: 99999;

  pointer-events: none;

   animation:
    curtainDrop 1s ease forwards,
    curtainStay 2000s linear 10s forwards,
    curtainHide 1s ease 9s forwards;
}

/* Curtain body */

.curtain-content {
  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(0,0,0,0.08);

  backdrop-filter: blur(10px);

  border-radius: 0 0 18px 18px;

  padding: 20px;

  color: #000;

  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* hanging line */

#sos-curtain::before {
  content: "";

  position: absolute;

  top: -70px;
  left: 50%;

  transform: translateX(-50%);

  width: 2px;
  height: 70px;

  background: rgba(255,255,255,0.2);
}

/* bot */

.curtain-bot {
  position: absolute;

  top: -28px;
  left: -18px;

  width: 56px;
  height: 56px;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  backdrop-filter: blur(8px);

  animation: botFloat 2s infinite ease-in-out;
  z-index: 100000;
}

.badge {
  display: inline-block;

  margin-bottom: 10px;

  padding: 5px 10px;

  border-radius: 50px;

  font-size: 11px;

  background: rgba(255,255,255,0.1);
}

.curtain-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.curtain-content p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.curtain-btn {
  display: inline-block;

  margin-top: 10px;

  padding: 8px 14px;

  border-radius: 8px;

  text-decoration: none;

  color: #000;

  background: white;

  pointer-events: auto;
}

/* animations */

@keyframes curtainDrop {

  from {
    top: -250px;
  }

  to {
    top: 85px;
  }

}

@keyframes curtainStay {

  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }

}

@keyframes curtainHide {

  from {
    top: 85px;
    opacity: 1;
  }

  to {
    top: -250px;
    opacity: 0;
  }

}

@keyframes botFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }

}


/* =========================
   FOOTER
========================= */

.footer {
  margin-top: 80px;
  padding: 60px 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}

/* BRAND */
.footer-brand h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand p {
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand .trading {
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.5;
}

/* LINKS */
.footer-links h3,
.footer-newsletter h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  margin-bottom: 10px;
  transition: 0.3s;
  pointer-events: auto;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* NEWSLETTER */
.footer-newsletter p {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
  outline: none;
  pointer-events: auto;
}

.footer-newsletter button {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  pointer-events: auto;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


/* =========================
   REVIEWS TIMELINE
========================= */

.reviews-section{
  text-align:center;
}

.section-header span{
  letter-spacing:2px;
  font-size:12px;
  opacity:.6;
}

.review-timeline{
  position:relative;
  margin-top:80px;
  padding:40px 0;
  pointer-events: auto;
}

.timeline-line{
  position:absolute;
  top:50%;
  left:10%;
  width:80%;
  height:2px;
  background:rgba(255,255,255,.15);
}

.review-timeline{
  display:flex;
  justify-content:space-around;
  align-items:center;
}

.timeline-dot{
  position:relative;
  z-index:2;
  cursor:pointer;
}

.timeline-dot::before{
  content:"";
  width:20px;
  height:20px;
  border-radius:50%;
  display:block;

  background:#fff;

  box-shadow:
  0 0 20px rgba(255,255,255,.6);
}

.timeline-dot span{
  display:block;
  margin-top:15px;
}

.timeline-dot:hover::before{
  transform:scale(1.3);
}

.timeline-dot::before{
  transition:.3s;
}

.review-overlay{

  position:fixed;
  inset:0;

  background:rgba(0,0,0,.9);

  display:none;

  align-items:center;
  justify-content:center;
  pointer-events: auto;
  z-index:99999;
}

.review-overlay.active{
  display:flex;
}

.review-modal{

  width:90%;
  max-width:1200px;

  position:relative;
}

.review-card-layout{

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:40px;
}

.review-main blockquote{

  font-size:20px;
  line-height:1.8;
  opacity:.9;

  margin-top:20px;
}

.review-results{

  display:grid;
  gap:15px;
}

.result-block{

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  border-radius:14px;

  padding:20px;
}

.review-close{

  position:absolute;

  right:20px;
  top:20px;

  background:none;
  border:none;

  color:#fff;

  font-size:22px;
}

/* Entire site blur */

.app.blur-site {
  filter: blur(12px);
  transform: scale(0.98);

  transition:
    filter 0.4s ease,
    transform 0.4s ease;

  pointer-events: none;
}

/* Blur navbar too */

.navbar.blur-site {
  filter: blur(12px);

  transition: filter 0.4s ease;

  pointer-events: none;
}

/* Blur glow layer */

.bg-glow.blur-site {
  filter: blur(18px);

  transition: filter 0.4s ease;
}

/* Optional */
canvas.blur-site {
  filter: blur(8px);
  transition: filter 0.4s ease;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:60px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-tag{
    font-size:12px;
    letter-spacing:2px;
    opacity:.6;
}

.contact-info h2{
    font-size:42px;
    margin:15px 0;
}

.contact-info p{
    opacity:.8;
    line-height:1.8;
}

.contact-cards{
    margin-top:30px;
    display:grid;
    gap:15px;
}

.contact-card{
    display:flex;
    gap:15px;
    align-items:center;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;
    padding:18px;
}

.contact-card i{
    font-size:24px;
}

.contact-card h4{
    margin:0;
    font-size:16px;
}

.contact-card p{
    margin:0;
    opacity:.7;
}

.contact-form{
    display:grid;
    gap:15px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:15px;

    color:#fff;

    outline:none;

    pointer-events: auto;
}

.contact-form textarea{
    resize:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:rgba(255,255,255,.6);
}

.contact-btn{

    background:#fff;
    color:#000;

    border:none;

    border-radius:12px;

    padding:15px;

    font-weight:600;

    transition:.3s;

    pointer-events: auto;
}

.contact-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-section{
        padding:30px;
    }

    .contact-info h2{
        font-size:32px;
    }
}