/* ==========================================================================
   SRM Tech Solutions — Design System
   ========================================================================== */

:root {
  --primary: #1f4fb7;
  --primary-dark: #163d8b;
  --primary-tint: rgba(49, 114, 209, 0.16);
  --primary-glow: rgba(49, 114, 209, 0.20);

  --accent: #74a7ff;
  --accent-dark: #b7d4ff;
  --accent-tint: rgba(116, 167, 255, 0.16);
  --accent-glow: rgba(116, 167, 255, 0.22);

  --ink: #000000;
  --ink-soft: #000000;
  --ink-muted: #000000;

  --bg: #ffffff;
  --bg-tint: #edf3ff;
  --bg-dark: #0f1729;
  --bg-app: #edf3ff;

  --border: #e2e8f0;

  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 41, .06), 0 1px 2px rgba(15, 23, 41, .04);
  --shadow-md: 0 4px 16px rgba(15, 23, 41, .08), 0 2px 4px rgba(15, 23, 41, .04);
  --shadow-lg: 0 20px 40px rgba(15, 23, 41, .12), 0 4px 8px rgba(15, 23, 41, .04);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);

  --font: 'Inter', -apple-system, sans-serif;
  --serif: 'Sora', -apple-system, sans-serif;
}

/* -------- Reset -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(49, 114, 209, 0.12), transparent 20%), radial-gradient(circle at bottom right, rgba(116, 167, 255, 0.10), transparent 18%), var(--bg-app);
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

body.dark {
  --ink: #f8fafc;
  --ink-soft: #cbd5e1;
  --ink-muted: #94a3b8;
  --bg: #0f172a;
  --bg-tint: #1e293b;
  --bg-dark: #090d16;
  --bg-app: #0f172a;
  --border: #334155;
  --primary: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-tint: rgba(59, 130, 246, 0.15);
  --primary-glow: rgba(59, 130, 246, 0.25);
  --accent: #93c5fd;
  --accent-dark: #bfdbfe;
  --accent-tint: rgba(147, 197, 253, 0.15);
  --accent-glow: rgba(147, 197, 253, 0.25);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* -------- Layout -------- */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 48px 0;
}

/* -------- Animations -------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s var(--ease) both;
}

@keyframes pageFadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

main {
  animation: pageFadeInUp 0.38s var(--ease) both;
}

.d1 {
  animation-delay: 0.05s;
}

.d2 {
  animation-delay: 0.12s;
}

.d3 {
  animation-delay: 0.20s;
}

.d4 {
  animation-delay: 0.28s;
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1f4fb7 0%, #74a7ff 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(116, 167, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(116, 167, 255, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(15, 23, 41, 0.15);
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 41, 0.07);
}

.btn-outline:hover {
  border-color: rgba(116, 167, 255, 0.4);
  color: #0f172a;
  background: rgba(116, 167, 255, 0.12);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid rgba(15, 23, 41, 0.12);
  background: rgba(15, 23, 41, 0.08);
  color: var(--ink);
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(15, 23, 41, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(15, 23, 41, 0.08);
  border-color: rgba(15, 23, 41, 0.15);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(15, 23, 41, 0.14);
  border-color: rgba(15, 23, 41, 0.25);
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 41, 0.1);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--t);
}

.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 41, 0.12);
  color: #0f172a;
}

.theme-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 41, 0.12);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--t);
}

.theme-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 41, 0.12);
  background: rgba(49, 114, 209, 0.18);
  color: #0f172a;
}

body.dark .theme-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--ink);
}

body.dark .theme-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.theme-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.icon-moon {
  display: block;
}

.icon-sun {
  display: none;
}

body.dark .icon-moon {
  display: none;
}

body.dark .icon-sun {
  display: block;
}

body.dark .card,
body.dark .hero-highlights .highlight,
body.dark .hero-card,
body.dark .hero-scroller,
body.dark .stats-bar,
body.dark .stat-cell,
body.dark .testimonial-section,
body.dark .slider-track,
body.dark .slide,
body.dark .service-row,
body.dark .mission-card,
body.dark .t-body {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

body.dark .hero-card-badge,
body.dark .view-all-link,
body.dark .t-dot,
body.dark .dot.active {
  background: rgba(116, 167, 255, 0.18);
}

body.dark .slide-quote,
body.dark .service-row h3,
body.dark .service-row p,
body.dark .proj-tag,
body.dark .stat-num,
body.dark .stat-lbl,
body.dark .card,
body.dark .t-body h3,
body.dark .t-body p {
  color: var(--ink);
}

body.dark .slide {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

body.dark .slide-quote::before {
  color: rgba(59, 130, 246, 0.28);
}

body.dark .dot {
  background: rgba(255, 255, 255, 0.22);
}

body.dark .dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

body.dark .dot.active {
  background: linear-gradient(135deg, #3b82f6, #93c5fd);
}

/* -------- HEADER -------- */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15, 23, 41, 0.08);
  transition: var(--t), background 0.35s, border-color 0.35s;
}

header.scrolled {
  box-shadow: 0 20px 48px rgba(15, 23, 41, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 30px;
  max-width: 1120px;
  margin: 0 auto;
  transition: var(--t);
}

header.scrolled .nav {
  padding: 10px 30px;
}

body.dark header {
  background: rgba(15, 23, 42, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark .logo {
  color: var(--ink);
}

body.dark .logo .accent {
  color: var(--accent);
}

body.dark .nav-links a {
  color: var(--ink-soft);
}

body.dark .nav-links a:hover,
body.dark .nav-links a.active {
  color: var(--ink);
}

.logo {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo .accent {
  color: var(--accent);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: var(--t);
  box-sizing: border-box;
}

body.dark .logo-img {
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 8px;
  height: 38px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.22s var(--ease);
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  background: linear-gradient(135deg, #1f4fb7, #74a7ff);
}

.nav-links a.active {
  color: #0f172a;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

/* -------- EYEBROW -------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-tint);
  border: 1px solid rgba(49, 114, 209, 0.12);
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* -------- PAGE HEAD (inner pages) -------- */
.page-head {
  padding: 32px 0 28px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-tint) 0%, transparent 100%);
}

.page-head h1 {
  font-size: 34px;
  max-width: 680px;
  margin: 0 auto;
}

.page-head p {
  font-size: 15.5px;
  max-width: 600px;
  margin: 8px auto 0;
}

/* -------- SECTION HEAD -------- */
.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 15px;
}

/* -------- CARD -------- */
.card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(15, 23, 41, 0.06);
  transition: var(--t);
  color: var(--ink);
  text-decoration: none;
}

.card:hover {
  border-color: rgba(49, 114, 209, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(15, 23, 41, 0.12);
}

/* -------- ICON CHIP -------- */
.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(49, 114, 209, 0.12), rgba(116, 167, 255, 0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--t);
}

.card:hover .icon-chip {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(116, 167, 255, 0.18);
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Homepage Header Overlay (Transparent when unscrolled) */
.home-page header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  /* Add a subtle dark gradient at the very top to ensure white text is highly visible */
  background: linear-gradient(to bottom, rgba(9, 13, 22, 0.45) 0%, rgba(9, 13, 22, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 200;
  transition: all 0.35s ease;
}

/* Homepage Header Nav links and buttons when transparent */
.home-page header:not(.scrolled) .logo-img {
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 8px;
  height: 38px;
}

.home-page header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.home-page header:not(.scrolled) .nav-links a:hover,
.home-page header:not(.scrolled) .nav-links a.active {
  color: #ffffff;
}

.home-page header:not(.scrolled) .nav-links a:hover::after,
.home-page header:not(.scrolled) .nav-links a.active::after {
  background: linear-gradient(135deg, #74a7ff, #ffffff);
}

.home-page header:not(.scrolled) .theme-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.home-page header:not(.scrolled) .theme-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* Homepage Header Scrolled */
.home-page header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 41, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

body.dark.home-page header.scrolled {
  background: rgba(15, 23, 42, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0 100px;
  background-image: url('assets/premium_office_team.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(9, 13, 22, 0.92) 0%, rgba(15, 23, 42, 0.78) 45%, rgba(31, 79, 183, 0.35) 100%);
  z-index: 1;
}

body.dark .hero-bg-overlay {
  background: linear-gradient(135deg, rgba(5, 7, 12, 0.95) 0%, rgba(9, 13, 22, 0.85) 45%, rgba(29, 78, 216, 0.25) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

.hero-copy .eyebrow-pill {
  background: rgba(116, 167, 255, 0.15);
  border: 1px solid rgba(116, 167, 255, 0.25);
  color: #b7d4ff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  display: inline-block;
}

.hero-copy .hero-banner-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.hero-copy .hero-banner-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-copy .hero-banner-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-copy .btn-primary-banner {
  background: linear-gradient(135deg, #3172d1 0%, #2563eb 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.3s var(--ease);
}

.hero-copy .btn-primary-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.5);
}

.hero-copy .btn-secondary-banner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}

.hero-copy .btn-secondary-banner:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.hero-copy .hero-banner-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  width: 100%;
}

.hero-copy .banner-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-copy .banner-stat strong {
  font-size: 24px;
  color: #ffffff;
  font-weight: 800;
}

.hero-copy .banner-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Glassmorphic Dashboard Mockup Styles */
.hero-dashboard-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.glass-dashboard {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
  animation: floatDashboard 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.glass-dashboard:hover {
  border-color: rgba(116, 167, 255, 0.35);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-4px) rotateY(-2px);
}

@keyframes floatDashboard {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.dashboard-search {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 20px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
  letter-spacing: 0.05em;
  text-align: center;
  width: 60%;
}

.dashboard-actions {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

/* Dashboard Body */
.dashboard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-row {
  display: flex;
  gap: 14px;
}

.db-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
}

.db-card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.db-card-val-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 6px 0;
}

.db-card-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--serif);
}

.db-card-trend {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.trend-up {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
}

.db-mini-chart {
  height: 24px;
  margin-top: 4px;
}

.sparkline {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.db-card-status {
  font-size: 11px;
  font-weight: 600;
}

.status-healthy {
  color: #60a5fa;
}

.db-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}

.db-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  border-radius: 99px;
}

/* Main Card */
.main-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.db-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.db-badge {
  font-size: 10px;
  font-weight: 600;
  background: rgba(116, 167, 255, 0.15);
  border: 1px solid rgba(116, 167, 255, 0.25);
  color: #93c5fd;
  padding: 2px 8px;
  border-radius: 99px;
}

.db-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.db-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

.db-list-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.db-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-blue {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.15);
}

.color-orange {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.15);
}

.db-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-item-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.db-item-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.db-item-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-copy .hero-banner-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .hero-copy .hero-banner-btns {
    justify-content: center;
  }

  .hero-copy .hero-banner-stats {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 100px;
  }
}

@media (max-width: 576px) {
  .hero-copy .hero-banner-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-copy .hero-banner-btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy .btn {
    text-align: center;
    justify-content: center;
  }
}

/* Scroller adjustments */
.hero-scroller {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: rgba(15, 23, 42, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-left: none;
  border-right: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  overflow: hidden;
}

.hero-scroll-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 18px 0;
  min-width: max-content;
  animation: heroScroll 20s linear infinite;
  will-change: transform;
}

.hero-scroll-inner:hover {
  animation-play-state: paused;
}

.hero-scroll-inner .scroll-item {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.hero-scroll-inner .scroll-item::before {
  content: '•';
  margin-right: 12px;
  color: var(--accent);
}

@keyframes heroScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

body.dark .hero-scroller {
  background: rgba(9, 13, 22, 0.7);
  border-color: rgba(255, 255, 255, 0.08) transparent transparent transparent;
  box-shadow: none;
}

/* Stats */
.stats-bar {
  background: linear-gradient(180deg, rgba(116, 167, 255, 0.08) 0%, var(--bg-app) 100%);
  border-top: none;
  border-bottom: none;
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.stat-cell {
  padding: 26px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 41, 0.06);
  box-shadow: 0 24px 50px rgba(15, 23, 41, 0.05);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid .card {
  text-align: left;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(31, 79, 183, 0.04);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}

.service-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-grid .card:hover {
  border-color: rgba(31, 79, 183, 0.18);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(31, 79, 183, 0.08);
}

.service-grid .card:hover::before {
  opacity: 1;
}

.service-grid .icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(49, 114, 209, 0.08), rgba(116, 167, 255, 0.08));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  transition: all 0.3s var(--ease);
}

.service-grid .card:hover .icon-chip {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 18px var(--primary-glow);
}

.service-grid h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
  transition: color 0.25s;
}

.service-grid .card:hover h3 {
  color: var(--primary);
}

.service-grid p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

body.dark .service-grid .card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body.dark .service-grid .icon-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

body.dark .service-grid .card:hover .icon-chip {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.25);
}

.view-all-link {
  display: flex;
  width: fit-content;
  margin: 24px auto 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(49, 114, 209, 0.08);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--t);
  text-decoration: none;
}

.view-all-link:hover {
  color: var(--accent);
  background: rgba(49, 114, 209, 0.14);
  gap: 10px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

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

.why-choose {
  background: transparent;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

body.dark .why-choose {
  background: var(--bg-dark);
}

.choose-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.choose-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.choose-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(49, 114, 209, 0.12), rgba(116, 167, 255, 0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
  box-shadow: 0 4px 10px rgba(15, 23, 41, 0.03);
}

.choose-item:hover .choose-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(116, 167, 255, 0.18);
}

.choose-icon svg {
  width: 22px;
  height: 22px;
}

.choose-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.choose-text p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.choose-media {
  position: relative;
}

.choose-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}

.choose-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 41, 0.08);
  background: var(--bg);
  transition: var(--t);
}

body.dark .choose-img-wrapper {
  border-color: rgba(255, 255, 255, 0.12);
}

.choose-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(15, 23, 41, 0.16);
}

.choose-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Staggered offset for a modern, premium look */
.choose-img-wrapper:nth-child(2) {
  transform: translateY(40px);
}

.choose-img-wrapper:hover:nth-child(2) {
  transform: translateY(34px);
}

/* Testimonials + Values combined layout */
.grid-testimonial-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.testimonials-column {
  min-width: 0;
  width: 100%;
}

.values-column {
  min-width: 0;
  width: 100%;
}

.values-list-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.value-item-mini {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 41, 0.06);
  border-radius: 18px;
  transition: var(--t);
}

body.dark .value-item-mini {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.value-item-mini:hover {
  transform: translateX(4px);
  background: #ffffff;
  border-color: rgba(49, 114, 209, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 41, 0.04);
}

body.dark .value-item-mini:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.value-icon-mini {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}

.value-item-mini:hover .value-icon-mini {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
}

.value-text-mini h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--ink);
}

.value-text-mini p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Testimonial slider */
.testimonial-section {
  background: linear-gradient(180deg, rgba(116, 167, 255, 0.08) 0%, var(--bg-app) 100%);
}

.slider-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.slider-track {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 68px rgba(15, 23, 41, 0.09);
  background: #ffffff;
  border: 1px solid rgba(49, 114, 209, 0.12);
}

.slider-inner {
  display: flex;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  background: #ffffff;
  border: none;
  border-radius: 32px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.slide-stars {
  color: #ffb800;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.slide-quote {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 24px;
  text-align: center;
  max-width: 620px;
}

.slide-quote::before {
  content: '\201C';
  display: block;
  font-size: 64px;
  line-height: 1;
  color: rgba(49, 114, 209, 0.16);
  margin-bottom: 8px;
}

.slide-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}

.slide-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.slide-company {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(15, 23, 41, 0.16);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--t);
}

.dot:hover {
  background: rgba(49, 114, 209, 0.32);
}

.dot.active {
  width: 18px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4fb7, #74a7ff);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* About page: Mission & Vision grid */
.grid-mission-vision {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.mv-text-column {
  width: 100%;
}

.mv-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mv-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-item p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.mv-image-column {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 23, 41, 0.08);
  border: 1px solid var(--border);
}

.mv-image-column img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 340px;
}

/* About page: Timeline + Image Grid */
.grid-timeline-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.timeline-column-left {
  min-width: 0;
  width: 100%;
}

.timeline-column-right {
  min-width: 0;
  width: 100%;
}

.timeline-image-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  padding: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--t);
}

.timeline-image-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(49, 114, 209, 0.14);
}

.timeline-image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.image-caption {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.t-row {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
  align-items: flex-start;
}

.t-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--bg);
}

.t-row:nth-child(even) .t-dot {
  background: var(--accent);
}

.t-body {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.t-row:hover .t-body {
  border-color: rgba(49, 114, 209, 0.15);
  transform: translateX(3px);
}

.t-body h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.t-body p {
  font-size: 13.5px;
}

/* About page: Our Process */
.process-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 32px;
  margin-top: 12px;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 14px;
  /* Centered with the badge */
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-flow::before {
    display: none;
  }
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.process-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 41, 0.08);
  margin-bottom: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-step:hover .process-icon-box {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 41, 0.15);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px 0;
}

.process-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
/* Interactive Technologies Section */
.tech-stack-section {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 64px 0;
}

.tech-tabs-container {
  width: 100%;
  margin: 0 auto;
}

.tech-tabs-bar {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tech-tab-btn {
  padding: 10px 22px;
  border-radius: 99px;
  border: 1px solid rgba(15, 23, 41, 0.06);
  background: var(--bg);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}

.tech-tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary-tint);
}

.tech-tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.tech-tab-pane {
  display: none;
  animation: pageFadeInUp 0.35s var(--ease) both;
}

.tech-tab-pane.active {
  display: block;
}

.tech-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .tech-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid-large {
    grid-template-columns: 1fr;
  }
}

.tech-card-large {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  align-items: center;
  text-align: left;
  transition: var(--t);
}

.tech-card-large:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, currentColor 30%, transparent);
  box-shadow: 0 12px 30px color-mix(in srgb, currentColor 6%, transparent);
}

body.dark .tech-card-large {
  background: rgba(255, 255, 255, 0.02);
}

body.dark .tech-card-large:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: color-mix(in srgb, currentColor 35%, transparent);
  box-shadow: 0 12px 30px color-mix(in srgb, currentColor 10%, transparent);
}

.tech-logo-large {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-bottom: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, currentColor 8%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}

.tech-logo-large svg {
  width: 22px !important;
  height: 22px !important;
}

.tech-card-large:hover .tech-logo-large {
  transform: scale(1.08) rotate(3deg);
  background: color-mix(in srgb, currentColor 14%, transparent);
  border-color: color-mix(in srgb, currentColor 28%, transparent);
}

.tech-card-large h4 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.tech-card-large p {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 32px 32px 36px;
  background: var(--bg);
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 41, 0.03);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-row:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(31, 79, 183, 0.18);
  box-shadow: 0 20px 48px rgba(31, 79, 183, 0.08);
}

.service-row:hover::before {
  opacity: 1;
}

.service-row .icon-chip {
  margin: 0;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(49, 114, 209, 0.08), rgba(116, 167, 255, 0.08));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.service-row:hover .icon-chip {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.service-row h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
  transition: color 0.25s;
}

.service-row:hover h3 {
  color: var(--primary);
}

.service-row p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-row .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.service-row .tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(49, 114, 209, 0.05);
  border: 1px solid rgba(49, 114, 209, 0.1);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s;
}

.service-row:hover .tags span {
  border-color: rgba(49, 114, 209, 0.25);
  background: rgba(49, 114, 209, 0.08);
}

.service-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(49, 114, 209, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}

.service-row:hover .service-arrow {
  background: var(--primary);
  color: #ffffff;
  transform: translateX(4px);
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  min-width: 110px;
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: rgba(49, 114, 209, 0.24);
  color: var(--primary);
  background: rgba(49, 114, 209, 0.08);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(49, 114, 209, 0.18);
}

body.dark .filter-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink-soft);
  box-shadow: none;
}

body.dark .filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

body.dark .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

.proj-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
  aspect-ratio: 1 / 1;
}

.proj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 114, 209, 0.18);
  box-shadow: var(--shadow-md);
}

.proj-thumb {
  height: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: none;
}

.proj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.proj-card:hover .proj-thumb img {
  transform: scale(1.08);
}

.proj-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(calc(100% - 96px));
  display: flex;
  flex-direction: column;
}

body.dark .proj-body {
  background: rgba(15, 23, 42, 0.96);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.proj-card:hover .proj-body {
  transform: translateY(0);
}

.proj-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
}

.proj-body h3 {
  font-size: 17px;
  margin: 6px 0 6px;
  color: var(--ink);
}

.proj-body p {
  font-size: 14px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.proj-metric {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

body.dark .proj-metric {
  color: var(--accent);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.proj-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.proj-stack span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(49, 114, 209, 0.06);
  border: 1px solid rgba(49, 114, 209, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
}

body.dark .proj-stack span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ============================================================
   EMPOWERING BUSINESS WITH TECH (PORTFOLIO PAGE)
   ============================================================ */
.empower-section {
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

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

.empower-image-column {
  width: 100%;
}

.empower-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: var(--t);
}

.empower-img-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 41, 0.12);
}

.empower-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.empower-content-column {
  width: 100%;
}

.empower-tabs-nav {
  display: flex;
  gap: 12px;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.empower-tab-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 99px;
  transition: var(--t);
}

.empower-tab-btn:hover {
  color: var(--primary);
  background: var(--primary-tint);
}

.empower-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
}

.empower-tab-content {
  min-height: 110px;
  margin-bottom: 32px;
}

.empower-tab-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.empower-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.empower-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.empower-stat-item strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.empower-stat-item span {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.dark .empower-img-wrapper {
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark .empower-tab-btn {
  color: var(--ink-soft);
}

body.dark .empower-tab-btn:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

body.dark .empower-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-head.contact-head {
  text-align: left;
  padding: 48px 0 32px;
}

.page-head.contact-head h1 {
  margin: 0;
  max-width: 780px;
}

.page-head.contact-head p {
  margin: 16px 0 0;
  max-width: 600px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.column-head {
  margin-bottom: 28px;
}

.column-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.25;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.info-item:hover .info-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.info-item h3 {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}

.info-item p {
  font-size: 13.5px;
}

.form-container-relative {
  position: relative;
}

.glow-bg {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  background: radial-gradient(circle, rgba(49, 114, 209, 0.07) 0%, rgba(116, 167, 255, 0.02) 60%, transparent 100%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

body.dark .glow-bg {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.03) 50%, transparent 100%);
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #000000;
  /* Highlighted solid black border */
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13.5px;
  background: var(--bg);
  color: var(--ink);
  transition: var(--t);
  outline: none;
}

body.dark input,
body.dark select,
body.dark textarea {
  border-color: rgba(255, 255, 255, 0.35);
  /* High visibility in dark mode */
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

/* Interactive Form Chips */
.interactive-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.interactive-chips .chip {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  user-select: none;
  outline: none;
}

.interactive-chips .chip:hover {
  border-color: var(--primary);
  color: var(--ink);
  background: var(--bg-tint);
}

.interactive-chips .chip.active {
  background: var(--primary-tint);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 0 0 2px var(--primary-glow);
}

body.dark .interactive-chips .chip.active {
  background: rgba(59, 130, 246, 0.16);
  border-color: var(--primary);
  color: #fff;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 14.5px;
  margin-top: 6px;
}

.form-note {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 12px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
}

.faq-item:hover {
  border-color: var(--primary-glow);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-chevron {
  transition: transform 0.25s var(--ease);
  color: var(--ink-muted);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0 24px;
}

.faq-content p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 18px 0;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* FAQ 2-Column Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 100px;
}

.faq-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.faq-intro p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-tint) 0%, rgba(116, 167, 255, 0.08) 100%);
  padding: 68px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(49, 114, 209, 0.12);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto 20px;
  transition: var(--t);
}

body.dark .cta-band {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-band h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.cta-band p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(135deg, #0a1128 0%, #000411 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
  border-top: 3px solid var(--primary);
}

body.dark footer {
  background: linear-gradient(135deg, #050a18 0%, #00020a 100%);
  border-top-color: var(--primary);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.foot-logo-link {
  display: inline-block;
  margin-bottom: 12px;
}

.foot-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.foot-logo-link+p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

body.dark .foot-logo-link+p {
  color: rgba(255, 255, 255, 0.55) !important;
}

.foot-grid h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

body.dark .foot-grid h4 {
  color: var(--accent);
}

.foot-grid a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  transition: var(--t);
}

.foot-grid a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

body.dark .foot-grid a:hover {
  color: #ffffff;
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Override foot-grid a styles for social icon buttons */
.foot-grid .social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0 !important;
  transform: none;
  color: #ffffff !important;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #ffffff;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.social-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
}

/* Facebook - brand blue */
.social-icon[aria-label="Facebook"] {
  background: linear-gradient(135deg, #1877F2, #0c5fd4);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

/* Instagram - brand gradient */
.social-icon[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.35);
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.08) !important;
}

.social-icon[aria-label="Facebook"]:hover {
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
}

.social-icon[aria-label="Instagram"]:hover {
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.55);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.foot-bottom span:first-child {
  font-size: 13px;
}

/* ============================================================
   STATS BAR (also used on about/portfolio)
   ============================================================ */
.stats-bar-standalone {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  section {
    padding: 36px 0;
  }

  .hero {
    padding: 110px 0 100px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .lead {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }

  .grid-mission-vision {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-image-column img {
    height: 280px;
  }

  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-intro {
    position: static;
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 16px;
  }

  header.scrolled .nav {
    padding: 6px 16px;
  }

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

  .nav-links a {
    font-size: 13px;
    padding: 6px 0;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-right .btn-primary {
    padding: 8px 18px;
    font-size: 13px;
  }

  .logo-img {
    height: 30px;
  }

  body.dark .logo-img {
    height: 30px;
    padding: 3px 10px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .choose-images-grid {
    gap: 16px;
    padding-bottom: 0;
  }

  .choose-img-wrapper:nth-child(2) {
    transform: none;
  }

  .choose-img-wrapper:hover:nth-child(2) {
    transform: translateY(-6px);
  }

  .choose-img {
    height: 260px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .grid-testimonial-values {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .grid-timeline-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .empower-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .empower-img {
    height: 280px;
  }

  .empower-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .nav {
    display: grid;
    grid-template-areas:
      "logo right"
      "links links";
    align-items: center;
    justify-content: space-between;
    gap: 8px 0;
    padding: 8px 12px;
  }

  .logo {
    grid-area: logo;
  }

  .nav-right {
    grid-area: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }

  .nav-links {
    grid-area: links;
    display: flex;
    justify-content: space-around;
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 8px 0 0;
    margin-top: 2px;
  }

  body.dark .nav-links {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    font-size: 11.5px;
    font-weight: 750;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 2px 4px;
  }

  .nav-links a.active {
    color: var(--primary);
  }

  body.dark .nav-links a.active {
    color: var(--accent);
  }

  .whatsapp-btn {
    bottom: 24px;
  }

  .phone-btn {
    bottom: 92px;
  }

  body {
    padding-bottom: 0;
  }

  .wrap {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
  }

  .hero-btns .btn,
  .cta-btns .btn {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .proj-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .stat-cell:first-child {
    border-top: none;
  }

  .service-row {
    padding: 22px;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-band {
    padding: 36px 20px;
  }

  .cta-band h2 {
    font-size: 1.8rem;
  }

  .choose-images-grid {
    grid-template-columns: 1fr;
  }

  .choose-img {
    height: 220px;
  }

  .empower-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .empower-stat-item {
    align-items: center;
  }
}

/* ============================================================
   WEB DEVELOPMENT PAGE SPECIFIC STYLES
   ============================================================ */

/* Hero Section */
.web-hero {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, var(--primary-tint) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.web-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.web-hero-copy {
  max-width: 620px;
}

.web-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}

.web-hero h1 span {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--ink);
}

.web-hero .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}

.web-hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.web-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.web-badge:hover {
  transform: translateY(-1px);
  border-color: var(--primary-glow);
}

.web-badge svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.web-hero-btns {
  display: flex;
  gap: 16px;
}

/* Hero Right Side Showcase Card */
.web-hero-showcase {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--t);
}

.web-hero-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(15, 23, 41, 0.12);
}

.web-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.web-showcase-item {
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--t);
}

.web-showcase-item:hover {
  background: var(--bg);
  border-color: rgba(49, 114, 209, 0.25);
  transform: scale(1.02);
}

.web-showcase-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-showcase-item h4 {
  font-size: 13.5px;
  font-weight: 700;
}

/* Services Grid Section */
.web-services-section {
  padding: 32px 0 48px;
}

.web-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.web-service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.web-service-card:hover {
  border-color: var(--primary-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.web-service-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-service-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}

.web-service-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Technologies Section */
.web-tech-section {
  background: transparent;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.web-tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.web-tech-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  transition: var(--t);
}

.web-tech-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, currentColor 30%, transparent);
  box-shadow: 0 10px 24px color-mix(in srgb, currentColor 6%, transparent);
}

.web-tech-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, currentColor 8%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.web-tech-icon svg {
  width: 18px !important;
  height: 18px !important;
}

.web-tech-card:hover .web-tech-icon {
  transform: scale(1.08) rotate(3deg);
  background: color-mix(in srgb, currentColor 14%, transparent);
  border-color: color-mix(in srgb, currentColor 28%, transparent);
}

.web-tech-card h4 {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: center;
}

/* Why Choose Section Layout */
.web-why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 0;
}

.web-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.web-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.web-check-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.web-check-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Callout Card on Right */
.web-callout-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.web-callout-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: -40px;
  right: -40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(20px);
}

.web-callout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(31, 79, 183, 0.3);
}

.web-callout-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-callout-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.web-callout-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Dark Mode Overrides for Web Development elements */
body.dark .web-service-card,
body.dark .web-tech-card,
body.dark .web-hero-showcase,
body.dark .web-showcase-item,
body.dark .web-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

body.dark .web-badge {
  color: var(--ink);
}

body.dark .web-showcase-item:hover,
body.dark .web-badge:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

body.dark .web-callout-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(59, 130, 246, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   TECH SHOWCASE (SERVICES PAGE)
   ============================================================ */
.tech-stack-section {
  padding: 80px 0;
  background: transparent;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.tech-stack-copy {
  max-width: 480px;
}

.tech-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-tint);
  border: 1px solid rgba(49, 114, 209, 0.12);
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.tech-eyebrow-pill .star-icon {
  font-size: 12px;
  color: var(--accent);
}

.tech-stack-copy h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ink);
}

.tech-stack-copy p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}

.btn-primary-tech {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  transition: var(--t);
  box-shadow: var(--shadow-md);
}

.btn-primary-tech:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(49, 114, 209, 0.25);
}

body.dark .btn-primary-tech {
  background: #ffffff;
  color: var(--bg-dark);
}

body.dark .btn-primary-tech:hover {
  background: var(--primary);
  color: #ffffff;
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.tech-showcase-wrapper {
  width: 100%;
  position: relative;
}

.tech-showcase-wrapper::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -8%;
  right: -8%;
  bottom: -8%;
  background: radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.35), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.38), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(245, 158, 11, 0.35), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.35), transparent 50%);
  filter: blur(44px);
  border-radius: 40px;
  z-index: -1;
  pointer-events: none;
  animation: slow-spin 28s linear infinite;
}

.tech-glass-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px rgba(15, 23, 41, 0.04);
}

body.dark .tech-glass-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.tech-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.tech-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Float animations on columns */
.tech-column.col-1,
.tech-column.col-3 {
  animation: float-col-down 6s ease-in-out infinite;
}

.tech-column.col-2,
.tech-column.col-4 {
  animation: float-col-up 5.2s ease-in-out infinite;
}

/* Keyframes for column movement */
@keyframes float-col-down {
  0% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(12px);
  }

  100% {
    transform: translateY(-12px);
  }
}

@keyframes float-col-up {
  0% {
    transform: translateY(12px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(12px);
  }
}

/* Hover over container stops column animation for precise clicking */
.tech-logos-grid:hover .tech-column {
  animation-play-state: paused;
}

.tech-logo-card {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 23, 41, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.tech-logo-card:hover {
  transform: scale(1.12) translateY(-4px);
  border-color: rgba(49, 114, 209, 0.45);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(49, 114, 209, 0.22), 0 0 15px rgba(116, 167, 255, 0.18);
  z-index: 10;
}

.tech-icon-svg {
  width: 32px;
  height: 32px;
}

body.dark .tech-logo-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark .tech-logo-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Responsive Overrides */
@media (max-width: 900px) {

  .web-hero-grid,
  .web-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .web-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .tech-stack-copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tech-logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .web-services-grid {
    grid-template-columns: 1fr;
  }

  .web-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-checklist {
    grid-template-columns: 1fr;
  }

  .web-showcase-grid {
    grid-template-columns: 1fr;
  }

  .tech-logo-card {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .tech-icon-svg {
    width: 26px;
    height: 26px;
  }

  .tech-glass-card {
    padding: 16px;
    border-radius: 20px;
  }

  .tech-logos-grid {
    gap: 10px;
  }

  .tech-column {
    gap: 10px;
  }
}

/* ============================================================
   TECH ORBIT ANIMATION SYSTEM
   ============================================================ */
.tech-orbit-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 10px 0;
}

.tech-orbit-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
}

.orbit-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(49, 114, 209, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark .orbit-circle {
  border-color: rgba(255, 255, 255, 0.28);
}

.orbit-outer {
  width: 330px;
  height: 330px;
  animation: orbit-rotate-clockwise 32s linear infinite;
}

.orbit-inner {
  width: 210px;
  height: 210px;
  animation: orbit-rotate-counter 24s linear infinite;
}

.orbit-core {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--primary);
  box-shadow: 0 12px 36px rgba(49, 114, 209, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--primary);
}

body.dark .orbit-core {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.orbit-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 41, 0.06);
  box-shadow: 0 4px 12px rgba(15, 23, 41, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

body.dark .orbit-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.orbit-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.orbit-icon:hover {
  transform: scale(1.18);
  border-color: var(--primary);
  box-shadow: 0 8px 20px var(--primary-glow);
  z-index: 20;
}

/* Stop animations on hover */
.tech-orbit-container:hover .orbit-outer,
.tech-orbit-container:hover .orbit-inner,
.tech-orbit-container:hover .orbit-icon svg {
  animation-play-state: paused;
}

/* Outer orbit icon offsets */
.orbit-outer .orbit-icon:nth-child(1) {
  top: 0;
  left: 50%;
  margin-left: -22px;
  margin-top: -22px;
}

.orbit-outer .orbit-icon:nth-child(2) {
  top: 25%;
  left: 95%;
  margin-left: -22px;
  margin-top: -22px;
}

.orbit-outer .orbit-icon:nth-child(3) {
  top: 80%;
  left: 78%;
  margin-left: -22px;
  margin-top: -22px;
}

.orbit-outer .orbit-icon:nth-child(4) {
  top: 80%;
  left: 22%;
  margin-left: -22px;
  margin-top: -22px;
}

.orbit-outer .orbit-icon:nth-child(5) {
  top: 25%;
  left: 5%;
  margin-left: -22px;
  margin-top: -22px;
}

/* Inner orbit icon offsets */
.orbit-inner .orbit-icon:nth-child(1) {
  top: 0;
  left: 50%;
  margin-left: -22px;
  margin-top: -22px;
}

.orbit-inner .orbit-icon:nth-child(2) {
  top: 75%;
  left: 88%;
  margin-left: -22px;
  margin-top: -22px;
}

.orbit-inner .orbit-icon:nth-child(3) {
  top: 75%;
  left: 12%;
  margin-left: -22px;
  margin-top: -22px;
}

/* Keep icons upright during rotation */
.orbit-outer .orbit-icon svg {
  animation: orbit-rotate-counter 32s linear infinite;
}

.orbit-inner .orbit-icon svg {
  animation: orbit-rotate-clockwise 24s linear infinite;
}

@keyframes orbit-rotate-clockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-rotate-counter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 900px) {
  .tech-orbit-container {
    transform: scale(0.85);
  }
}

@media (max-width: 600px) {
  .tech-orbit-container {
    transform: scale(0.7);
    margin: -30px 0;
  }
}

/* -------- FLOATING WHATSAPP BUTTON -------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  z-index: 9999;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease;
  animation: float-pulse-whatsapp 3s infinite ease-in-out;
}

.whatsapp-btn:hover {
  animation: none;
  transform: scale(1.1) translateY(-2px);
  background-color: #20ba5a;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.phone-btn {
  position: fixed;
  bottom: 92px;
  right: 24px;
  background-color: var(--primary);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  z-index: 9999;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease;
  animation: float-pulse-phone 3s infinite ease-in-out 1.5s;
  /* Offset pulse by 1.5s */
}

.phone-btn:hover {
  animation: none;
  transform: scale(1.1) translateY(-2px);
  background-color: var(--primary-dark);
}

.phone-btn svg {
  width: 22px;
  height: 22px;
}

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

.team-card {
  text-align: center;
}

.team-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: left;
  padding: 0 8px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Keyframes for Floating Button Animations */
@keyframes float-pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(37, 211, 102, 0.22);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  }
}

@keyframes float-pulse-phone {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(37, 99, 235, 0.22);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  }
}