/* ============================================================
   VAPPY IT SOLUTIONS — Premium Enterprise Website Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #050D1A;
  --navy:           #0A1628;
  --dark-blue:      #0F2D52;
  --brand:          #1E56A0;
  --accent:         #2563EB;
  --accent-hover:   #1D4ED8;
  --accent-light:   #3B82F6;
  --sky:            #60A5FA;
  --cyan:           #06B6D4;
  --success:        #10B981;
  --warning:        #F59E0B;
  --white:          #FFFFFF;
  --off-white:      #F8FAFC;
  --light-gray:     #F1F5F9;
  --border:         #E2E8F0;
  --border-dark:    #CBD5E1;
  --text-muted:     #64748B;
  --text-body:      #334155;
  --text-dark:      #0F172A;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.05);
  --shadow-lg:    0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl:    0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl:   0 25px 50px -12px rgba(0,0,0,0.18);
  --shadow-blue:  0 8px 25px -8px rgba(37, 99, 235, 0.45);
  --shadow-blue-lg: 0 16px 40px -8px rgba(37, 99, 235, 0.5);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.loader-logo-text span { color: #60A5FA; }

.loader-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.loader-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  margin-top: 28px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--sky));
  border-radius: 99px;
  animation: loader-fill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loader-fill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#main-nav.nav-transparent {
  background: transparent;
}

#main-nav.nav-scrolled {
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
  flex-shrink: 0;
}

.nav-logo-text .company-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-logo-text .company-name span { color: #60A5FA; }

.nav-logo-text .company-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 7px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

/* Mega dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 640px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-panel,
.dropdown-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-header {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 10px;
  margin-bottom: 12px;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 12px;
  transition: var(--transition);
  text-decoration: none;
}

.dropdown-item:hover {
  background: #F1F5F9;
}

.dropdown-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.dropdown-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.2s;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--accent);
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Nav CTA button */
.nav-cta {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1024px) {
  .nav-cta { display: flex; }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
}

.mobile-menu-btn:hover { background: rgba(255,255,255,0.14); }

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

/* Mobile menu */
.mobile-nav {
  display: none;
  background: rgba(5, 13, 26, 0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  max-height: 600px;
}

@media (max-width: 1023px) {
  .mobile-nav { display: block; }
}

.mobile-nav-inner {
  padding: 16px 20px 24px;
}

.mobile-nav-link {
  display: block;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.mobile-nav-link:hover { color: white; background: rgba(255,255,255,0.08); }

.mobile-dropdown-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  padding-left: 14px;
  border-left: 2px solid rgba(37, 99, 235, 0.3);
  margin: 4px 0 4px 14px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #030811 0%, #050D1A 25%, #091524 50%, #0D2040 75%, #112847 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* Animated radial glows */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  top: -150px; right: -100px;
  animation: orb-float 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
  bottom: -80px; left: 5%;
  animation: orb-float 15s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
  top: 40%; left: 40%;
  animation: orb-float 10s ease-in-out infinite 3s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.95); }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #93C5FD;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 20px; height: 20px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-dot::after {
  content: '';
  width: 7px; height: 7px;
  background: #3B82F6;
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.75); opacity: 0.6; }
}

/* Hero headline */
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-headline .gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #2DD4BF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 8px;
}

.hero-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-mini-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  padding: 14px 18px;
  animation: mini-float 6s ease-in-out infinite;
}

@keyframes mini-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 72px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-title .text-blue {
  color: var(--accent);
}

.section-title .text-grad {
  background: linear-gradient(135deg, var(--accent), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 14px;
}

.divider-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--sky));
  border-radius: 2px;
  margin: 18px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 13px 26px;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.22);
}

.btn-ghost-white:hover {
  color: white;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--accent);
  padding: 11px 22px;
  border: 1.5px solid var(--accent);
}

.btn-outline-blue:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-white {
  background: white;
  color: var(--accent);
  padding: 13px 26px;
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-lg {
  font-size: 0.97rem;
  padding: 15px 32px;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 9px 18px;
}

/* ============================================================
   CARDS
   ============================================================ */

/* Service card */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-7px);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap 0.3s ease;
}

.service-card:hover .card-arrow {
  gap: 11px;
}

/* Feature/stat card */
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

/* Industry card */
.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-5px);
}

/* Testimonial card */
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}

/* Portfolio card */
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: white;
  border: 1px solid var(--border);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-6px);
}

.portfolio-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-item {
  text-align: center;
  padding: 32px 16px;
}

.stats-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), #1D4ED8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-blue);
}

.process-connector {
  position: absolute;
  top: 30px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(59, 130, 246, 0.2));
}

/* ============================================================
   DARK / BLUE SECTIONS
   ============================================================ */
.section-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 85% 40%, rgba(6, 182, 212, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.section-blue {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 60%, #3B82F6 100%);
  position: relative;
  overflow: hidden;
}

.section-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.section-light {
  background: var(--off-white);
}

.section-pattern {
  background-color: var(--off-white);
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

.form-control::placeholder { color: #94A3B8; }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
  padding: 80px 0 56px;
}

.footer-logo-wrap .company-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.footer-logo-wrap .company-name span { color: #60A5FA; }

.footer-about {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 11px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-link:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-policies {
  display: flex;
  gap: 20px;
}

.footer-policies a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-policies a:hover { color: rgba(255,255,255,0.7); }

/* Social icons */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
}

.social-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Newsletter */
.newsletter-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.85rem;
  color: white;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-input:focus {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-float i {
  font-size: 1.7rem;
  color: white;
  position: relative;
  z-index: 1;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 98px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--transition);
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, #030811 0%, #050D1A 30%, #0D2040 70%, #112847 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.breadcrumb i { font-size: 0.6rem; }

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  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; }
.delay-7 { transition-delay: 0.7s; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-item.open .faq-question { background: white; color: var(--accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   PORTFOLIO FILTER
   ============================================================ */
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: var(--shadow-blue);
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ============================================================
   CAREER / JOB CARD
   ============================================================ */
.job-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.job-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.job-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ============================================================
   TECH STACK LOGOS
   ============================================================ */
.tech-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: white;
}

.tech-logo-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.tech-logo-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.tech-logo-item:hover .tech-logo-text {
  color: var(--accent);
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
}

.support-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* ============================================================
   TRUSTED BY STRIP
   ============================================================ */
.client-strip {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.client-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-stats { gap: 16px; }
  .hero-stat { border-right: none; flex: none; min-width: 45%; }
  .hero-headline { font-size: 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-section { padding: 90px 0 60px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .page-loader,
  #main-nav,
  .whatsapp-float,
  .back-to-top { display: none !important; }
  body { color: #000; background: #fff; }
}
