/* =============================================
   SANJEEVNI TECHNO — style.css
   ============================================= */

/* CSS VARIABLES */
:root {
  --bg: #F5F6F7;
  --bg-white: #ffffff;
  --text: #2B2E33;
  --text-secondary: #7B7F85;
  --accent: #1A56DB;
  --accent-light: #3B82F6;
  --accent-glow: rgba(26, 86, 219, 0.15);
  --border: #E4E6EA;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --transition: 0.3s ease;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }
svg { display: block; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* =============================================
   SKELETON LOADER
   ============================================= */
#skeleton-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#skeleton-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.sk-block {
  background: linear-gradient(90deg, #e8eaed 25%, #f0f2f5 50%, #e8eaed 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}

.sk-logo { width: 160px; height: 36px; }
.sk-navlinks { width: 360px; height: 20px; }
.sk-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 40px;
}
.sk-h1 { width: 60%; height: 60px; border-radius: 12px; }
.sk-h2 { width: 45%; height: 40px; border-radius: 12px; }
.sk-h3 { width: 50%; height: 24px; }
.sk-btns { width: 280px; height: 52px; border-radius: 30px; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { color: #0e7dfc; }
.logo-text span { color: var(--accent); }
.logo-text.light { color: #151313; }
.logo-text.light span { color: #93C5FD; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 6px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(43,46,51,0.8);
  transition: color var(--transition);
}
#navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
#navbar:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
#navbar:not(.scrolled) .nav-link:hover { color: #fff; }
#navbar:not(.scrolled) .nav-link::after { background: #fff; }

.nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: #1244B6;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 130px 80px 80px;
  position: relative;
  overflow: hidden;
  background: #060e1e3f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

/* Background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
  filter: saturate(0.6) brightness(0.45);
}
.hero-bg-img img.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Gradient overlay on top of image */


.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 2;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1A56DB, #0A2E8C);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3B82F6, transparent);
  bottom: -80px; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #60A5FA, transparent);
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
  animation: blobFloat 12s ease-in-out infinite 2s;
  opacity: 0.15;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 30px;
  color: #93C5FD;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #3B82F6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, #60A5FA, #93C5FD, #BFDBFE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover {
  background: #1244B6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.4);
}
.btn-primary.large { padding: 16px 36px; font-size: 1rem; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #EF4444; }
.dash-dots span:nth-child(2) { background: #F59E0B; }
.dash-dots span:nth-child(3) { background: #22C55E; }
.dash-title { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ds-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.ds-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.ds-lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.dash-chart { margin-bottom: 20px; }
.dash-chart svg { width: 100%; height: 80px; }

.dash-badges {
  display: flex;
  gap: 8px;
}
.db {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.db.active { background: rgba(34,197,94,0.15); color: #4ADE80; border-color: rgba(34,197,94,0.3); }

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0; transform-origin: top; }
}

/* =============================================
   WHO WE ARE
   ============================================= */
.who-section { background: var(--bg-white); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.who-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.who-img-wrap:hover img { transform: scale(1.03); }

.img-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(30px);
}

.img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
}
.img-badge svg { width: 18px; height: 18px; }
.img-badge span { font-weight: 600; font-size: 0.9rem; color: var(--text); }

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: #EEF2FF;
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-title.centered { text-align: center; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.who-para {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.who-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #EEF2FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.pillar p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* =============================================
   SOLUTIONS
   ============================================= */
.solutions-section { background: var(--bg); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(26,86,219,0.12), 0 2px 8px rgba(0,0,0,0.04);
  border-color: rgba(26,86,219,0.2);
}
.sol-card:hover::before { opacity: 1; }

.sol-icon {
  margin-bottom: 20px;
}
.sol-icon svg { width: 44px; height: 44px; }

.sol-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.sol-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sol-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition), letter-spacing var(--transition);
}
.sol-link:hover { letter-spacing: 0.02em; }

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, #0D1F4A, #0A2562);
  padding: 80px 0;
  overflow: hidden;
}
.stats-bg-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #60A5FA;
}
.stat-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-section { background: var(--bg-white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 20px;
}
.port-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.port-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.port-card:hover img { transform: scale(1.06); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,56,0.92) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}
.port-card:hover .port-overlay { transform: translateY(0); }

.port-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.port-overlay h3 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.port-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* =============================================
   TEAM
   ============================================= */
.team-section { background: var(--bg); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,56,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  transition: background var(--transition);
}
.team-socials a:hover { background: var(--accent); }
.team-socials svg { width: 16px; height: 16px; }

.team-info {
  padding: 18px 20px;
}
.team-info h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-info span {
  font-size: 0.83rem;
  color: var(--text-secondary);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--bg-white); overflow: hidden; }

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 720px;
  width: 100%;
  position: relative;
}

.testi-quote { margin-bottom: 16px; }
.testi-quote svg { width: 40px; height: 40px; }

.testi-card p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.83rem; color: var(--text-secondary); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.testi-btn svg { width: 18px; height: 18px; }
.testi-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.testi-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #0A1628 0%, #0D1F4A 60%, #0A2562 100%);
  overflow: hidden;
  padding: 120px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-blob-1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.cta-blob-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,219,0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 16px;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* =============================================
   ENQUIRY
   ============================================= */
.enquiry-section { background: var(--bg); }

.enquiry-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.enquiry-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 110px; }

.enquiry-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}
.ei-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ei-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: #EEF2FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.ei-icon svg { width: 22px; height: 22px; }
.ei-block strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.ei-block a,
.ei-block span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ei-block a:hover { color: var(--accent); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #2B2E33;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--accent-light); color: var(--accent-light); background: rgba(59,130,246,0.1); }

.footer-links-col h5,
.footer-contact-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links-col ul li a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--accent-light); }

.footer-contact-col { display: flex; flex-direction: column; gap: 16px; }
.fc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fc-item svg { width: 18px; height: 18px; color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.fc-item a,
.fc-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  transition: color var(--transition);
}
.fc-item a:hover { color: var(--accent-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   ANIMATIONS — Rich Scroll & Load System
   ============================================= */

/* --- Base states (hidden) --- */
.reveal-fade,
.reveal-up,
.reveal-up-sm,
.reveal-down,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-blur {
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

.reveal-fade   { opacity: 0; transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-up     { opacity: 0; transform: translateY(48px); transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-up-sm  { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-down   { opacity: 0; transform: translateY(-32px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-left   { opacity: 0; transform: translateX(-56px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-right  { opacity: 0; transform: translateX(56px);  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-scale  { opacity: 0; transform: scale(0.88);       transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-blur   { opacity: 0; filter: blur(12px); transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1); }

/* --- Revealed state --- */
.revealed {
  opacity: 1 !important;
  transform: translate(0,0) scale(1) !important;
  filter: blur(0) !important;
}

/* --- Stagger delays --- */
.delay-1  { transition-delay: 0.12s !important; }
.delay-2  { transition-delay: 0.24s !important; }
.delay-3  { transition-delay: 0.36s !important; }
.delay-4  { transition-delay: 0.48s !important; }
.delay-5  { transition-delay: 0.60s !important; }

/* Stagger children via data-delay on parent (handled in JS) */

/* --- Hero onload cinematic sequence --- */
@keyframes heroFadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroLineIn {
  from { width: 0; }
  to   { width: 60px; }
}

/* These get applied by JS after page load */
.hero-anim-badge  { animation: heroBadgeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-anim-title  { animation: heroFadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }
.hero-anim-sub    { animation: heroFadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.hero-anim-cta    { animation: heroFadeSlideUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both; }
.hero-anim-visual { animation: heroFadeSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }
.hero-anim-hint   { animation: heroFadeIn 1.2s ease 1.1s both; }

/* --- RIPPLE --- */
.ripple { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4.5); opacity: 0; }
}

/* --- Section title underline reveal --- */
.section-title-line {
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 12px auto 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.revealed .section-title-line,
.section-title-line.revealed { width: 60px; }

/* --- Card hover lift animation (enhanced) --- */
.sol-card, .team-card, .port-card, .testi-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease;
}



/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 130px 40px 80px;
    text-align: center;
  }
  .hero-content { max-width: 680px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-sub br.br-desktop { display: none; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-img-wrap img { height: 350px; }
  .stats-grid { flex-wrap: wrap; gap: 40px; }
  .stat-divider { display: none; }
  .stat-item { flex: unset; min-width: 150px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .enquiry-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  .nav-inner { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text) !important; width: 100%; padding: 10px 0; }
  .nav-link::after { background: var(--accent) !important; }
  .nav-cta { background: var(--accent) !important; color: #fff !important; padding: 10px 20px; border-radius: 8px; }

  #hero { padding: 120px 20px 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .dashboard-card { max-width: 320px; }

  .solutions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: 240px 200px 200px; }

  .testi-card { padding: 28px; }
  .testi-card p { font-size: 0.95rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .enquiry-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .sk-nav { padding: 20px; }
  .sk-navlinks { width: 180px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.7rem; }
  .stats-grid { gap: 24px; }
  .stat-num { font-size: 2.5rem; }
}