li.mx-1 {
    background: linear-gradient(90deg, #0066FF, #00A8FF);
    border-radius: 10px;
}



/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--silver);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== CUSTOM CURSOR ===== */
#cursor {
  position: fixed; width: 14px; height: 14px;
  background: var(--neon); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
  box-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon);
  mix-blend-mode: screen;
  display: none;
}
#cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(0,168,255,0.5);
  border-radius: 50%; pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  #cursor, #cursor-ring { display: block; }
  body { cursor: none; }
}

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed; inset: 0; background: var(--bg-primary);
  z-index: 99997; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: 6px;
  background: linear-gradient(135deg, var(--neon), var(--royal), var(--silver));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.loader-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(0,168,255,0.15); border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--royal), var(--neon));
  animation: loadbar 2.2s ease forwards;
  box-shadow: 0 0 12px var(--neon);
}
@keyframes loadbar { to { width: 100%; } }
@keyframes pulse-glow {
  0%,100% { filter: drop-shadow(0 0 10px var(--neon)); }
  50% { filter: drop-shadow(0 0 25px var(--neon)); }
}

/* ===== PARTICLES ===== */
#particles-js {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
  background: rgba(5,8,22,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
  background: rgba(5,8,22,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 3px;
  color: var(--white) !important;
}
.navbar-brand img { height: 38px; }
.navbar-brand span {
  background: linear-gradient(135deg, var(--neon), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-link {
  color: var(--silver) !important;
  font-family: var(--font-alt);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--neon);
  transform: translateX(-50%);
  transition: width 0.3s;
  box-shadow: 0 0 6px var(--neon);
}
.nav-link:hover { color: var(--neon) !important; }
.nav-link:hover::after { width: 60%; }
.navbar-collapse {
  background: transparent;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(5,8,22,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 10px;
  }
  .nav-link::after { display: none; }
  .nav-link { border-bottom: 1px solid rgba(0,168,255,0.06); }
  .nav-link:last-of-type { border-bottom: none; }
}
.btn-nav-login {
  border: 1px solid var(--glass-border);
  color: var(--silver) !important;
  padding: 8px 20px !important;
  border-radius: 6px; font-size: 0.82rem;
  background: var(--glass);
  transition: all 0.3s;
  display: inline-block; text-align: center;
}
.btn-nav-login:hover {
  border-color: var(--neon); color: var(--neon) !important;
  box-shadow: var(--glow-sm);
}
.btn-nav-cta {
  background: linear-gradient(135deg, var(--royal), var(--neon));
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px; font-size: 0.82rem;
  font-weight: 600; border: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0,168,255,0.25);
  display: inline-block; text-align: center;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}
.navbar-toggler {
  border-color: var(--glass-border);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(0,168,255,0.2); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative; z-index: 1;
  display: flex; align-items: center;
  padding: 110px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,102,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 30% 80%, rgba(0,168,255,0.05) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  color: var(--neon); font-size:1rem;
  font-family: var(--font-alt); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--neon);
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title {
  font-family:'FontAwesome';
  font-size:65px;
  font-weight:600;
  /*line-height: 1.0;*/
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-title .line2 {
  background: linear-gradient(135deg, var(--neon) 0%, var(--royal) 50%, #7bb8ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block;
}
.hero-desc {
   color: var(--silver);
  line-height: 1.8; max-width: 520px;
  margin-bottom: 28px; opacity: 0.85;
}
.btn-primary-glow {
  background: linear-gradient(135deg, var(--royal), var(--neon));
  color: var(--white); font-family: var(--font-alt);
  font-weight: 700;
  /*font-size: 0.88rem;*/
  padding: 13px 26px; border-radius: 8px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(0,168,255,0.3);
  letter-spacing: 0.5px;
  display: inline-flex; align-items: center;
}
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,168,255,0.5);
  color: var(--white);
}
.btn-outline-glow {
  background: transparent;
  color: var(--neon); font-family: var(--font-alt);
  font-weight: 600;
  /*font-size: 0.88rem;*/
  padding: 12px 26px; border-radius: 8px;
  border: 1px solid rgba(0,168,255,0.35);
  transition: all 0.3s; letter-spacing: 0.5px;
  display: inline-flex; align-items: center;
}
.btn-outline-glow:hover {
  background: rgba(0,168,255,0.08);
  border-color: var(--neon); color: var(--neon);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

/* Hero Image Side */
.hero-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  margin-top: 40px;
}
.hero-img-glow {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,0.25) 0%, rgba(0,168,255,0.12) 40%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: 0;
}
@keyframes glow-pulse {
  0%,100%{ transform: scale(1); opacity:0.8; }
  50%{ transform: scale(1.1); opacity:1; }
}
.hero-img-placeholder {
  position: relative; z-index: 2;
  width: min(280px, 75vw); height: min(280px, 75vw);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(0,168,255,0.1));
  border: 1px solid rgba(0,168,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; color: rgba(0,168,255,0.6);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,102,255,0.2), inset 0 0 40px rgba(0,168,255,0.05);
}
.hero-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-placeholder .bull-icon {
   opacity: 0.7;
  background: linear-gradient(135deg, var(--neon), var(--royal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Floating hero cards */
.hero-float-card {
  position: absolute; z-index: 10;
  background: rgba(10,17,40,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 130px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), var(--glow-sm);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: -1s; }
.hero-float-card:nth-child(3) { animation-delay: -2s; }
@keyframes float {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.hero-float-card.card-tl { top: 5%; left: -10px; }
.hero-float-card.card-br { bottom: 5%; right: -10px; }
.hero-float-card.card-tr { top: 35%; right: -10px; display: none; }
.float-val {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--neon); letter-spacing: 1px;
  line-height: 1;
}
.float-label {
  font-size: 0.65rem; color: var(--silver); opacity: 0.7;
  font-family: var(--font-alt); margin-top: 2px;
}
.float-icon {
  font-size: 1rem; color: var(--neon);
  margin-bottom: 4px;
  text-shadow: 0 0 10px var(--neon);
}

/* ===== SECTION SHARED ===== */
section { position: relative; z-index: 1; }
.section-label {
  font-family: var(--font-alt); 
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--neon); font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white); letter-spacing: 2px;
  line-height: 1.1;
}
.section-title span {
  background: linear-gradient(135deg, var(--neon), var(--royal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--neon));
  border-radius: 2px; margin: 16px 0 20px;
  box-shadow: 0 0 10px var(--neon);
}
.section-divider.center { margin: 16px auto 20px; }

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(10,17,40,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,168,255,0.03) 0%, transparent 60%);
  pointer-events: none; border-radius: inherit;
}
.glass-card:hover {
  border-color: rgba(0,168,255,0.35);
  box-shadow: 0 10px 50px rgba(0,0,0,0.4), var(--glow-sm);
  transform: translateY(-6px);
}

/* ===== LIVE MARKET ===== */
.market-section {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(10,17,40,0.5), transparent);
}
.ticker-wrap {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  background: rgba(10,17,40,0.4);
  backdrop-filter: blur(10px);
}
.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 40px;
  font-family: var(--font-alt); 
}
.ticker-item .t-name { color: var(--white); font-weight: 600; }
.ticker-item .t-price { color: var(--silver); }
.ticker-item .t-up { color: #00e676; }
.ticker-item .t-down { color: #ff5252; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.market-card { padding: 24px; }
.crypto-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,168,255,0.12);
  border: 1px solid rgba(0,168,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
  color: var(--neon);
}
.crypto-name { font-family: var(--font-alt); font-weight: 700; color: var(--white); }
.crypto-sym {  color: var(--silver); opacity: 0.6; }
.crypto-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); letter-spacing: 1px; }
.crypto-change {  font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.crypto-change.up { color: #00e676; background: rgba(0,230,118,0.1); }
.crypto-change.down { color: #ff5252; background: rgba(255,82,82,0.1); }
.mini-chart { margin-top: 14px; }
canvas.mini-chart-canvas { width: 100% !important; height: 60px !important; }

/* ===== ABOUT ===== */
.about-section { padding: 100px 0; }
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-sm);
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,168,255,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(0,168,255,0.3);
  position: relative;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.05) 0%, transparent 60%);
}
.about-frame-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: var(--neon); border-style: solid;
  border-width: 0; opacity: 0.6;
}
.afc-tl { top: -8px; left: -8px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 4px; }
.afc-br { bottom: -8px; right: -8px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 4px; }

.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,168,255,0.07);
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 8px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon); 
}
.about-feature-title { font-family: var(--font-alt); font-weight: 600; color: var(--white); }
.about-feature-desc {  color: var(--silver); opacity: 0.7; margin-top: 2px; }

/* ===== WHY CHOOSE ===== */
.why-section { padding: 100px 0; }
.why-card {
  padding: 32px 28px; height: 100%;
  text-align: center;
}
.why-icon-wrap {
  width: 70px; height: 70px; border-radius: 16px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(0,168,255,0.08));
  border: 1px solid rgba(0,168,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--neon);
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0,168,255,0.1);
}
.glass-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, rgba(0,102,255,0.3), rgba(0,168,255,0.2));
  box-shadow: var(--glow-md);
  transform: scale(1.1);
}
.why-title { font-family: var(--font-alt); font-weight: 700; color: var(--white);  margin-bottom: 10px; }
.why-desc { color: var(--silver); opacity: 0.75; line-height: 1.7; }

/* ===== SERVICES ===== */
.services-section { padding: 100px 0; }
.service-card { overflow: hidden; }
.service-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  background: linear-gradient(135deg, rgba(0,102,255,0.12), rgba(0,168,255,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(0,168,255,0.4);
  overflow: hidden; position: relative;
}
.service-img img { width: 100%; height: 100%;  }
.service-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-secondary) 100%);
}
.service-body { padding: 24px; }
.service-tag {
   font-family: var(--font-alt);
  color: var(--neon); letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 10px;
}
.service-title { font-family: var(--font-alt); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-desc { color: var(--silver); opacity: 0.75; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--neon);  font-weight: 600;
  margin-top: 16px; font-family: var(--font-alt);
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }

/* ===== PERFORMANCE ===== */
.perf-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,102,255,0.04) 50%, transparent);
  position: relative;
}
.perf-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,102,255,0.05) 0%, transparent 70%);
}
.stat-card {
  text-align: center; padding: 36px 24px;
  border-radius: 16px;
  background: rgba(10,17,40,0.5);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  transition: all 0.4s;
}
.stat-card:hover {
  border-color: rgba(0,168,255,0.3);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--neon), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-family: var(--font-alt); font-size: 0.82rem; color: var(--silver); opacity: 0.7; margin-top: 4px; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 100px 0; }
.steps-wrap { position: relative; }
.steps-line {
  position: absolute; top: 38px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--neon));
  z-index: 0;
  box-shadow: 0 0 10px var(--neon);
  display: none;
}
@media(min-width:992px){.steps-line{display:block;}}
.step-item {
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--royal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--neon); margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(0,102,255,0.3);
  transition: all 0.4s;
  position: relative;
}
.step-num::after {
  content:''; position:absolute; inset:-4px;
  border-radius: 50%;
  border: 1px solid rgba(0,168,255,0.2);
}
.step-item:hover .step-num {
  border-color: var(--neon);
  box-shadow: var(--glow-md);
  transform: scale(1.1);
}
.step-title { font-family: var(--font-alt); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc {  color: var(--silver); opacity: 0.7; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testi-section { padding: 100px 0; }
.testi-card { padding: 32px; margin: 10px; }
.testi-quote {
  font-size: 2rem; color: rgba(0,168,255,0.3); line-height: 1; margin-bottom: 16px;
}
.testi-text {  color: var(--silver); line-height: 1.8; opacity: 0.85; margin-bottom: 24px; font-style: italic; }
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(0,168,255,0.1));
  border: 2px solid rgba(0,168,255,0.3);
  display: flex; align-items: center; justify-content: center;
   color: var(--neon); overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: var(--font-alt); font-weight: 700; color: var(--white);  }
.testi-role { color: var(--neon); }
.testi-stars { color: #FFB800;  margin-bottom: 4px; }

/* Swiper */
.swiper-pagination-bullet { background: rgba(0,168,255,0.4); }
.swiper-pagination-bullet-active { background: var(--neon); box-shadow: 0 0 6px var(--neon); }
.swiper-button-next, .swiper-button-prev {
  color: var(--neon) !important; opacity: 0.7;
}
.swiper-button-next:hover, .swiper-button-prev:hover { opacity: 1; }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden; border-radius: 12px;
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,168,255,0.05));
  display: flex; align-items: center; justify-content: center;
  cursor: none; position: relative;
  overflow: hidden;
}
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-placeholder {
  font-size: 3rem; color: rgba(0,168,255,0.25);
  pointer-events: none;
}
.gallery-item::after {
  content:''; position:absolute; inset:0;
  background: rgba(0,168,255,0.05);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,102,255,0.1) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0,102,255,0.06), rgba(0,168,255,0.04));
}
.cta-section .container { position: relative; z-index: 1; }
.cta-box {
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  background: rgba(10,17,40,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,168,255,0.2);
  box-shadow: 0 20px 80px rgba(0,0,0,0.4), 0 0 60px rgba(0,102,255,0.08);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content:''; position:absolute; top:-1px; left:10%; right:10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 20px var(--neon);
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); letter-spacing: 2px; margin-bottom: 16px;
}
.cta-desc { color: var(--silver); opacity: 0.8; max-width: 500px; margin: 0 auto 36px; line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: rgba(5,8,22,0.98);
  border-top: 1px solid var(--glass-border);
  padding-top: 70px;
}
.footer-brand {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--neon), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px; display: block;
}
.footer-logo-img { height: 50px; margin-bottom: 12px; }
.footer-desc { font-size: 0.82rem; color: var(--silver); opacity: 0.6; line-height: 1.8; max-width: 260px; }
.footer-heading { font-family: var(--font-alt); font-weight: 700; color: var(--white); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 20px; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.82rem; color: var(--silver); opacity: 0.65; transition: all 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--neon); padding-left: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--glass-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--silver); font-size: 0.9rem; margin-right: 8px;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--neon); color: var(--neon); box-shadow: var(--glow-sm); }
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); color: var(--white);
  padding: 10px 14px; border-radius: 8px; font-size: 0.82rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-form input:focus { border-color: var(--neon); box-shadow: var(--glow-sm); }
.newsletter-form input::placeholder { color: rgba(200,209,224,0.4); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--royal), var(--neon));
  border: none; color: var(--white); padding: 10px 18px;
  border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  cursor: none; transition: all 0.3s;
}
.newsletter-form button:hover { box-shadow: var(--glow-sm); }
.footer-bottom {
  margin-top: 50px; padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.78rem; color: var(--silver); opacity: 0.5;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--royal); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

/* ===== UTILITIES ===== */
.text-neon { color: var(--neon); }
.py-section { padding: 100px 0; }

/* ===== RESPONSIVE ===== */
@media(max-width:991px){
  .hero { padding: 100px 0 60px; }
  .hero-img-wrap { min-height: 320px; margin-top: 40px; }
  .hero-float-card.card-tl { top: 0; left: 0; }
  .hero-float-card.card-br { bottom: 0; right: 0; }
  .hero-float-card.card-tr { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; aspect-ratio: 1; }
}
@media(max-width:767px){
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 40px 24px; }
}

img#chartt-1 {
    height: 129px;
    width: 211px;
}