/* ═══════════════════════════════════════════════════════
   ROOT & RESET
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-300: #93C5FD;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --blue-900: #1E3A8A;
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --accent:   #0EA5E9;
  --accent2:  #06B6D4;

  /* ── FONT: Jost everywhere ── */
  --font-main: 'Jost', system-ui, sans-serif;
  --font-head: 'Jost', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(30,64,175,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(30,64,175,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(30,64,175,0.14), 0 4px 16px rgba(0,0,0,0.07);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--gray-50);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS — KEYFRAMES
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.03); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.08); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, 30px) scale(1.05); }
  70%       { transform: translate(30px, -20px) scale(0.97); }
}
@keyframes gridFade {
  from { opacity: 0; }
  to   { opacity: 0.45; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes iconSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(8deg) scale(1.12); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes borderPulse {
  0%, 100% { border-color: var(--blue-200); }
  50%       { border-color: var(--blue-400); }
}
@keyframes stepNumPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL UTILITY
═══════════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-badge.fade-up   { animation-delay: 0.10s; }
h1.fade-up            { animation-delay: 0.25s; }
.hero-sub.fade-up     { animation-delay: 0.40s; }
.hero-cta.fade-up     { animation-delay: 0.55s; }
.hero-trust.fade-up   { animation-delay: 0.70s; }

/* ═══════════════════════════════════════════════════════
   SECTION LABELS & HEADS
═══════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label i { font-size: 11px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 14px;
}

/* ── REMOVED: blue underline on span ── */
.section-title span {
  color: var(--blue-600);
  position: relative;
  /* No ::after underline */
}
.section-title span::after { display: none; }

.section-sub {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(155deg, #EFF6FF 0%, #DBEAFE 45%, #EFF6FF 100%);
  overflow: hidden;
  padding: 180px  80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridFade 1.5s ease forwards;
  opacity: 0;
}

.hero-orb1 {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.28) 0%, transparent 70%);
  top: -140px; right: -100px;
  animation: orbDrift1 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.20) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  animation: orbDrift2 16s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.dot-live {
  width: 9px; height: 9px;
  background: #2563eb;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--gray-800);
  margin-bottom: 22px;
}
.hero-content h1 .accent    { color: var(--blue-600); }
.hero-content h1 .highlight {
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 0 8px;
  border-radius: 6px;
  /* REMOVED: border-bottom underline */
}

.hero-sub {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 400px 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,99,235,0.45); }
.btn-primary:hover::after { opacity: 1; animation: shimmer 0.8s linear; }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  color: var(--blue-700);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--blue-300);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-trust {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-main);
  font-size: 1.2rem; font-weight: 500;
  color: var(--gray-600);
}
.trust-item i { color: var(--blue-500); font-size: 14px; }
.trust-sep { width: 4px; height: 4px; background: var(--gray-300); border-radius: 50%; }

/* ── HERO VISUAL ── */
.hero-visual { animation: fadeIn 1.2s 0.4s ease both; }
.hero-img-wrap { position: relative; animation: floatY 6s ease-in-out infinite; }

.browser-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--blue-100);
}
.browser-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.bdot { width: 11px; height: 11px; border-radius: 50%; }
.bdot.r { background: #1d4ed8; }
.bdot.y { background: #2563eb; }
.bdot.g { background: #3b82f6; }
.url-pill {
  flex: 1;
  background: var(--gray-200);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--font-main);
  font-size: 11px;
  color: var(--gray-500);
  display: flex; align-items: center; gap: 5px;
  margin-left: 4px;
}
.url-pill i { font-size: 9px; color: #2563eb; }
.hero-photo-wrap { overflow: hidden; }
.hero-real-photo {
  width: 100%; height: 280px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.browser-frame:hover .hero-real-photo { transform: scale(1.04); }
.browser-caption {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.bc-dot-row { display: flex; gap: 4px; }
.bc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-300); }
.bc-dot.active { background: var(--blue-500); }
.bc-label { font-family: var(--font-main); font-size: 11px; color: var(--gray-400); margin-left: 4px; }

.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blue-100);
  font-family: var(--font-main);
  font-size: 13px; font-weight: 600;
  color: var(--gray-700);
  animation: floatBadge 4.5s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge.b2 { bottom: -22px; left: -22px; }
.float-badge .badge-icon { font-size: 20px; }
.float-badge .badge-icon.check { color: #2563eb; }
.float-badge .badge-text-sm { font-size: 11px; font-weight: 400; color: var(--gray-400); }

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
  padding: 16px 0;
  position: relative; z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: center;
}
.stat-item {
  padding: 16px;
  border-right: 1px solid var(--blue-100);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 800;
  color: var(--blue-700); line-height: 1.1; margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-main);
  font-size: 1.2rem; color: var(--gray-500); font-weight: 500;
}
.stat-item.visible .stat-num { animation: countUp 0.7s ease forwards; }

/* ═══════════════════════════════════════════════════════
   SERVICES — Attractive Card Colors
═══════════════════════════════════════════════════════ */
.services {
  padding: 96px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden; cursor: pointer;
  border: 1.5px solid transparent;
}

/* Decorative corner circle */
.service-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 0.25; }

/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(15,23,42,0.12); }
.service-card:hover::before { transform: scaleX(1); }
/* .service-card:hover .svc-icon i { animation: iconSpin 0.6s ease; } */

.svc-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s, color 0.3s;
  border: 1.5px solid transparent;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3;
}
.service-card p {
  font-family: var(--font-main);
  font-size: 1rem; line-height: 1.75; margin-bottom: 20px;
}
.svc-learn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-main);
  font-size: 13px; font-weight: 600;
  transition: gap 0.3s ease;
}
.svc-learn:hover { gap: 10px; }

/* Card 1 — Blue */
.service-card:nth-child(1) { background: #dbeafe; border-color: #93c5fd; }
.service-card:nth-child(1)::before { background: linear-gradient(90deg, #93c5fd, #1d4ed8); }
.service-card:nth-child(1)::after  { background: #1d4ed8; }
.service-card:nth-child(1):hover   { border-color: #93c5fd; box-shadow: 0 16px 48px rgba(29,78,216,0.13); }
.service-card:nth-child(1) .svc-icon { background: #bfdbfe; border-color: #93c5fd; color: #1e3a8a; }
.service-card:nth-child(1):hover .svc-icon { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
.service-card:nth-child(1) h3  { color: #1e3a8a; }
.service-card:nth-child(1) p   { color: #1d4ed8; }
.service-card:nth-child(1) .svc-learn { color: #1d4ed8; }

/* Card 2 — Blue Medium */
.service-card:nth-child(2) { background: #eff6ff; border-color: #bfdbfe; }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #bfdbfe, #2563eb); }
.service-card:nth-child(2)::after  { background: #2563eb; }
.service-card:nth-child(2):hover   { border-color: #bfdbfe; box-shadow: 0 16px 48px rgba(37,99,235,0.13); }
.service-card:nth-child(2) .svc-icon { background: #dbeafe; border-color: #bfdbfe; color: #1e3a8a; }
.service-card:nth-child(2):hover .svc-icon { background: #2563eb; color: #fff; border-color: #2563eb; }
.service-card:nth-child(2) h3  { color: #1e3a8a; }
.service-card:nth-child(2) p   { color: #2563eb; }
.service-card:nth-child(2) .svc-learn { color: #2563eb; }

/* Card 3 — Sky Blue */
.service-card:nth-child(3) { background: #e0f2fe; border-color: #7dd3fc; }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #7dd3fc, #0284c7); }
.service-card:nth-child(3)::after  { background: #0284c7; }
.service-card:nth-child(3):hover   { border-color: #7dd3fc; box-shadow: 0 16px 48px rgba(2,132,199,0.13); }
.service-card:nth-child(3) .svc-icon { background: #bae6fd; border-color: #7dd3fc; color: #0c4a6e; }
.service-card:nth-child(3):hover .svc-icon { background: #0284c7; color: #fff; border-color: #0284c7; }
.service-card:nth-child(3) h3  { color: #0c4a6e; }
.service-card:nth-child(3) p   { color: #0284c7; }
.service-card:nth-child(3) .svc-learn { color: #0284c7; }

/* Card 4 — Blue Light */
.service-card:nth-child(4) { background: #dbeafe; border-color: #60a5fa; }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #60a5fa, #3b82f6); }
.service-card:nth-child(4)::after  { background: #3b82f6; }
.service-card:nth-child(4):hover   { border-color: #60a5fa; box-shadow: 0 16px 48px rgba(59,130,246,0.13); }
.service-card:nth-child(4) .svc-icon { background: #93c5fd; border-color: #60a5fa; color: #1e3a8a; }
.service-card:nth-child(4):hover .svc-icon { background: #3b82f6; color: #fff; border-color: #3b82f6; }
.service-card:nth-child(4) h3  { color: #1e3a8a; }
.service-card:nth-child(4) p   { color: #3b82f6; }
.service-card:nth-child(4) .svc-learn { color: #3b82f6; }

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════ */
.why-us {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--white) 0%, var(--blue-50) 100%);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.why-main-img { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.why-photo {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--blue-200) 0%, var(--blue-400) 50%, var(--blue-700) 100%);
  position: relative; border-radius: var(--radius-xl);
}
.why-photo-overlay {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1551434678-e076c223a692?w=700&q=80") center/cover no-repeat;
  border-radius: var(--radius-xl); opacity: 0.85;
}
.why-photo-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 5s ease-in-out infinite;
}
.wpb-icon { font-size: 26px; color: #F59E0B; }
.wpb-text .num { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--gray-800); }
.wpb-text .lbl { font-family: var(--font-main); font-size: 12px; color: var(--gray-500); }

.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--blue-100); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-point:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.wp-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.3s, color 0.3s;
}
.why-point:hover .wp-icon { background: var(--blue-600); color: var(--white); }
.wp-text h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.wp-text p  { font-family: var(--font-main); font-size: 1.1rem; color: var(--gray-500); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   TECHNOLOGIES
═══════════════════════════════════════════════════════ */
.technologies { padding: 80px 0; background: var(--white); }
.tech-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 48px; justify-content: center;
}
.tech-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); border: 1.5px solid var(--blue-100);
  color: var(--gray-700);
  font-family: var(--font-main);
  font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 100px;
  cursor: default; transition: all var(--transition);
  animation: borderPulse 3s ease-in-out infinite;
}
.tech-pill:nth-child(even) { animation-delay: 1.5s; }
.tech-pill:hover {
  background: var(--blue-600); color: var(--white);
  border-color: var(--blue-600);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.tech-pill:hover i { color: var(--white) !important; }

.tp-html  { color: #E34F26; }
.tp-css   { color: #1572B6; }
.tp-boot  { color: #7952B3; }
.tp-php   { color: #777BB4; }
.tp-node  { color: #339933; }
.tp-mysql { color: #00758F; }
.tp-wp    { color: #21759B; }
.tp-react { color: #61DAFB; }
.tp-ai    { color: var(--blue-600); }
.tp-figma { color: #F24E1E; }

/* ═══════════════════════════════════════════════════════
   SOLUTIONS — Attractive Card Colors
═══════════════════════════════════════════════════════ */
.solutions { padding: 80px 0; background: var(--gray-50); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}

.solution-item {
  display: flex; gap: 20px;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.solution-item:hover { transform: translateY(-6px); }

/* Decorative corner */
.solution-item::after {
  content: ''; position: absolute;
  top: -24px; right: -24px;
  width: 80px; height: 80px; border-radius: 50%;
  opacity: 0.12; pointer-events: none; transition: opacity 0.4s;
}
.solution-item:hover::after { opacity: 0.24; }

/* Item 1 — Blue */
.solution-item:nth-child(1) { background: #dbeafe; border-color: #93c5fd; }
.solution-item:nth-child(1)::after { background: #1d4ed8; }
.solution-item:nth-child(1):hover  { border-color: #93c5fd; box-shadow: 0 12px 36px rgba(29,78,216,0.13); }
.solution-item:nth-child(1) .sol-content h3 { color: #1e3a8a; }
.solution-item:nth-child(1) .sol-content p  { color: #0284c7; }

/* Item 2 — Blue Medium */
.solution-item:nth-child(2) { background: #eff6ff; border-color: #bfdbfe; }
.solution-item:nth-child(2)::after { background: #2563eb; }
.solution-item:nth-child(2):hover  { border-color: #bfdbfe; box-shadow: 0 12px 36px rgba(37,99,235,0.13); }
.solution-item:nth-child(2) .sol-content h3 { color: #1e3a8a; }
.solution-item:nth-child(2) .sol-content p  { color: #0284c7; }

/* Item 3 — Sky Blue */
.solution-item:nth-child(3) { background: #e0f2fe; border-color: #7dd3fc; }
.solution-item:nth-child(3)::after { background: #0284c7; }
.solution-item:nth-child(3):hover  { border-color: #7dd3fc; box-shadow: 0 12px 36px rgba(2,132,199,0.13); }
.solution-item:nth-child(3) .sol-content h3 { color: #0c4a6e; }
.solution-item:nth-child(3) .sol-content p  { color: #0284c7; }

/* Item 4 — Blue Light */
.solution-item:nth-child(4) { background: #dbeafe; border-color: #60a5fa; }
.solution-item:nth-child(4)::after { background: #3b82f6; }
.solution-item:nth-child(4):hover  { border-color: #60a5fa; box-shadow: 0 12px 36px rgba(59,130,246,0.13); }
.solution-item:nth-child(4) .sol-content h3 { color: #1e3a8a; }
.solution-item:nth-child(4) .sol-content p  { color: #0284c7; }

/* Item 5 — Blue Sky */
.solution-item:nth-child(5) { background: #e0f2fe; border-color: #38bdf8; }
.solution-item:nth-child(5)::after { background: #0284c7; }
.solution-item:nth-child(5):hover  { border-color: #7dd3fc; box-shadow: 0 12px 36px rgba(2,132,199,0.13); }
.solution-item:nth-child(5) .sol-content h3 { color: #0c4a6e; }
.solution-item:nth-child(5) .sol-content p  { color: #0284c7; }

/* Item 6 — Deep Blue */
.solution-item:nth-child(6) { background: #dbeafe; border-color: #93c5fd; }
.solution-item:nth-child(6)::after { background: #1e40af; }
.solution-item:nth-child(6):hover  { border-color: #93c5fd; box-shadow: 0 12px 36px rgba(30,64,175,0.13); }
.solution-item:nth-child(6) .sol-content h3 { color: #1e3a8a; }
.solution-item:nth-child(6) .sol-content p  { color: #0284c7; }

.sol-num {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-family: var(--font-head); font-weight: 800;
  margin-top: 2px;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  color: var(--gray-700);
  border: 1.5px solid rgba(0,0,0,0.06);
}
.solution-item:hover .sol-num {
  background: rgba(255,255,255,0.95);
  transform: scale(1.1) rotate(5deg);
}
.sol-content h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.sol-content p  { font-family: var(--font-main); font-size: 16px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--white) 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 56px; position: relative;
}
/* .process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 8px);
  right: calc(10% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
  z-index: 0;
} */
.process-step { text-align: center; position: relative; z-index: 1; transition: transform var(--transition); }
.process-step:hover { transform: translateY(-6px); }

.step-circle {
  width: 72px; height: 72px;
  background: var(--white); border: 2px solid var(--blue-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px; color: var(--blue-600);
  position: relative; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.process-step:hover .step-circle {
  background: var(--blue-600); color: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--blue-600); color: var(--white);
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white); transition: background 0.3s;
}
.process-step:hover .step-num { background: #0EA5E9; }
.process-step:hover .step-circle { animation: stepNumPop 0.4s ease; }
.process-step h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.process-step p  { font-family: var(--font-main); font-size: 18px; color: var(--gray-500); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════════════════ */
.team-section { margin-top: -10px; padding: 76px 0; background: var(--white); }
.team-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px; align-items: center;
}
.team-content .section-head {
    text-align: center;
    width: 100%;
    margin-bottom: 32px;
    margin-left: 250px;
}
/* .team-content {
    position: relative;
    left: 100px;
} */
.team-img-col {
    position: relative;
    top: 140px;
}
.team-content .section-sub {
    max-width: 560px;
    margin: 0 auto !important;
}
.team-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }

.team-feat {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--radius-md); padding: 20px 18px;
  transition: all var(--transition);
}
.team-feat:hover {
  background: var(--blue-600); border-color: var(--blue-600);
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.team-feat i { font-size: 20px; color: var(--blue-600); margin-bottom: 10px; display: block; transition: color 0.3s; }
.team-feat:hover i { color: var(--white); }
.team-feat h5 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; transition: color 0.3s; }
.team-feat:hover h5 { color: var(--white); }
.team-feat p { font-family: var(--font-main); font-size: 1.2rem; color: var(--gray-500); line-height: 1.6; transition: color 0.3s; }
.team-feat:hover p { color: rgba(255,255,255,0.85); }

/* .team-photo-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); } */
.team-photo {
  
  height: 420px;
  background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=700&q=80") center/cover no-repeat;
  border-radius: var(--radius-xl); transition: transform 0.6s ease;
}
.team-photo-wrap:hover .team-photo { transform: scale(1.04); }
.team-photo-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  animation: floatBadge 5.5s ease-in-out infinite;
}
.tpt-icon { font-size: 22px; color: var(--blue-600); }
.tpt-val  { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--gray-800); }
.tpt-lbl  { font-family: var(--font-main); font-size: 11px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: black; margin-bottom: 16px; }
.cta-inner h2 em { font-style: normal; color: var(--blue-300); }
.cta-inner p { font-family: var(--font-main); font-size: 1.2rem; color: var(--blue-700); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--blue-700);
  font-family: var(--font-main);
  font-weight: 700; font-size: 15px;
  padding: 15px 32px; border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all var(--transition);
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.30); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--white);
  font-family: var(--font-main);
  font-weight: 600; font-size: 15px;
  padding: 15px 32px; border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
/* @media (max-width: 1024px) {
  .hero-inner, .why-inner, .team-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--blue-100); }
  .stat-item:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-feats { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 60px; min-height: auto; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; }
} */
 /* ============================================================
   WEBSITE-DEVELOPMENT PAGE — MOBILE RESPONSIVE FIX
   Paste at the BOTTOM of website-development.css
   ============================================================ */

/* ── HERO ── */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .hero-visual { display: none !important; }
  .hero-content h1 { font-size: clamp(28px, 6.5vw, 42px); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 18px 48px; }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: clamp(24px, 7.5vw, 36px);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.93rem;
    margin-bottom: 24px;
    line-height: 1.75;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 10px;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 10px;
  }

  .trust-item { font-size: 0.82rem; }
  .trust-sep  { display: none; }
}

/* ── STATS BAR ── */
@media (max-width: 768px) {
  .stats-bar { padding: 12px 0; }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0;
  }

  .stat-item {
    padding: 12px 8px;
    border-right: 1px solid var(--blue-100) !important;
    border-bottom: none !important;
  }
  .stat-item:last-child { border-right: none !important; }

  .stat-num   { font-size: 22px; }
  .stat-label { font-size: 0.72rem; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--blue-100) !important;
  }
  .stat-item:last-child { border-bottom: none !important; }
  .stat-num { font-size: 26px; }
}

/* ── SERVICES ── */
@media (max-width: 768px) {
  .services { padding: 52px 0; }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-top: 32px;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .svc-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 14px; }

  .service-card h3 { font-size: 16px; margin-bottom: 8px; }
  .service-card p  { font-size: 0.9rem; margin-bottom: 14px; }
  .svc-learn       { font-size: 12px; }
}

@media (min-width: 480px) and (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── WHY CHOOSE US ── */
@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .why-img-col { display: none; } /* hide photo on tablet/mobile, keep content */
}

@media (max-width: 768px) {
  .why-us { padding: 52px 0; }

  .why-points { gap: 14px; }

  .why-point {
    padding: 16px;
    gap: 14px;
    border-radius: 12px;
  }

  .wp-icon { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
  .wp-text h4 { font-size: 0.9rem; }
  .wp-text p  { font-size: 0.87rem; }
}

/* ── SOLUTIONS ── */
@media (max-width: 768px) {
  .solutions { padding: 52px 0; }

  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 28px;
  }

  .solution-item {
    padding: 20px 16px;
    gap: 14px;
    border-radius: 14px;
  }

  .sol-num { width: 42px; height: 42px; min-width: 42px; font-size: 17px; }
  .sol-content h3 { font-size: 14px; margin-bottom: 6px; }
  .sol-content p  { font-size: 0.87rem; line-height: 1.65; }
}

@media (min-width: 480px) and (max-width: 768px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── PROCESS ── */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .process { padding: 52px 0; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-top: 32px;
  }

  .step-circle {
    width: 58px;
    height: 58px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .step-num { width: 18px; height: 18px; font-size: 9px; top: -4px; right: -4px; }

  .process-step h4 { font-size: 13px; margin-bottom: 4px; }
  .process-step p  { font-size: 0.82rem; line-height: 1.55; }
}

@media (max-width: 400px) {
  .process-steps { grid-template-columns: 1fr 1fr !important; gap: 12px; }
}

/* ── TEAM SECTION ── */
@media (max-width: 1024px) {
  .team-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Reset desktop positioning hacks */
  .team-content .section-head {
    text-align: center !important;
    margin-left: 0 !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .team-content .section-sub {
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .team-img-col { position: static !important; top: auto !important; }
  .team-photo   { height: 280px; }

  .team-photo-tag {
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .team-section { padding: 52px 0; margin-top: 0; }

  .team-feats {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }

  .team-feat { padding: 16px 14px; border-radius: 10px; }
  .team-feat i  { font-size: 17px; margin-bottom: 8px; }
  .team-feat h5 { font-size: 13px; }
  .team-feat p  { font-size: 0.82rem; line-height: 1.55; }

  .team-photo   { height: 220px; border-radius: 16px; }
  .tpt-val      { font-size: 14px; }
  .tpt-lbl      { font-size: 10px; }
  .tpt-icon     { font-size: 18px; }
}

@media (max-width: 400px) {
  .team-feats { grid-template-columns: 1fr !important; }
}

/* ── CTA SECTION ── */
@media (max-width: 768px) {
  .cta-section { padding: 56px 0; }

  .cta-inner h2 {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 12px;
  }

  .cta-inner p {
    font-size: 0.93rem;
    margin-bottom: 24px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn-white,
  .btn-ghost {
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* ── SECTION HEADS — shared tidy-up ── */
@media (max-width: 768px) {
  .section-head { margin-bottom: 0 !important; }

  .section-label {
    font-size: 10px;
    padding: 4px 12px;
  }

  .section-title {
    font-size: clamp(20px, 6vw, 28px) !important;
    margin-bottom: 10px;
  }

  .section-sub {
    font-size: 0.9rem !important;
    line-height: 1.7;
  }

  .container { padding: 0 16px; }
}