/* ============================================================
   RESET & GLOBAL
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0e1a;
  color: #e2e8f0;
  overflow-x: hidden;
  line-height: 1.7;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
section { position: relative; overflow: hidden; }

/* ---- COLORS ---- */
:root {
  --bg-dark:    #0a0e1a;
  --bg-dark2:   #0d1b2a;
  --bg-dark3:   #111827;
  --bg-light:   #f0f4f8;
  --cyan:       #00d4ff;
  --cyan2:      #00b4d8;
  --cyan-light: #4fc3f7;
  --text-white: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark:  #1e293b;
  --border:     rgba(0,212,255,0.15);
}

/* ---- UTILITY ---- */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 50px;
}
.cyan-text { color: var(--cyan); }
.glow { text-shadow: 0 0 20px rgba(0,212,255,0.5); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0,212,255,0.55);
}
.btn-outline {
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(0,212,255,0.1);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
  transform: translateY(-2px);
}
.btn-dark {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ---- FADE-IN ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
#navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 14, 26, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.nav-logo-text span { color: var(--cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Services Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,14,26,0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(8px);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
  background: rgba(0,212,255,0.08);
  color: var(--cyan);
}
.nav-dropdown a i { width: 16px; color: var(--cyan); opacity: 0.7; font-size: 0.85rem; }

.nav-cta { white-space: nowrap; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  gap: 14px;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav .mobile-services-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 0 4px;
  border-bottom: none;
}
.mobile-nav .btn { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  background: var(--bg-dark);
  position: relative;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid-overlay {
  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: 1;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #fff;
}
.hero-h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.8;
}
.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 38px;
  min-height: 36px;
}
.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-cursor 0.7s infinite;
}
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.hero-scroll i { color: var(--cyan); font-size: 1.2rem; }

/* ============================================================
   PROBLEM SECTION
============================================================ */
#problem {
  padding: 90px 0;
  background: var(--bg-dark2);
}
.problem-header { text-align: center; margin-bottom: 50px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.1);
}
.problem-icon {
  width: 48px; height: 48px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.problem-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.problem-card p { font-size: 0.88rem; color: var(--text-muted); }
.problem-cta-line {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  padding: 22px 30px;
}
.problem-cta-line span { color: var(--cyan); }

/* ============================================================
   ABOUT SECTION
============================================================ */
#about {
  padding: 100px 0;
  background: var(--bg-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.about-text .section-label { margin-bottom: 10px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Mission/Vision cards */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.mv-card {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 14px;
  padding: 20px;
}
.mv-card h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.mv-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,212,255,0.15);
  background: rgba(255,255,255,0.03);
  padding: 24px;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(13,27,42,0.8));
  border-radius: 12px;
  border: 2px dashed rgba(0,212,255,0.2);
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.about-img-placeholder i { font-size: 3rem; color: var(--cyan); opacity: 0.5; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.05);
}
.value-card .v-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,180,216,0.05));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--cyan);
}
.value-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.value-card p { font-size: 0.78rem; color: var(--text-muted); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(0,212,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cyan);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
  padding: 100px 0;
  background: var(--bg-light);
}
#services .section-title { color: var(--text-dark); }
#services .section-sub { color: #475569; }
#services .section-label { color: var(--cyan2); }
.services-header { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,180,216,0.4);
  box-shadow: 0 20px 50px rgba(0,180,216,0.15);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,180,216,0.05));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--cyan2);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--cyan2), var(--cyan));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,180,216,0.4);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  color: var(--cyan2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}
.service-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan2);
  border-radius: 50%;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan2);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  padding: 6px 14px;
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 20px;
}
.service-link:hover {
  background: var(--cyan2);
  color: #fff;
  border-color: var(--cyan2);
  gap: 10px;
}

/* ============================================================
   CLIENTS SECTION
============================================================ */
#clients {
  padding: 80px 0;
  background: var(--bg-dark3);
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 50px;
}
.clients-header .section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.clients-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 16px;
}
.clients-count-badge i { font-size: 0.9rem; }

/* Marquee track */
.logo-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.logo-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark3), transparent);
}
.logo-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark3), transparent);
}
.logo-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  gap: 24px;
  padding: 10px 0;
}
.logo-marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 22px;
  min-width: 200px;
  height: 100px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: default;
}
.logo-item:hover {
  background: rgba(0,212,255,0.07);
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.12);
}
.logo-item img {
  max-height: 68px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) brightness(1.0);
  transition: filter 0.3s ease, transform 0.3s ease;
  border-radius: 6px;
}
.logo-item:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

/* Text-based logo fallback */
.logo-text-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.logo-text-item .logo-abbr {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.logo-text-item .logo-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  max-width: 130px;
  line-height: 1.3;
  text-align: center;
}

/* ============================================================
   PARTNERS SECTION
============================================================ */
#partners {
  padding: 80px 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.partners-header {
  text-align: center;
  margin-bottom: 50px;
}
.partners-header .section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.partners-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Partners use a slightly different visual treatment */
.partner-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.partner-marquee-wrap::before,
.partner-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.partner-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}
.partner-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark), transparent);
}
.partner-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll-rtl 34s linear infinite;
  gap: 24px;
  padding: 10px 0;
}
.partner-marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll-rtl {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px 22px;
  min-width: 200px;
  height: 100px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.partner-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.partner-item:hover::before { opacity: 1; }
.partner-item:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.1);
}
.partner-item img {
  max-height: 68px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.9) opacity(0.85);
  transition: filter 0.3s ease, transform 0.3s ease;
  border-radius: 6px;
}
.partner-item:hover img {
  filter: grayscale(0%) brightness(1.05) opacity(1);
  transform: scale(1.05);
}
.partner-item .logo-text-item .logo-abbr {
  color: rgba(0,212,255,0.7);
}
.partner-item:hover .logo-text-item .logo-abbr {
  color: var(--cyan);
}

/* Partners bottom strip */
.partners-strip {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.partner-pill i { color: var(--cyan); font-size: 0.9rem; }
.partner-pill:hover {
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
  border-color: rgba(0,212,255,0.3);
}

/* ============================================================
   THREE DIVISIONS
============================================================ */
#divisions {
  padding: 100px 0;
  background: var(--bg-dark3);
}
.divisions-header { text-align: center; margin-bottom: 50px; }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.division-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.division-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0,212,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.division-card:hover::before { opacity: 1; }
.division-card:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,212,255,0.15);
}
.division-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.division-d-icon {
  width: 80px; height: 80px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--cyan);
  margin: 0 auto 20px;
}
.division-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.division-card .div-sub {
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.division-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.division-card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.division-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.divisions-tagline {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
}
.divisions-tagline span { color: var(--cyan); }

/* ============================================================
   PROCESS SECTION
============================================================ */
#process {
  padding: 100px 0;
  background: var(--bg-light);
}
#process .section-title { color: var(--text-dark); }
#process .section-sub { color: #475569; }
#process .section-label { color: var(--cyan2); }
.process-header { text-align: center; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 48px; left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2), var(--cyan-light), var(--cyan));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  width: 96px; height: 96px;
  background: #fff;
  border: 3px solid var(--cyan2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  box-shadow: 0 0 0 8px var(--bg-light), 0 8px 30px rgba(0,180,216,0.2);
  transition: all 0.3s;
  position: relative;
}
.process-step:hover .step-num-wrap {
  background: linear-gradient(135deg, var(--cyan2), var(--cyan));
  box-shadow: 0 0 0 8px var(--bg-light), 0 12px 40px rgba(0,180,216,0.4);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why {
  padding: 100px 0;
  background: var(--bg-dark);
}
.why-header { text-align: center; margin-bottom: 50px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,212,255,0.12);
}
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,180,216,0.05));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--bg-light);
}
#testimonials .section-title { color: var(--text-dark); }
#testimonials .section-sub { color: #475569; }
#testimonials .section-label { color: var(--cyan2); }
.testimonials-header { text-align: center; }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 28px;
}
.testimonial-card {
  min-width: calc(33.333% - 19px);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 12px 40px rgba(0,180,216,0.12);
  transform: translateY(-4px);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  padding-left: 16px;
}
.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -6px;
  font-size: 2.5rem;
  color: var(--cyan2);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0a0e1a;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.92rem;
}
.author-role { font-size: 0.8rem; color: #94a3b8; }
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 50%;
  color: var(--cyan2);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-btn:hover {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--cyan2);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   APP SECTION
============================================================ */
#app {
  padding: 100px 0;
  background: var(--bg-dark2);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.app-mockup {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 260px;
  background: linear-gradient(160deg, #1a2744, #0d1b2a);
  border: 2px solid rgba(0,212,255,0.25);
  border-radius: 40px;
  padding: 20px 16px;
  box-shadow: 0 30px 80px rgba(0,212,255,0.2), 0 0 0 1px rgba(0,212,255,0.1);
  position: relative;
}
.phone-notch {
  width: 70px; height: 20px;
  background: #0a0e1a;
  border-radius: 10px;
  margin: 0 auto 16px;
}
.phone-screen {
  background: #0a0e1a;
  border-radius: 24px;
  padding: 20px 14px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 4px;
}
.phone-header {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 8px;
}
.phone-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-stat-box {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}
.phone-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cyan);
}
.phone-stat-lbl { font-size: 0.55rem; color: #64748b; }
.phone-bar-wrap { margin-top: 8px; }
.phone-bar-lbl { font-size: 0.58rem; color: #94a3b8; margin-bottom: 4px; }
.phone-bar-track {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.phone-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  border-radius: 3px;
}
.phone-menu {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.phone-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #64748b;
  font-size: 0.5rem;
}
.phone-menu-item i { font-size: 0.8rem; }
.phone-menu-item.active { color: var(--cyan); }

.app-content .section-label { margin-bottom: 10px; }
.app-content .section-title { margin-bottom: 20px; }
.app-content p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.app-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.app-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.app-feat-icon {
  width: 36px; height: 36px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,180,216,0.05));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ============================================================
   FINAL CTA
============================================================ */
#cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #041528, #0a1e35, #062035);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::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;
}
#cta-final .cta-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-final-h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.cta-final-h2 span {
  background: linear-gradient(135deg, var(--cyan), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-final-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 42px;
}
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
============================================================ */
#contact {
  padding: 100px 0;
  background: var(--bg-dark);
}
.contact-header { text-align: center; margin-bottom: 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 13px 18px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #64748b; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group select option { background: #1e293b; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-icon {
  width: 46px; height: 46px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item a, .contact-item p {
  font-size: 0.92rem;
  color: #fff;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--cyan); }
.social-follow h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,212,255,0.3);
}
.map-wrap {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #05080f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img { height: 48px; width: auto; max-width: 200px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2px;
}
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
  border-color: transparent;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom .resonating {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2px;
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
}
.whatsapp-fab .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ring-pulse 2.5s infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.back-to-top {
  position: fixed;
  bottom: 98px; right: 28px;
  width: 46px; height: 46px;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: #0a0e1a;
  transform: translateY(-3px);
}

/* ============================================================
   SERVICE PAGE STYLES
============================================================ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--cyan); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb i { font-size: 0.7rem; color: var(--text-muted); }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 34px;
}
.page-hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.phero-stat {
  text-align: center;
}
.phero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.phero-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Outcome cards */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}
.outcome-card {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}
.outcome-card:hover {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-4px);
}
.outcome-icon {
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 14px;
}
.outcome-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.outcome-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Capabilities grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}
.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.3s;
}
.cap-item:hover {
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.04);
}
.cap-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cap-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cap-item p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* CTA Box */
.service-cta-box {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,180,216,0.03));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 80px;
}
.service-cta-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.service-cta-box h3 span {
  background: linear-gradient(135deg, var(--cyan), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-cta-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1rem;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0,212,255,0.25); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.faq-q i {
  color: var(--cyan);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Related Services */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.related-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  transition: all 0.3s;
}
.related-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
  transform: translateY(-4px);
}
.related-card i {
  font-size: 1.8rem;
  color: var(--cyan);
  margin-bottom: 12px;
}
.related-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.related-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 520px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .divisions-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 50px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .app-grid { grid-template-columns: 1fr; gap: 50px; }
  .app-mockup { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .logo-marquee-wrap::before,
  .logo-marquee-wrap::after,
  .partner-marquee-wrap::before,
  .partner-marquee-wrap::after { width: 60px; }
  .logo-item, .partner-item { min-width: 150px; height: 80px; padding: 14px 20px; }
  .page-hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 24px 18px; }
  .service-cta-box { padding: 36px 24px; }
}
