/* ═══════════════════════════════════════════════════
   NATEK SOFTWARES — Main Stylesheet
   Aesthetic: Tech-refined dark navy + electric cyan
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════ */

:root {
  --navy:      #0a0f2c;
  --navy-2:    #0d1438;
  --navy-3:    #111b4a;
  --cyan:      #00d4ff;
  --cyan-2:    #00b8e6;
  --cyan-glow: rgba(0, 212, 255, 0.18);
  --teal:      #0ea5e9;
  --white:     #ffffff;
  --off-white: #f0f4ff;
  --light:     #e8eeff;
  --muted:     #8892b0;
  --card-bg:   #ffffff;
  --card-border: rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2040;
  background: #fff;
  /* Prevent any child from causing horizontal scroll */
  /*overflow-x: hidden;*/
}

.page-wrapper {
  overflow-x: hidden;
  width: 100%;
}


h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; font-weight: 700; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ─── BRAND ─── */
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy);
  flex-shrink: 0;
}
.brand-icon-sm { width: 28px; height: 28px; font-size: 13px; border-radius: 7px; }
.brand-icon-lg { width: 56px; height: 56px; font-size: 26px; border-radius: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: -0.5px; }
.brand-sub { font-size: 11px; color: var(--muted); font-weight: 400; letter-spacing: 0.5px; }
.accent { color: var(--cyan); }
.text-accent { color: var(--cyan) !important; }

/* ─── NAVBAR ─── */
.natek-nav {
  background: rgba(10,15,44,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  padding: 12px 0;
  transition: background var(--transition);
  /* overflow: visible !important; /* don't clip the dropdown */
}
.natek-nav .container {
  flex-wrap: nowrap; /* keeps brand + toggler on same line */
}

.natek-nav.scrolled { background: rgba(10,15,44,0.98); }
.natek-nav .brand-name { color: #fff; }
.natek-nav .brand-sub { color: rgba(255,255,255,0.4); }
.natek-nav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.natek-nav .nav-link:hover,
.natek-nav .nav-link.active { color: #fff !important; background: rgba(0,212,255,0.12); }
.natek-nav .navbar-toggler { border: 1px solid rgba(0,212,255,0.3); color: var(--cyan); }
.natek-nav .navbar-toggler .bi { font-size: 22px; }

/* ─── BUTTONS ─── */
.btn-natek {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--navy) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,212,255,0.3);
}
.btn-natek:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.45);
  color: var(--navy) !important;
}
.btn-outline-natek {
  background: transparent;
  color: var(--cyan) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  border: 1.5px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  transition: all var(--transition);
}
.btn-outline-natek:hover {
  background: var(--cyan-glow);
  color: var(--cyan) !important;
  transform: translateY(-2px);
}

/* ─── FLASH ─── */
.flash-container {
  position: fixed; top: 70px; right: 20px; z-index: 9999;
  width: min(400px, calc(100vw - 40px));
}

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(0,212,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(14,165,233,0.08) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 16px 0 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.75;
}
.hero-stats { gap: 32px !important; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Hero Visual */
.hero-visual {
  width: 340px; height: 340px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hex-ring {
  position: absolute; border-radius: 50%; border: 1.5px solid;
  animation: spin linear infinite;
}
.hex-ring-1 { width: 100%; height: 100%; border-color: rgba(0,212,255,0.15); animation-duration: 20s; }
.hex-ring-2 { width: 76%; height: 76%; border-color: rgba(0,212,255,0.25); animation-duration: 14s; animation-direction: reverse; }
.hex-ring-3 { width: 52%; height: 52%; border-color: rgba(0,212,255,0.4); animation-duration: 9s; }
@keyframes spin { to { transform: rotate(360deg); } }
.hex-core {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(14,165,233,0.1));
  border: 1.5px solid rgba(0,212,255,0.5);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: var(--cyan);
  box-shadow: 0 0 40px rgba(0,212,255,0.2);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 30px rgba(0,212,255,0.2); } 50% { box-shadow: 0 0 60px rgba(0,212,255,0.4); } }
.orbit-dot {
  position: absolute; width: 10px; height: 10px;
  border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.orbit-dot-1 { top: 5%; left: 50%; animation: orbit1 5s linear infinite; }
.orbit-dot-2 { top: 50%; right: 5%; animation: orbit2 7s linear infinite; }
.orbit-dot-3 { bottom: 5%; left: 30%; animation: orbit3 6s linear infinite; }
@keyframes orbit1 { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes orbit2 { 0%,100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(-6px); } }
@keyframes orbit3 { 0%,100% { transform: translateX(0) translateY(0); } 50% { transform: translateX(4px) translateY(-5px); } }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 2px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(0,212,255,0.5), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--navy-2);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.5); padding: 0 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.marquee-track .sep { color: var(--cyan); padding: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
.section-lg { padding: 100px 0; }
.section-dark { background: var(--navy); }
.section-soft { background: var(--off-white); }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--cyan);
  font-family: 'Syne', sans-serif; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 20px;
}
.section-text { font-size: 1rem; color: #4a5270; line-height: 1.8; }

/* ─── ABOUT VISUAL ─── */
.about-visual-wrap { position: relative; padding: 20px; }
.about-card-accent {
  position: absolute; top: 0; left: 0;
  width: 80%; height: 80%;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(14,165,233,0.05));
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg);
}
.about-img-card {
  position: relative; z-index: 2;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.about-icon-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.aig-item {
  aspect-ratio: 1; background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--cyan);
  transition: all var(--transition);
}
.aig-item:hover { background: rgba(0,212,255,0.18); transform: scale(1.05); }

/* ─── VALUE CARDS ─── */
.value-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card > i { font-size: 1.4rem; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.value-card strong { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ─── SERVICE CARDS ─── */
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.35); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card-lg { background: var(--card-bg); border: 1px solid var(--card-border); color: var(--navy); }
.service-card-lg:hover { border-color: var(--cyan); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,212,255,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--cyan);
  margin-bottom: 20px;
}
.service-icon-lg { width: 64px; height: 64px; font-size: 1.8rem; margin-bottom: 24px; }
.service-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-card-lg .service-title { color: var(--navy); }
.service-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.service-card-lg .service-desc { color: var(--muted); }
.service-link { font-size: 13px; font-weight: 600; color: var(--cyan); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ─── PROJECT CARDS ─── */
.project-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img { position: relative; height: 200px; overflow: hidden; background: var(--navy-3); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-img img { transform: scale(1.06); }
.project-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(0,212,255,0.3); }
.project-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--cyan); color: var(--navy);
  font-size: 11px; font-weight: 700; font-family: 'Syne', sans-serif;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.5px;
}
.project-body { padding: 20px; }
.project-body h5 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.project-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 0; }
.project-client { font-size: 12px; color: var(--teal); margin-bottom: 6px; }

/* ─── TEAM CARDS ─── */
.team-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  overflow: hidden; text-align: center;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 28px auto 16px; overflow: hidden;
  border: 3px solid var(--cyan);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder { width: 100%; height: 100%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--cyan); }
.team-avatar-lg { width: 110px; height: 110px; margin-top: 32px; }
.team-info { padding: 0 20px 24px; }
.team-info h5 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 1px; font-family: 'Syne', sans-serif; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 12px 0 14px; }
.team-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,212,255,0.1); color: var(--cyan); font-size: 15px;
  text-decoration: none; transition: all var(--transition);
}
.team-social:hover { background: var(--cyan); color: var(--navy); }

/* ─── BLOG CARDS ─── */
.blog-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--card-border); overflow: hidden;
  transition: all var(--transition); box-shadow: var(--shadow-sm); height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { height: 200px; overflow: hidden; background: var(--navy-3); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(0,212,255,0.2); }
.blog-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; font-family: 'Syne', sans-serif; }
.blog-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin: 8px 0 10px; line-height: 1.4; }
.blog-title a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
.blog-title a:hover { color: var(--teal); }
.blog-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.blog-meta { font-size: 12px; color: rgba(0,0,0,0.4); display: flex; gap: 12px; flex-wrap: wrap; }
.blog-meta i { margin-right: 3px; }
.blog-content { font-size: 1.05rem; line-height: 1.85; color: #2a3050; }
.blog-content h2,h3,h4 { font-family: 'Syne', sans-serif; margin-top: 2rem; }
.blog-card-sm { border: none; border-bottom: 1px solid var(--card-border); border-radius: 0; background: transparent; box-shadow: none; }
.blog-card-sm:hover { transform: none; box-shadow: none; }
.blog-card-sm:last-child { border-bottom: none; }

/* ─── STATS ─── */
.stat-block {
  background: var(--off-white); border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 28px 24px; text-align: center;
}
.stat-block-accent { background: var(--navy); }
.stat-block-dark { background: var(--navy-3); }
.stat-num-lg {
  font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--cyan); line-height: 1;
}
.stat-label-lg { font-size: 13px; color: var(--muted); margin-top: 6px; }
.stat-block-accent .stat-label-lg, .stat-block-dark .stat-label-lg { color: rgba(255,255,255,0.5); }

/* ─── MISSION ─── */
.mission-items { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.mission-item { display: flex; gap: 16px; align-items: flex-start; }
.mission-item > i { font-size: 1.4rem; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.mission-item strong { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.mission-item p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.6; }

/* ─── PROCESS ─── */
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.process-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--navy); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-icon { font-size: 1.2rem; color: var(--teal); margin-top: 2px; display: none; }
.process-step strong { font-family: 'Syne', sans-serif; font-size: 15px; display: block; margin-bottom: 4px; }
.process-step p { font-size: 14px; color: var(--muted); margin: 0; }

/* ─── FILTER TABS ─── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  background: transparent; border: 1.5px solid var(--card-border);
  color: var(--muted); font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 30px; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--cyan); color: var(--cyan);
}

/* ─── CONTACT ─── */
.contact-form-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--cyan); flex-shrink: 0;
}
.contact-info-item strong { font-family: 'Syne', sans-serif; font-size: 14px; display: block; margin-bottom: 2px; }
.contact-info-item p { font-size: 14px; color: var(--muted); margin: 0; }
.contact-info-item a { color: var(--teal); text-decoration: none; }
.contact-info-item a:hover { color: var(--cyan); }

/* ─── INPUTS ─── */
.natek-input {
  border: 1.5px solid var(--card-border); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 15px; color: #1a2040;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.natek-input:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
  outline: none;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,212,255,0.07), transparent);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-sm { padding: 120px 0 60px; }
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff;
  letter-spacing: -0.5px; margin-bottom: 16px; margin-top: 8px;
}
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 500px; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--navy);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,212,255,0.1), transparent),
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ─── SOCIAL LINKS ─── */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all var(--transition);
}
.social-links a:hover { background: var(--cyan); color: var(--navy); }

/* ─── FOOTER ─── */
.natek-footer { background: var(--navy-2); padding: 80px 0 0; }
.footer-heading { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a, .footer-links li { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-links li a:hover { color: var(--cyan); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer-contact i { color: var(--cyan); margin-top: 3px; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 48px 0 24px; }

/* ─── PAGINATION ─── */
.natek-pagination .page-link {
  background: transparent; border-color: rgba(0,212,255,0.2); color: var(--teal);
  border-radius: var(--radius-sm) !important; margin: 0 2px;
  font-family: 'Syne', sans-serif; font-weight: 600;
}
.natek-pagination .page-item.active .page-link { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.natek-pagination .page-link:hover { background: rgba(0,212,255,0.12); color: var(--cyan); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .section-lg { padding: 70px 0; }
  .hero-stats { gap: 20px !important; }
  .contact-form-card { padding: 24px; }
}

@media (max-width: 991.98px) {
  .natek-nav {
    overflow: visible !important;
  }

  .natek-nav .container {
    position: relative !important;
    overflow: visible !important;
  }

  .navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    width: 220px;
    background-color: #0a1628;
    border-radius: 0 0 10px 10px;
    padding: 0.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1055 !important;
  }
  
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    height: auto !important;
    overflow: visible !important;
    
  
}

/* ─── AOS-like entrance ─── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
