﻿:root {
  --primary: #0b5ed7;
  --dark: #0a192f;
  --accent: #00c6ff;
  --light: #f8f9fa;
  --muted: #a9bfd6;
  --ink: #081326;
  --card-bg: rgba(8, 19, 38, 0.82);
  --border: rgba(255, 255, 255, 0.14);
  --glow: 0 18px 40px rgba(0, 12, 30, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--light);
  line-height: 1.72;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 198, 255, 0.18), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(11, 94, 215, 0.22), transparent 34%),
    linear-gradient(130deg, #040d1b 0%, #0a192f 48%, #0a2444 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
}

a {
  text-decoration: none;
}

.text-muted-tech {
  color: var(--muted);
}

.section-space {
  padding: 95px 0;
}

.section-title {
  font-size: clamp(1.85rem, 3.9vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 860px;
  margin-bottom: 2rem;
}

.tech-navbar {
  backdrop-filter: blur(14px);
  background-color: rgba(10, 25, 47, 0.86);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  font-size: 1.45rem;
  letter-spacing: 1px;
}

.nav-link {
  color: #dbe8f8;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 25, 47, 0.94), rgba(10, 25, 47, 0.62));
  z-index: -1;
}

.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  z-index: -1;
}

.hero-image-bg,
.page-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero {
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 140px 0 70px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.1rem);
  margin-bottom: 0.9rem;
}

.btn-tech,
.btn-outline-tech {
  border-radius: 999px;
  padding: 0.76rem 1.45rem;
  font-weight: 600;
}

.btn-tech {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
}

.btn-tech:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 198, 255, 0.28);
}

.btn-outline-tech {
  border: 1px solid rgba(0, 198, 255, 0.8);
  color: var(--accent);
}

.btn-outline-tech:hover {
  color: #fff;
  background-color: rgba(0, 198, 255, 0.13);
}

.glass-card,
.info-card,
.service-card,
.feature-card,
.solution-card,
.contact-card,
.metric-card,
.timeline-card {
  background: linear-gradient(160deg, rgba(11, 94, 215, 0.14), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.45rem;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.glass-card:hover,
.info-card:hover,
.service-card:hover,
.feature-card:hover,
.solution-card:hover,
.contact-card:hover,
.metric-card:hover,
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
  border-color: rgba(0, 198, 255, 0.5);
}

.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.stat-item {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(8, 22, 42, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item .value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d9efff;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  background-color: #020915;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  margin-bottom: 0.6rem;
}

.list-check i {
  color: #6eddff;
  margin-right: 0.55rem;
}

.kpi-strip {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(11, 94, 215, 0.28), rgba(0, 198, 255, 0.08));
  padding: 1.2rem;
}

.cta-block {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(11, 94, 215, 0.35), rgba(0, 198, 255, 0.14));
  padding: 2.4rem;
}

.form-control,
.form-control:focus {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light);
  box-shadow: none;
}

.form-control::placeholder {
  color: #b5c8dd;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
}

footer {
  border-top: 1px solid var(--border);
  background-color: rgba(4, 12, 22, 0.9);
}

.footer-link {
  color: #d6e8fa;
}

.footer-link:hover {
  color: var(--accent);
}

.small-muted {
  color: #abc2da;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 76px 0;
  }

  .hero {
    min-height: 85vh;
  }

  .page-hero {
    min-height: 48vh;
    padding-top: 130px;
  }
}
