:root{
  --bg: #0B1220;
  --surface: #0F172A;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.10);
  --text: #E5E7EB;
  --muted: #A1A1AA;
  --primary: #22D3EE;
  --primary-2: #38BDF8;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,"Noto Sans","Liberation Sans",sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(34,211,238,0.15), transparent 55%),
              radial-gradient(1000px 600px at 80% 30%, rgba(56,189,248,0.12), transparent 60%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
a:hover{ color: var(--primary); }

.navbar{
  background: rgba(11,18,32,0.70) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand-badge{
  display:flex; align-items:center; gap:12px;
}
.brand-logo{
  width:40px; height:40px; border-radius:10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.brand-logo img{ width:100%; height:100%; object-fit:cover; }

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border: none;
  color:#061019;
  font-weight:700;
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-outline-light{
  border-color: rgba(255,255,255,0.22);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.30);
}

.hero{
  padding: 72px 0 32px;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  min-height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,0.95) 0%, rgba(11,18,32,0.55) 50%, rgba(11,18,32,0.20) 100%);
}
.hero-content{
  position: relative;
  z-index: 1;
  padding: 34px;
}
.kicker{
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
}
h1{
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height:1.12;
  margin: 10px 0 12px;
}
.lead{
  color: rgba(229,231,235,0.85);
  max-width: 58ch;
}

.section{
  padding: 38px 0;
}
.section-title{
  font-size: 1.25rem;
  margin:0 0 10px;
}
.section-subtitle{
  color: rgba(229,231,235,0.75);
  margin:0 0 22px;
}

.cardx{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
}
.cardx h3{
  font-size: 1.05rem;
  margin:0 0 6px;
}
.cardx p{
  margin:0;
  color: rgba(229,231,235,0.78);
}

.badge-soft{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34,211,238,0.12);
  border: 1px solid rgba(34,211,238,0.22);
  color: var(--primary);
  font-weight: 700;
  font-size: .82rem;
}

.footer{
  margin-top: 30px;
  border-top: 1px solid var(--border);
  background: rgba(11,18,32,0.60);
  backdrop-filter: blur(10px);
}
.footer small{ color: rgba(229,231,235,0.70); }

.page-hero{
  padding: 34px 0 12px;
}
.page-hero .wrap{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.form-control, .form-select{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
}
.form-control:focus, .form-select:focus{
  box-shadow: none;
  border-color: rgba(34,211,238,0.45);
}
.form-control::placeholder{ color: rgba(229,231,235,0.55); }
/* ---------- Enhanced Home Animations & Components ---------- */

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { transform: translateX(-40%); opacity: 0; }
  30% { opacity: .35; }
  100% { transform: translateX(140%); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-2{
  padding: 80px 0 40px;
}

.hero-shell{
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-shell::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 280px at 20% 15%, rgba(34,211,238,0.18), transparent 55%),
              radial-gradient(700px 320px at 85% 40%, rgba(56,189,248,0.12), transparent 58%);
  pointer-events:none;
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85), transparent 70%);
  opacity: .35;
  pointer-events:none;
}

.hero-shine{
  position:absolute;
  top:-30%;
  left:-60%;
  width:60%;
  height:200%;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.18), transparent);
  transform: rotate(18deg);
  animation: shimmer 6.5s ease-in-out infinite;
  pointer-events:none;
}

.hero-content-2{
  position:relative;
  z-index:2;
  padding: 38px;
}

.hero-media-2{
  position:relative;
  min-height: 420px;
  border-left: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  overflow:hidden;
}

.hero-media-2::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,0.92), rgba(11,18,32,0.30));
}

.hero-badges{
  display:flex; flex-wrap:wrap; gap:10px;
}

.icon-pill{
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: rgba(229,231,235,0.85);
  font-weight: 650;
  font-size: .88rem;
}

.mini-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  height: 100%;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.mini-card:hover{
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.35);
  background: rgba(255,255,255,0.055);
}

.split-card{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  overflow:hidden;
}

.split-media{
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position:relative;
}
.split-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(11,18,32,0.90), rgba(11,18,32,0.15));
}

.metric{
  display:flex; flex-direction:column;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.metric strong{
  font-size: 1.6rem;
}
.metric span{
  color: rgba(229,231,235,0.78);
}

.gallery-card{
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.gallery-card:hover{
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.35);
}
.gallery-img{
  height: 220px;
  background-size: cover;
  background-position: center;
}
.gallery-body{
  padding: 14px 16px 16px;
}
.gallery-body h3{
  font-size: 1.02rem;
  margin:0 0 6px;
}
.gallery-body p{
  margin:0;
  color: rgba(229,231,235,0.78);
}

/* Subtle floating accent */
.float-bubble{
  position:absolute;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(34,211,238,0.22), rgba(56,189,248,0.08), transparent 65%);
  filter: blur(0px);
  opacity: .9;
  animation: floaty 4.8s ease-in-out infinite;
  pointer-events:none;
}

/* Better section spacing */
.section-xl{ padding: 52px 0; }
