/* ================================================
   NHYIRA SOLUTIONS — Complete Design System
   "Building Digital Excellence"
   ================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* --- CSS Variables --- */
:root {
  --primary: #0b1929;
  --primary-mid: #102040;
  --primary-light: #1a3a6e;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --neon: #00d4ff;
  --neon-glow: rgba(0, 212, 255, 0.18);
  --orange: #f97316;
  --orange-light: #fb923c;
  --white: #ffffff;
  --dark: #060c18;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-heading: "Plus Jakarta Sans", "Space Grotesk", sans-serif;
  --font-body: "Inter", "Plus Jakarta Sans", sans-serif;
  --shadow-sm: 0 2px 8px rgba(11, 25, 41, 0.07);
  --shadow-md: 0 8px 30px rgba(11, 25, 41, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 25, 41, 0.18);
  --shadow-blue: 0 8px 40px rgba(37, 99, 235, 0.28);
  --shadow-neon: 0 0 40px rgba(0, 212, 255, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Global Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 110px 0;
}
.section-padding-sm {
  padding: 72px 0;
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.preloader-logo span {
  color: var(--neon);
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  border-radius: 2px;
  animation: preloaderFill 1.2s ease forwards;
}
@keyframes preloaderFill {
  to {
    width: 100%;
  }
}

/* ===================================
   NAVBAR
   =================================== */
.naatoa-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
}

.naatoa-navbar .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
}
.naatoa-navbar .navbar-brand .brand-text {
  color: var(--white);
  transition: color 0.2s;
}
.naatoa-navbar .navbar-brand:hover .brand-text {
  color: var(--neon);
}

.naatoa-navbar.scrolled {
  background: rgba(11, 25, 41, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(0, 212, 255, 0.08);
}

.naatoa-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 16px !important;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.3s;
}
.naatoa-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.naatoa-navbar .nav-link:hover,
.naatoa-navbar .nav-link.active {
  color: var(--white);
}
.naatoa-navbar .nav-link:hover::after,
.naatoa-navbar .nav-link.active::after {
  left: 16px;
  right: 16px;
}

.naatoa-navbar .btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white) !important;
  border-radius: 8px;
  padding: 9px 22px !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
}
.naatoa-navbar .btn-nav::after {
  display: none;
}
.naatoa-navbar .btn-nav:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--neon));
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

/* Hide bootstrap toggler — we use our own */
.naatoa-navbar .navbar-toggler {
  display: none !important;
}

/* ===================================
   MOBILE HAMBURGER BUTTON
   =================================== */
.mobile-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.mobile-toggler:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.mobile-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.25s ease,
    width 0.3s ease;
  transform-origin: center;
}
.mobile-toggler.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggler.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-toggler.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .mobile-toggler {
    display: flex;
  }
  .naatoa-navbar .navbar-collapse {
    display: none !important;
  }
}

/* ===================================
   MOBILE OVERLAY
   =================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 24, 0.72);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===================================
   MOBILE RIGHT SIDEBAR
   =================================== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  background: var(--dark);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -12px 0 60px rgba(0, 0, 0, 0.5);
}
.mobile-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 50% at 100% 0%,
      rgba(37, 99, 235, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 0% 100%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.mobile-sidebar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 212, 255, 0.25),
    transparent
  );
}
.mobile-sidebar.active {
  transform: translateX(0);
}

/* Close button */
.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
  flex-shrink: 0;
}
.sidebar-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: rotate(90deg);
}

/* Sidebar Nav Links */
.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 82px 28px 20px;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidebar-nav::-webkit-scrollbar {
  display: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
  position: relative;
  opacity: 0;
  transform: translateX(28px);
}
.sidebar-link::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: var(--neon);
  border-radius: 50%;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.sidebar-link:hover,
.sidebar-link.active {
  color: var(--white);
  padding-left: 8px;
}
.sidebar-link:hover::before,
.sidebar-link.active::before {
  opacity: 1;
}
.sidebar-link.active {
  color: var(--neon);
}

.sidebar-link .sidebar-link-num {
  font-size: 0.68rem;
  color: var(--neon);
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: auto;
  opacity: 0.5;
}

.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.2), transparent);
  margin: 6px 0;
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  opacity: 0;
  transform: translateX(28px);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s,
    opacity 0.35s ease;
}
.sidebar-cta:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--neon));
  color: var(--white);
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

/* Animate links on sidebar open */
.mobile-sidebar.active .sidebar-link,
.mobile-sidebar.active .sidebar-cta {
  opacity: 1;
  transform: translateX(0);
}
.mobile-sidebar.active .sidebar-link:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-sidebar.active .sidebar-link:nth-child(2) {
  transition-delay: 0.13s;
}
.mobile-sidebar.active .sidebar-link:nth-child(3) {
  transition-delay: 0.18s;
}
.mobile-sidebar.active .sidebar-link:nth-child(4) {
  transition-delay: 0.23s;
}
.mobile-sidebar.active .sidebar-link:nth-child(5) {
  transition-delay: 0.28s;
}
.mobile-sidebar.active .sidebar-cta {
  transition-delay: 0.33s;
}

/* Sidebar Footer — Logo at Bottom */
.sidebar-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.sidebar-brand img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.sidebar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1;
}

.sidebar-tagline {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sidebar-socials {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-socials a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  transition: all 0.3s;
}
.sidebar-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* ===================================
   SCROLL TOP BUTTON
   =================================== */
.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 9000;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transition: var(--transition);
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

/* ===================================
   ANIMATION CLASSES
   =================================== */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.scale-in {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: transform, opacity;
}
.fade-in-up {
  transform: translateY(40px);
}
.fade-in-left {
  transform: translateX(-40px);
}
.fade-in-right {
  transform: translateX(40px);
}
.scale-in {
  transform: scale(0.92);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-1 {
  transition-delay: 0.08s;
}
.stagger-2 {
  transition-delay: 0.16s;
}
.stagger-3 {
  transition-delay: 0.24s;
}
.stagger-4 {
  transition-delay: 0.32s;
}
.stagger-5 {
  transition-delay: 0.4s;
}
.stagger-6 {
  transition-delay: 0.48s;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag .line {
  display: block;
  height: 2px;
  width: 28px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 16px;
}
.section-desc.centered {
  margin: 16px auto 0;
  text-align: center;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
}
.btn-primary-naatoa:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--neon));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.4);
  gap: 14px;
}

.btn-outline-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.btn-outline-naatoa:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 212, 255, 0.06);
  transform: translateY(-2px);
}

.btn-dark-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--white);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-dark-naatoa:hover {
  background: var(--neon);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-images/background.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.hero-grid {
  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;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(37, 99, 235, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 30%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
  z-index: 0;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
  bottom: -80px;
  right: -80px;
  animation-delay: 4s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0;
  animation: particleFly 6s ease-in-out infinite;
}
.particle:nth-child(1) {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 30%;
  top: 60%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  left: 60%;
  top: 30%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  left: 75%;
  top: 70%;
  animation-delay: 3s;
}
.particle:nth-child(5) {
  left: 85%;
  top: 15%;
  animation-delay: 4s;
}
.particle:nth-child(6) {
  left: 50%;
  top: 80%;
  animation-delay: 5s;
}
.particle:nth-child(7) {
  left: 10%;
  top: 75%;
  animation-delay: 0.5s;
}
.particle:nth-child(8) {
  left: 90%;
  top: 50%;
  animation-delay: 2.5s;
}

@keyframes particleFly {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  30% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }
  70% {
    opacity: 0.6;
    transform: translateY(-50px) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translateY(-90px) scale(0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  color: var(--neon);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--neon), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.mt-150 {
  margin-top: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat .number span {
  color: var(--neon);
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-card-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: var(--transition);
}
.hero-card-item:hover {
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}
.hero-card-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero-card-item h6 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-card-item p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.73rem;
  margin: 0;
}
.hero-card-item .icon.web {
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent-light);
}
.hero-card-item .icon.software {
  background: rgba(0, 212, 255, 0.12);
  color: var(--neon);
}
.hero-card-item .icon.mobile {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}
.hero-card-item .icon.digital {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}
.hero-card-item .icon.graphics {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}
.hero-card-item .icon.security {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

/* ===================================
   ABOUT HOME SECTION
   =================================== */
.about-home {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
.about-floating-card {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-blue);
}
.about-floating-card .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-floating-card .text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-list {
  list-style: none;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--gray-600);
  font-weight: 500;
}
.about-list li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
  background: var(--gray-50);
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon.web {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}
.service-icon.software {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon);
}
.service-icon.mobile {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.service-icon.digital {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}
.service-icon.graphics {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link i {
  transition: transform 0.3s;
}
.service-link:hover {
  color: var(--neon);
}
.service-link:hover i {
  transform: translateX(4px);
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
  background: var(--white);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  aspect-ratio: 16/10;
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px) scale(1.01);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 25, 41, 0.92) 0%,
    rgba(11, 25, 41, 0.3) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.project-overlay p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}
.project-overlay .project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.project-overlay .tag {
  padding: 3px 10px;
  background: rgba(37, 99, 235, 0.4);
  border: 1px solid rgba(37, 99, 235, 0.5);
  color: var(--neon);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===================================
   VALUES / DARK SECTION
   =================================== */
.values-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 0% 50%,
      rgba(37, 99, 235, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 100% 50%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 60%
    );
}

.value-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  height: 100%;
}
.value-item:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.2),
    rgba(0, 212, 255, 0.15)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--neon);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.value-item:hover .value-icon {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  color: var(--white);
  transform: scale(1.08);
}

.value-item h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.value-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   IMPACT / STATS SECTION
   =================================== */
.impact-section {
  background: var(--gray-50);
}

.impact-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.impact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.impact-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
}
.impact-card:hover::after {
  transform: scaleX(1);
}

.impact-card .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(0, 212, 255, 0.08)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
}
.impact-card .number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-card .label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-section {
  background: var(--white);
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.why-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* CSR Card (reused as generic feature card) */
.csr-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
}
.csr-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.csr-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(0, 212, 255, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.csr-card:hover .icon {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  color: var(--white);
}
.csr-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.csr-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ===================================
   RESULTS SECTION
   =================================== */
.results-section {
  background: var(--gray-50);
}
.result-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.result-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.result-card:hover::before {
  transform: scaleX(1);
}
.result-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(0, 212, 255, 0.08)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.result-card:hover .result-icon {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  color: var(--white);
}
.result-metric {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.result-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.result-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.results-cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #112240 100%);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}
.results-cta-strip::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.results-cta-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
}
.results-cta-title span {
  color: var(--neon);
}

/* ===================================
   TEAM SECTION
   =================================== */
.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-avatar img {
  transform: scale(1.05);
}

.team-info {
  padding: 22px 20px 26px;
}
.team-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-info .role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.team-info p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  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: 50px 50px;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
  border-radius: 50%;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.newsletter-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.newsletter-content {
  padding-right: 30px;
}

.newsletter-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 16px;
}

.newsletter-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.newsletter-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.newsletter-form {
  padding-left: 30px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
  margin-bottom: 12px;
}
.newsletter-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.newsletter-input-group input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  color: var(--gray-800);
  outline: none;
}
.newsletter-input-group input::placeholder {
  color: var(--gray-400);
}
.newsletter-input-group button {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-input-group button:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--neon));
}
.newsletter-input-group button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.newsletter-recaptcha {
  margin-top: 8px;
}

.newsletter-message {
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 8px;
}
.newsletter-message.success {
  background: #dcfce7;
  color: #166534;
}
.newsletter-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===================================
   PAGE HERO (Inner Pages)
   =================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 80% at 30% 50%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
}
.page-hero::after {
  content: "";
  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: 50px 50px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb-nav a:hover {
  color: var(--neon);
}
.breadcrumb-nav span:last-child {
  color: var(--neon);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

/* ===================================
   VISION / MISSION CARDS
   =================================== */
.vision-mission-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  transition: var(--transition);
}
.vision-mission-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.card-icon.vision {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}
.card-icon.mission {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}

.vision-mission-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.vision-mission-card p {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

/* ===================================
   GOVERNANCE / PROCESS ITEMS
   =================================== */
.governance-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: var(--transition);
}
.governance-item:hover {
  border-color: var(--accent-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.governance-item .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(0, 212, 255, 0.08)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.governance-item p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===================================
   SERVICE DETAIL PAGE
   =================================== */
.service-detail-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-bottom: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--neon));
  border-radius: 0 2px 2px 0;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.service-feature-list li i {
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-card-wrapper {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-side {
  background: linear-gradient(
    160deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 52px 44px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.contact-info-item .icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neon);
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.contact-form-side {
  padding: 52px 44px;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--gray-50);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group textarea {
  resize: vertical;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--neon));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

/* ===================================
   MAP WRAPPER
   =================================== */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===================================
   FOOTER
   =================================== */
.naatoa-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  transition: color 0.2s;
}
.footer-brand:hover {
  color: var(--neon);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-widget h6 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover {
  color: var(--neon);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--neon);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a:hover {
  color: var(--neon);
}

/* ===================================
   TECH STRIPE / DIVIDER
   =================================== */
.tech-stripe {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--neon),
    var(--orange),
    var(--accent)
  );
  background-size: 200% 100%;
  animation: stripeMove 3s linear infinite;
}
@keyframes stripeMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* ===================================
   RESPONSIVE — COMPREHENSIVE
   =================================== */

/* ---- Tablet landscape (≤1199px) ---- */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
  }
  .section-padding {
    padding: 90px 0;
  }
}

/* ---- Tablet / large mobile (≤991px) ---- */
@media (max-width: 991.98px) {
  /* Layout */
  .section-padding {
    padding: 72px 0;
  }
  .section-padding-sm {
    padding: 48px 0;
  }

  /* Hero */
  .hero-section {
    padding: 110px 0 64px;
  }
  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -0.8px;
  }
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-visual {
    margin-top: 44px;
  }
  .hero-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About image */
  .about-image-wrapper img {
    height: 380px;
  }

  /* Contact */
  .contact-info-side {
    padding: 40px 32px;
  }
  .contact-form-side {
    padding: 40px 32px;
  }

  /* Newsletter */
  .newsletter-content {
    padding-right: 0;
    margin-bottom: 32px;
  }
  .newsletter-form {
    padding-left: 0;
  }

  /* Services */
  .service-feature-list {
    grid-template-columns: 1fr;
  }
  .service-detail-card {
    padding: 36px 28px;
  }

  /* Page hero */
  .page-hero {
    padding: 140px 0 68px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  }
}

/* ---- Mobile landscape + large phones (≤767px) ---- */
@media (max-width: 767.98px) {
  /* Base spacing */
  .section-padding {
    padding: 60px 0;
  }
  .section-padding-sm {
    padding: 42px 0;
  }

  /* Hero */
  .hero-section {
    padding: 96px 0 52px;
  }
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .hero-subtitle {
    font-size: 0.96rem;
    margin-bottom: 28px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
    margin-bottom: 18px;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-stat .number {
    font-size: 1.55rem;
  }
  .hero-stat .label {
    font-size: 0.72rem;
  }
  .hero-buttons {
    margin-bottom: 36px;
  }
  .hero-card {
    padding: 24px 18px;
  }
  .hero-card-grid {
    gap: 10px;
  }
  .hero-card-item {
    padding: 14px 12px;
  }
  .hero-card-item h6 {
    font-size: 0.78rem;
  }
  .hero-card-item p {
    font-size: 0.7rem;
  }
  .hero-card-item .icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  /* Section */
  .section-title {
    font-size: 1.75rem;
    letter-spacing: -0.3px;
  }
  .section-desc {
    font-size: 0.96rem;
  }

  /* About */
  .about-image-wrapper img {
    height: 260px;
  }
  .about-floating-card {
    bottom: 16px;
    right: 16px;
    padding: 14px 18px;
  }
  .about-floating-card .number {
    font-size: 1.8rem;
  }
  .about-list li {
    font-size: 0.92rem;
  }

  /* Service cards */
  .service-card {
    padding: 28px 20px;
  }
  .service-detail-card {
    padding: 28px 20px;
  }
  .service-detail-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  /* Impact cards */
  .impact-card {
    padding: 32px 20px;
  }
  .impact-card .number {
    font-size: 2.2rem;
  }

  /* Team cards */
  .team-avatar {
    aspect-ratio: 4/3;
  }

  /* Vision/Mission */
  .vision-mission-card {
    padding: 30px 24px;
  }

  /* Contact */
  .contact-card-wrapper {
    border-radius: var(--radius-lg);
  }
  .contact-info-side {
    padding: 32px 24px;
  }
  .contact-form-side {
    padding: 32px 24px;
  }

  /* Newsletter */
  .newsletter-card {
    padding: 32px 22px;
  }
  .newsletter-card h3 {
    font-size: 1.3rem;
  }
  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .newsletter-input-group input {
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-200);
    padding: 14px 16px;
  }
  .newsletter-input-group button {
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-top: 8px;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 0 52px;
  }
  .page-hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
  .page-hero p {
    font-size: 0.96rem;
  }
  .breadcrumb-nav {
    font-size: 0.78rem;
  }

  /* Footer */
  .footer-top {
    padding: 52px 0 36px;
  }
  .footer-brand-name {
    font-size: 1.4rem;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-bottom .col-md-6.text-md-end {
    text-align: center !important;
    margin-top: 8px;
  }

  /* Governance */
  .governance-item {
    padding: 14px 16px;
  }
  .governance-item p {
    font-size: 0.9rem;
  }

  /* Why cards / CSR cards */
  .why-card,
  .csr-card {
    padding: 22px 18px;
    gap: 14px;
  }

  /* Result cards */
  .result-card {
    padding: 28px 22px;
  }
  .results-cta-strip {
    padding: 36px 28px;
  }
  .results-cta-title {
    font-size: 1.2rem;
  }

  /* Project cards */
  .project-overlay {
    padding: 20px;
  }
  .project-overlay h5 {
    font-size: 0.95rem;
  }

  /* Map */
  .map-wrapper iframe {
    height: 280px;
  }

  /* Scroll top btn */
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ---- Small phones (≤575px) ---- */
@media (max-width: 575.98px) {
  /* Container padding */
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Hero */
  .hero-section {
    padding: 86px 0 48px;
  }
  .hero-title {
    font-size: 1.75rem;
    letter-spacing: -0.3px;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 0.92rem;
  }
  .hero-buttons .btn-primary-naatoa,
  .hero-buttons .btn-outline-naatoa {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-stats {
    justify-content: space-between;
    gap: 0;
  }
  .hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 8px;
  }
  .hero-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-card {
    padding: 20px 14px;
  }
  .hero-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-card-item {
    padding: 12px 10px;
  }
  .hero-card-item .icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  .hero-card-item h6 {
    font-size: 0.72rem;
  }
  .hero-card-item p {
    display: none;
  }

  /* Section */
  .section-padding {
    padding: 52px 0;
  }
  .section-padding-sm {
    padding: 36px 0;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-tag {
    font-size: 0.72rem;
  }
  .section-desc {
    font-size: 0.92rem;
  }

  /* About */
  .about-image-wrapper img {
    height: 220px;
  }
  .about-floating-card {
    display: none;
  }
  .about-list li {
    font-size: 0.88rem;
    gap: 10px;
  }

  /* Buttons */
  .btn-primary-naatoa,
  .btn-outline-naatoa,
  .btn-dark-naatoa {
    padding: 13px 22px;
    font-size: 0.9rem;
  }

  /* Service cards */
  .service-card {
    padding: 24px 18px;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .service-card h4 {
    font-size: 1.05rem;
  }
  .service-card p {
    font-size: 0.88rem;
  }
  .service-detail-card {
    padding: 24px 18px;
  }

  /* Impact */
  .impact-card {
    padding: 28px 16px;
  }
  .impact-card .number {
    font-size: 2rem;
  }
  .impact-card .icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  /* Values */
  .value-item {
    padding: 24px 14px;
  }
  .value-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  .value-item h5 {
    font-size: 0.88rem;
  }
  .value-item p {
    font-size: 0.78rem;
  }

  /* Team */
  .team-avatar {
    aspect-ratio: 1;
  }
  .team-info {
    padding: 18px 16px 20px;
  }
  .team-info h5 {
    font-size: 0.95rem;
  }
  .team-info p {
    font-size: 0.82rem;
  }

  /* Why / CSR cards */
  .why-card,
  .csr-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }
  .why-card .icon,
  .csr-card .icon {
    width: 44px;
    height: 44px;
  }

  /* Result cards (small phones) */
  .result-card {
    padding: 24px 18px;
  }
  .result-metric {
    font-size: 1.15rem;
  }
  .results-cta-strip {
    padding: 28px 20px;
  }
  .results-cta-title {
    font-size: 1.05rem;
  }

  /* Vision / Mission */
  .vision-mission-card {
    padding: 24px 18px;
  }
  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  .vision-mission-card h4 {
    font-size: 1.1rem;
  }

  /* Governance */
  .governance-item {
    flex-direction: column;
    gap: 10px;
    padding: 14px 14px;
  }

  /* Contact */
  .contact-info-side {
    padding: 28px 18px;
  }
  .contact-form-side {
    padding: 28px 18px;
  }
  .contact-info-item {
    gap: 12px;
    margin-bottom: 20px;
  }
  .contact-info-item .icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
  .btn-submit {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* Newsletter */
  .newsletter-card {
    padding: 26px 18px;
  }
  .newsletter-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .newsletter-card h3 {
    font-size: 1.2rem;
  }

  /* Page hero */
  .page-hero {
    padding: 100px 0 44px;
  }
  .page-hero h1 {
    font-size: 1.7rem;
    letter-spacing: -0.3px;
  }
  .page-hero p {
    font-size: 0.92rem;
  }

  /* Footer */
  .footer-top {
    padding: 44px 0 28px;
  }
  .footer-desc {
    font-size: 0.85rem;
    max-width: 100%;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .footer-contact-item p {
    font-size: 0.85rem;
  }

  /* CTA section */
  .cta-section h2 {
    font-size: 1.55rem;
  }
  .cta-section p {
    font-size: 0.92rem;
  }
  .cta-section .btn-dark-naatoa {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  /* Map */
  .map-wrapper iframe {
    height: 240px;
  }

  /* Project overlay always visible on touch */
  .project-overlay {
    opacity: 1;
  }
  .project-card img {
    transform: scale(1.03);
  }

  /* Scroll top */
  .scroll-top-btn {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ---- Very small phones (≤380px) ---- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.55rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .hero-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-sidebar {
    width: 92vw;
  }
  .naatoa-navbar .navbar-brand .brand-text {
    font-size: 1.15rem;
  }
  .sidebar-brand-name {
    font-size: 1.1rem;
  }
}
