/* =========================================================
   Techno-Infosec — Premium Enterprise Theme
   ========================================================= */

:root {
  --navy-950: #05070f;
  --navy-900: #0a0e1a;
  --navy-850: #0d1224;
  --navy-800: #111830;
  --navy-700: #182142;
  --navy-600: #212c54;
  --electric: #3d5afe;
  --electric-2: #00e0ff;
  --cyan-soft: #7cf5ff;
  --gold: #ffb703;
  --text-primary: #f4f6fb;
  --text-muted: #a9b3cc;
  --text-dim: #6d7893;
  --border-soft: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 20px 60px -20px rgba(61, 90, 254, 0.45);
  --transition-base: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-950);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

a { text-decoration: none; color: inherit; }

::selection { background: var(--electric); color: #fff; }

.text-gradient {
  background: linear-gradient(100deg, var(--electric-2) 0%, var(--electric) 55%, #9d6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-muted-soft { color: var(--text-muted) !important; }

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  transition: var(--transition-base);
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary-glow {
  background: linear-gradient(100deg, var(--electric) 0%, var(--electric-2) 130%);
  color: #051022;
  box-shadow: 0 12px 30px -8px rgba(61, 90, 254, 0.55);
}
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -6px rgba(0, 224, 255, 0.55);
  color: #051022;
}

.btn-outline-glow {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--electric-2);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Navbar ---------- */
.navbar-glass {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5, 7, 15, 0.55);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
}
.navbar-glass.scrolled {
  background: rgba(6, 9, 20, 0.85);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.6rem 0;
}
.navbar-brand-logo {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff !important;
}
.navbar-brand-logo span { color: var(--electric-2); }

.nav-link-custom {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-base);
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: #fff !important;
}
.nav-link-custom.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-2), var(--electric));
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(61, 90, 254, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, rgba(0, 224, 255, 0.18), transparent 55%),
    var(--navy-950);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}
.hero-orb.one { width: 420px; height: 420px; background: var(--electric); top: -100px; right: -80px; }
.hero-orb.two { width: 320px; height: 320px; background: var(--electric-2); bottom: -60px; left: 8%; animation-delay: -3s; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--cyan-soft);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 1.25rem 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  padding: 2rem;
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  transition: var(--transition-base);
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(61, 90, 254, 0.4);
  box-shadow: 0 25px 50px -20px rgba(61, 90, 254, 0.35);
}

.icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(61,90,254,0.25), rgba(0,224,255,0.15));
  color: var(--cyan-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}
.section-dark { background: var(--navy-950); }
.section-alt { background: var(--navy-900); }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--electric-2);
}

.section-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0.75rem 0 1rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 620px;
}

/* ---------- Stats ---------- */
.stat-block { text-align: center; padding: 1.5rem 1rem; }
.stat-value {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(100deg, var(--electric-2), var(--electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* ---------- Timeline / Process ---------- */
.process-step {
  border-left: 2px solid var(--border-soft);
  padding-left: 1.75rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.process-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--electric-2);
  box-shadow: 0 0 0 5px rgba(0, 224, 255, 0.15);
}
.process-step:last-child { border-left-color: transparent; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}
.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-style: italic;
}
.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--electric-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #051022;
}

/* ---------- Pricing / Budget tags ---------- */
.badge-soft {
  background: rgba(61, 90, 254, 0.15);
  color: var(--cyan-soft);
  border: 1px solid rgba(0, 224, 255, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.05);
  border-color: var(--electric-2);
  box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.12);
  color: #fff;
}
.form-control::placeholder { color: var(--text-dim); }
label { color: var(--text-muted); font-weight: 500; margin-bottom: 0.4rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2rem;
}
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer a.footer-link {
  color: var(--text-muted);
  display: block;
  padding: 0.3rem 0;
  transition: var(--transition-base);
}
.footer a.footer-link:hover { color: var(--electric-2); padding-left: 4px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-base);
}
.footer-social:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: #fff;
  transform: translateY(-4px);
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 9rem 0 4rem;
  background:
    radial-gradient(900px 400px at 90% -10%, rgba(0, 224, 255, 0.18), transparent 60%),
    var(--navy-950);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb-custom { color: var(--text-dim); font-size: 0.9rem; }
.breadcrumb-custom a { color: var(--text-muted); }
.breadcrumb-custom a:hover { color: var(--electric-2); }

/* ---------- Misc ---------- */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
  border: none;
  margin: 3rem 0;
}

.card-list-icon {
  color: var(--electric-2);
  margin-right: 0.6rem;
}

.job-type-pill {
  background: rgba(255,183,3,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,183,3,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero-section { padding-top: 6rem; }
}
