:root {
  --bg: #0b1b2a;
  --card: #0f2538;
  --text: #eaf2ff;
  --muted: #b7c7e6;
  --accent: #ff8a2a;
  --accent2: #34b6ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --max: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
   background: rgba(7, 19, 31, 0.72);
  }
   
   
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 10px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 19, 31, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 10px 0;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #07131f;
}

.brand span { display: block; }
.brand .sub { font-weight: 600; font-size: 13px; color: var(--muted); margin-top: 2px; }

.navlinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.navlinks a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.navlinks a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.btn:hover { background: rgba(255, 255, 255, 0.1); }

.btn.primary {
  border-color: rgba(255, 138, 42, 0.35);
  background: linear-gradient(135deg, rgba(255, 138, 42, 0.95), rgba(52, 182, 255, 0.75));
  color: #061019;
}

.btn.primary:hover { filter: brightness(1.03); }

.hero { padding: 1px 0 18px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
}

h1 {
  margin: 14px 0 10px 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}
h2 {
  margin: 14px 0 10px 0;
  font-size: 36 1.05;
  letter-spacing: -0.6px;
}
.tagline {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px 0;
  max-width: 64ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 0 0 6px 0; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.section { padding: 26px 0; }

.section h2 { margin: 0 0 10px 0; font-size: 26px; letter-spacing: -0.2px; }

.section .lead { margin: 0 0 16px 0; color: var(--muted); max-width: 80ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

th, td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

th { background: rgba(255, 255, 255, 0.05); }
tr:last-child td { border-bottom: none; }

.note { color: var(--muted); font-size: 13px; margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field { display: grid; gap: 6px; margin-bottom: 10px; }

label { font-size: 13px; color: var(--muted); }

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  font-size: 14px;
}

textarea { min-height: 120px; resize: vertical; }

input:focus, textarea:focus {
  border-color: rgba(52, 182, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(52, 182, 255, 0.12);
}

footer {
  border-top: 1px solid var(--border);
  padding: 18px 0 40px 0;
  color: var(--muted);
  font-size: 13px;
}

.small { font-size: 12px; color: var(--muted); }

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.g-item {
  margin: 0;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.g-item img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.g-item:hover img { transform: scale(1.03); }

.g-item figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 18px;
  z-index: 1000;
}

.lightbox.open { display: grid; }

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.lb-img {
  max-width: min(980px, 95vw);
  max-height: 75vh;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lb-cap {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  max-width: min(980px, 95vw);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .g-item img { height: 240px; }
  h1 { font-size: 36px; }
}
section {
  scroll-margin-top: 90px;
}

/* Optional: smooth scrolling for all anchor jumps */
html {
  scroll-behavior: smooth;
}
.brand-text h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 920px) {
  .container.nav {
    gap: 10px;
    align-items: center;
  }

  .logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .brand-text h2 {
    font-size: 16px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
  }

  .navlinks {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .navlinks a {
    display: block;
    width: 100%;
  }

  .topbar.open .navlinks {
    display: flex;
  }
}
.topbar { position: sticky !important; top: 0 !important; }
.services-image {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 30px;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.hero-image {
  background-image:
    linear-gradient(rgba(7, 19, 31, 0.75), rgba(7, 19, 31, 0.75)),
    url("../img/hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
img {
  max-width: 100%;
  height: auto;
}
.services-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 20px auto 30px;
 }
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #0b1b2a;
  font-weight: 500;
}

.main-nav a.cta {
  background: #ff8a2a;
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .site-logo {
    height: 48px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
