@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;600;700&display=swap');

:root {
  --navy-deep: #050c24;
  --navy-main: #07112f;
  --navy-light: #0d1e4c;
  --cyan-glow: #20d7ff;
  --blue-vibrant: #1769ff;
  --blue-accent: #2978ff;
  --purple-accent: #7048ff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fbff;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --shadow-3d: 0 16px 40px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container-max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Floating Back to Top Button (Fixed Viewport) */
.back-to-top-btn {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #20d7ff, #1769ff) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 10px 30px rgba(23, 105, 255, 0.45) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(15px) scale(0.85) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 999999 !important;
}

.back-to-top-btn.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.back-to-top-btn:hover {
  transform: translateY(-5px) scale(1.12) !important;
  box-shadow: 0 16px 45px rgba(32, 215, 255, 0.85) !important;
  background: linear-gradient(135deg, #ffffff, #20d7ff) !important;
  color: #07112f !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.container {
  width: min(var(--container-max), calc(100% - 40px));
  margin: 0 auto;
}

/* ==================== TOPBAR ==================== */
.topbar {
  background: #050c24;
  color: #cdd7f6;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-info i {
  color: var(--cyan-glow);
  font-size: 13px;
}

.topbar-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar-socials label {
  font-size: 12px;
  color: #94a3b8;
  margin-right: 4px;
}

.topbar-socials a {
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-socials a:hover {
  color: var(--cyan-glow);
  background: rgba(32, 215, 255, 0.15);
  transform: translateY(-2px);
}

/* ==================== HEADER SEARCH FORM ==================== */
.header-search-form {
  display: inline-block;
}

.search-form-top {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  padding: 4px 6px 4px 16px;
  transition: all 0.3s ease;
}

.search-form-top:focus-within {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 12px rgba(32, 215, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
}

.search-field {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 13px;
  width: 160px;
  font-family: inherit;
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-submit {
  background: linear-gradient(135deg, var(--cyan-glow), var(--blue-vibrant));
  border: none;
  outline: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.search-submit:hover {
  transform: scale(1.08);
}

/* ==================== NAVBAR ==================== */
#webvire-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
}

.nav-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  background: rgba(7, 17, 47, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(32, 215, 255, 0.2));
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan-glow), var(--blue-vibrant));
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(32, 215, 255, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan-glow);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan-glow);
  border-radius: 2px;
}

/* Header Sound Toggle Button */
.sound-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.sound-toggle-btn:hover,
.sound-toggle-btn.active {
  color: var(--cyan-glow);
  background: rgba(32, 215, 255, 0.15);
  border-color: rgba(32, 215, 255, 0.4);
  box-shadow: 0 0 14px rgba(32, 215, 255, 0.3);
}

.sound-toggle-drawer-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sound-toggle-drawer-btn:hover,
.sound-toggle-drawer-btn.active {
  background: rgba(32, 215, 255, 0.15);
  border-color: rgba(32, 215, 255, 0.4);
  color: var(--cyan-glow);
}

.sound-status-badge {
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.sound-toggle-drawer-btn.active .sound-status-badge {
  background: var(--cyan-glow);
  color: #04091e;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 30, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--navy-main);
  z-index: 10001;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.close-drawer-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: grid;
  place-items: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  overflow-x: visible;
  max-height: calc(100vh - 120px);
  padding-right: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-nav-links::-webkit-scrollbar {
    display: none;
    width: 0;
}

.mobile-nav-links a {
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  background: rgba(32, 215, 255, 0.12);
  color: var(--cyan-glow);
}

/* ==================== BUTTONS & BADGES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 50px;
  padding: 13px 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(90deg, var(--cyan-glow), var(--blue-accent));
  color: #04091e;
  box-shadow: 0 10px 25px rgba(32, 215, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(32, 215, 255, 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-video {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  gap: 12px;
}

.btn-video .play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-glow), var(--blue-vibrant));
  display: grid;
  place-items: center;
  color: #04091e;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(32, 215, 255, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-video:hover .play-icon {
  transform: scale(1.1);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 215, 255, 0.12);
  border: 1px solid rgba(32, 215, 255, 0.25);
  color: #0070f3;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero .pill-badge {
  background: rgba(32, 215, 255, 0.15);
  color: var(--cyan-glow);
  border-color: rgba(32, 215, 255, 0.3);
}

.pill-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 78% 35%, #143e96 0%, #091743 34%, #050b22 70%);
  color: #ffffff;
  padding: 40px 0 110px;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(32, 215, 255, 0.22) 0%, rgba(112, 72, 255, 0.12) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff, var(--cyan-glow), #9d7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #c8d4f5;
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 30px;
}

.actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan-glow);
  line-height: 1;
}

.stat-item span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/* ==================== PURE CSS/HTML 3D HERO CANVAS ==================== */
.hero-art-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-3d-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 460px;
  transform-style: preserve-3d;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3D Circular Pedestal Stage */
.stage-3d {
  position: absolute;
  bottom: 20px;
  width: 440px;
  height: 220px;
  transform-style: preserve-3d;
  transform: rotateX(65deg) translateZ(-60px);
}

.stage-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 215, 255, 0.35) 0%, rgba(23, 105, 255, 0.15) 50%, transparent 75%);
  box-shadow: 0 0 50px rgba(32, 215, 255, 0.4), inset 0 0 30px rgba(32, 215, 255, 0.6);
  border: 2px solid rgba(32, 215, 255, 0.6);
  animation: stagePulse 4s ease-in-out infinite alternate;
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(32, 215, 255, 0.5);
  animation: rotateRing 20s linear infinite;
}

.stage-ring.ring-1 {
  inset: -15px;
}

.stage-ring.ring-2 {
  inset: 20px;
  border-style: solid;
  border-color: rgba(112, 72, 255, 0.4);
  animation-duration: 15s;
  animation-direction: reverse;
}

.stage-ring.ring-3 {
  inset: 50px;
  border-color: rgba(32, 215, 255, 0.8);
}

@keyframes stagePulse {
  0% {
    box-shadow: 0 0 40px rgba(32, 215, 255, 0.3), inset 0 0 20px rgba(32, 215, 255, 0.4);
  }

  100% {
    box-shadow: 0 0 70px rgba(32, 215, 255, 0.6), inset 0 0 40px rgba(32, 215, 255, 0.8);
  }
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 3D Pure HTML/CSS Laptop Component */
.laptop-3d {
  position: relative;
  width: 360px;
  height: 250px;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(8deg) translateZ(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 5;
}

.laptop-3d:hover {
  transform: rotateY(-6deg) rotateX(4deg) translateZ(50px) scale(1.02);
}

/* Laptop Screen / Lid */
.laptop-screen-frame {
  width: 360px;
  height: 220px;
  background: #09132e;
  border: 4px solid #1e294b;
  border-radius: 16px 16px 4px 4px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(32, 215, 255, 0.3);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.laptop-screen-inner {
  width: 100%;
  height: 100%;
  background: #070e24;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(32, 215, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.window-bar .dot.red {
  background: #ff5f56;
}

.window-bar .dot.yellow {
  background: #ffbd2e;
}

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

.window-title {
  font-size: 10px;
  color: #94a3b8;
  margin-left: 8px;
  font-family: monospace;
}

.code-viewport {
  font-family: 'Fira Code', monospace, sans-serif;
  font-size: 11px;
  line-height: 1.6;
  color: #e2e8f0;
  margin-top: 6px;
}

.code-line {
  white-space: nowrap;
}

.code-line.tab {
  padding-left: 14px;
}

.c-keyword {
  color: #f472b6;
  font-weight: 700;
}

.c-obj {
  color: #38bdf8;
}

.c-str {
  color: #34d399;
}

.c-var {
  color: #fbbf24;
}

.c-func {
  color: #818cf8;
}

.c-attr {
  color: #a78bfa;
}

.c-status {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid rgba(34, 197, 94, 0.4);
  transition: all 0.35s ease;
}

/* Screen Live Chart Widget */
.screen-chart-box {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 35px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan-glow), var(--blue-vibrant));
  border-radius: 4px 4px 0 0;
  animation: barPulse 2s ease-in-out infinite alternate;
}

.chart-bar.b1 {
  height: 40%;
  animation-delay: 0.1s;
}

.chart-bar.b2 {
  height: 75%;
  animation-delay: 0.3s;
}

.chart-bar.b3 {
  height: 55%;
  animation-delay: 0.5s;
}

.chart-bar.b4 {
  height: 95%;
  animation-delay: 0.2s;
}

.chart-bar.b5 {
  height: 65%;
  animation-delay: 0.4s;
}

@keyframes barPulse {
  0% {
    transform: scaleY(0.85);
  }

  100% {
    transform: scaleY(1.05);
  }
}

/* Laptop Base / Keyboard */
.laptop-base-frame {
  width: 380px;
  height: 18px;
  background: linear-gradient(180deg, #1e294b, #0f172a);
  border-radius: 2px 2px 14px 14px;
  margin-left: -10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  border-top: 2px solid var(--cyan-glow);
}

.trackpad {
  width: 60px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 4px auto 0;
}

/* 3D Dual-Ring Orbit Floating Badges */
.floating-badge-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -90px;
  margin-top: -24px;
  background: rgba(11, 22, 56, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(32, 215, 255, 0.35);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(32, 215, 255, 0.2);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.floating-badge-3d:hover {
  border-color: var(--cyan-glow);
  box-shadow: 0 20px 45px rgba(32, 215, 255, 0.6);
  background: rgba(15, 34, 88, 0.95);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-glow), var(--blue-vibrant));
  display: grid;
  place-items: center;
  color: #04091e;
  font-size: 15px;
  box-shadow: 0 0 14px rgba(32, 215, 255, 0.5);
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.badge-text span {
  font-size: 10px;
  color: var(--cyan-glow);
  font-weight: 600;
}

/* Floating Code Symbols Outer Orbit Ring */
.code-float {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  color: var(--cyan-glow);
  font-family: monospace;
  font-weight: 800;
  font-size: 24px;
  text-shadow: 0 0 15px var(--cyan-glow);
  pointer-events: none;
  opacity: 0.85;
}

.sym-1 {
  color: #38bdf8;
}

.sym-2 {
  color: #a78bfa;
  font-size: 26px;
}

.sym-3 {
  color: #f472b6;
}

.sym-4 {
  color: #34d399;
  font-size: 24px;
}

/* ==================== VIBRANT INDIVIDUAL PASTEL COLOR PALETTE ==================== */
/* Pastel Blue */
.icon-blue {
  background: #eef7ff !important;
  color: #0284c7 !important;
}

.service-card-ref:hover .icon-blue,
.industry-pill:hover .icon-blue,
.check-item:hover .icon-blue,
.process-card:hover .icon-blue {
  background: linear-gradient(135deg, #38bdf8, #0284c7) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.45) !important;
}

/* Pastel Mint Green */
.icon-mint {
  background: #e6fffa !important;
  color: #0d9488 !important;
}

.service-card-ref:hover .icon-mint,
.industry-pill:hover .icon-mint,
.check-item:hover .icon-mint,
.process-card:hover .icon-mint {
  background: linear-gradient(135deg, #2dd4bf, #0d9488) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.45) !important;
}

/* Pastel Purple */
.icon-purple {
  background: #f3e8ff !important;
  color: #9333ea !important;
}

.service-card-ref:hover .icon-purple,
.industry-pill:hover .icon-purple,
.check-item:hover .icon-purple,
.process-card:hover .icon-purple {
  background: linear-gradient(135deg, #c084fc, #9333ea) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.45) !important;
}

/* Pastel Rose Pink */
.icon-rose {
  background: #ffe4e6 !important;
  color: #e11d48 !important;
}

.service-card-ref:hover .icon-rose,
.industry-pill:hover .icon-rose,
.check-item:hover .icon-rose,
.process-card:hover .icon-rose {
  background: linear-gradient(135deg, #fb7185, #e11d48) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.45) !important;
}

/* Pastel Sky Blue */
.icon-sky {
  background: #e0f2fe !important;
  color: #2563eb !important;
}

.service-card-ref:hover .icon-sky,
.industry-pill:hover .icon-sky,
.check-item:hover .icon-sky,
.process-card:hover .icon-sky {
  background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.45) !important;
}

/* Pastel Warm Orange */
.icon-orange {
  background: #ffedd5 !important;
  color: #ea580c !important;
}

.service-card-ref:hover .icon-orange,
.industry-pill:hover .icon-orange,
.check-item:hover .icon-orange,
.process-card:hover .icon-orange {
  background: linear-gradient(135deg, #fb923c, #ea580c) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.45) !important;
}

/* Pastel Indigo */
.icon-indigo {
  background: #e0e7ff !important;
  color: #4f46e5 !important;
}

.service-card-ref:hover .icon-indigo,
.industry-pill:hover .icon-indigo,
.check-item:hover .icon-indigo,
.process-card:hover .icon-indigo {
  background: linear-gradient(135deg, #818cf8, #4f46e5) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.45) !important;
}

/* Pastel Amber Gold */
.icon-amber {
  background: #fff8e1 !important;
  color: #d97706 !important;
}

.service-card-ref:hover .icon-amber,
.industry-pill:hover .icon-amber,
.check-item:hover .icon-amber,
.process-card:hover .icon-amber {
  background: linear-gradient(135deg, #fbbf24, #d97706) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.45) !important;
}

/* Pastel Violet */
.icon-violet {
  background: #ede7f6 !important;
  color: #7c3aed !important;
}

.service-card-ref:hover .icon-violet,
.industry-pill:hover .icon-violet,
.check-item:hover .icon-violet,
.process-card:hover .icon-violet {
  background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.45) !important;
}

/* Pastel Cyan */
.icon-cyan {
  background: #ecfeff !important;
  color: #0891b2 !important;
}

.service-card-ref:hover .icon-cyan,
.industry-pill:hover .icon-cyan,
.check-item:hover .icon-cyan,
.process-card:hover .icon-cyan {
  background: linear-gradient(135deg, #22d3ee, #0891b2) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.45) !important;
}

/* ==================== FEATURE STRIP ==================== */
.feature-strip {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.features-grid {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 18px;
  border: 1px solid #e2e8f0;
}

.feature-card {
  padding: 12px 24px;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== CORE SERVICES (EXACT SPACING FIX) ==================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  padding: 95px 0 110px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-main);
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 12px;
}

.services-grid-ref {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.service-card-ref {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 16px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-ref:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 112, 243, 0.12);
  border-color: rgba(32, 215, 255, 0.6);
}

.service-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  margin: 0 auto 16px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease, box-shadow 0.45s ease;
}

.service-card-ref:hover .service-icon-circle {
  transform: scale(1.10);
}

.service-card-ref h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card-ref p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.service-card-ref .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-vibrant);
  font-weight: 700;
  font-size: 12px;
  margin-top: auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-ref:hover .card-link {
  gap: 10px;
  color: var(--purple-accent);
}

/* ==================== TRUSTED PARTNER (EXACT SPACING & REFERENCE MATCH) ==================== */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-img-wrapper {
  position: relative;
  background: linear-gradient(135deg, #eef5ff, #e0f2fe);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow-3d);
}

.partner-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-img-wrapper:hover img {
  transform: scale(1.02);
}

/* Floating Glassmorphic Growth Together Card */
.floating-growth-card {
  position: absolute;
  top: 24px;
  right: -20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  z-index: 5;
  animation: floatGentle 5s ease-in-out infinite alternate;
}

.growth-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-vibrant);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.growth-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 30px;
}

.gb {
  width: 8px;
  background: linear-gradient(180deg, var(--cyan-glow), var(--blue-vibrant));
  border-radius: 3px 3px 0 0;
  animation: barPulse 2s ease-in-out infinite alternate;
}

.gb.b1 {
  height: 35%;
}

.gb.b2 {
  height: 55%;
  animation-delay: 0.2s;
}

.gb.b3 {
  height: 75%;
  animation-delay: 0.4s;
}

.gb.b4 {
  height: 60%;
  animation-delay: 0.1s;
}

.gb.b5 {
  height: 95%;
  animation-delay: 0.3s;
}

/* Partner Checklist Grid */
.partner-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 38px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.check-item:hover {
  transform: translateX(4px);
}

.check-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease, box-shadow 0.45s ease;
}

.check-item:hover .check-icon-circle {
  transform: scale(1.12);
}

/* ==================== WORK PROCESS (REFERENCE MATCH) ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 24px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 112, 243, 0.12);
  border-color: rgba(32, 215, 255, 0.6);
}

.step-num-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  margin: 0 auto 20px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease, box-shadow 0.45s ease;
}

.process-card:hover .step-num-badge {
  transform: scale(1.10);
}

.process-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== INDUSTRIES WE SERVE ==================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-pill {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--shadow-3d);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-pill:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
}

.industry-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 19px;
  margin: 0 auto 10px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-pill span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-main);
  display: block;
}

/* ==================== PORTFOLIO SHOWCASE (REFERENCE MATCH) ==================== */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

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

.project-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 112, 243, 0.12);
  border-color: rgba(32, 215, 255, 0.6);
}

.project-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #f8fbff;
}

.project-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img-box img {
  transform: scale(1.06);
}

.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  align-self: flex-start;
  transition: all 0.35s ease;
}

.project-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.project-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.project-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-vibrant);
  font-weight: 700;
  font-size: 13px;
  margin-top: auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .card-link {
  gap: 12px;
  color: var(--purple-accent);
}

/* Portfolio Filters */
.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue-vibrant);
  color: #ffffff;
  border-color: var(--blue-vibrant);
}

/* ==================== TESTIMONIAL SLIDER CAROUSEL (REFERENCE MATCH) ==================== */
.testimonial-slider-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px 40px 38px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 112, 243, 0.10);
  border-color: rgba(32, 215, 255, 0.6);
}

.stars {
  color: #ffb800;
  font-size: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.quote-text {
  font-size: 19px;
  line-height: 1.65;
  color: #0f172a;
  font-weight: 600;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 28px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--navy-main);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--blue-vibrant);
  color: #ffffff;
  border-color: var(--blue-vibrant);
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(23, 105, 255, 0.35);
}

.client-avatar-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(32, 215, 255, 0.4);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card:hover .client-avatar-wrapper {
  transform: scale(1.10);
}

.client-info b {
  font-size: 17px;
  font-weight: 800;
  display: block;
  color: #0f172a;
}

.client-info span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

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

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dots .dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--blue-vibrant);
  box-shadow: 0 0 10px rgba(23, 105, 255, 0.4);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: radial-gradient(circle at 80% 50%, #1b3d99 0%, #07112f 50%, #04091e 90%);
  border-radius: 28px;
  padding: 55px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-banner h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 26px;
}

.cta-img-box {
  display: flex;
  justify-content: center;
}

.cta-img-box img {
  max-height: 240px;
  border-radius: var(--radius-md);
}

/* ==================== SUBPAGE HERO ==================== */
.subpage-hero {
  background: radial-gradient(circle at 70% 30%, #112a6d 0%, #07112f 50%, #04091e 80%);
  color: #ffffff;
  padding: 80px 0 90px;
  text-align: center;
}

.subpage-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.subpage-hero p {
  color: #cbd5e1;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

/* ==================== FORMS & CONTACT ==================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
}

.info-box,
.form-box {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-3d);
}

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

.info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(32, 215, 255, 0.12);
  color: var(--blue-vibrant);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.35s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-vibrant);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy-deep);
  color: #94a3b8;
  padding: 65px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 9px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan-glow);
}

.copyright-bar {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ==================== VIDEO MODAL ==================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 30, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  width: min(850px, calc(100% - 40px));
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.close-video-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* Header Quote Button Base & Mobile Sizing */
.nav-cta-btn {
  white-space: nowrap !important;
  padding: 8px 16px !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
  .services-grid-ref {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {

  .hero-grid,
  .partner-grid,
  .contact-layout,
  .cta-banner {
    grid-template-columns: 1fr;
  }

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

  .hero-art-wrapper {
    min-height: 400px;
  }

  .stage-3d {
    width: 360px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  .nav-header .nav-inner {
    gap: 8px !important;
  }

  .nav-cta-btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  .sound-toggle-btn {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .hamburger-btn {
    display: block !important;
  }

  .topbar {
    display: none !important;
  }

  /* Hero Section Mobile Formatting */
  .hero {
    padding: 80px 0 40px 0 !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-grid>div {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 4px !important;
  }

  .hero .pill-badge {
    margin: 0 auto 14px auto !important;
    display: inline-flex !important;
    font-size: 11px !important;
    padding: 5px 12px !important;
  }

  .hero h1 {
    font-size: 26px !important;
    line-height: 1.28 !important;
    margin-bottom: 14px !important;
    text-align: center !important;
    word-break: break-word !important;
  }

  .hero p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    margin: 0 auto 20px auto !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
  }

  .actions {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto 20px auto !important;
  }

  .actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 16px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: 20px !important;
    justify-content: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 18px !important;
  }

  .stat-item h3 {
    font-size: 18px !important;
  }

  .stat-item p {
    font-size: 10.5px !important;
  }

  /* 3D Canvas Responsive Scaling */
  #hero-3d-scene {
    height: 320px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin: -10px auto 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .stage-3d {
    width: 290px !important;
    height: 145px !important;
    transform: scale(0.72) !important;
  }

  .laptop-3d {
    width: 280px !important;
  }

  .screen-3d {
    height: 165px !important;
    padding: 8px !important;
  }

  .screen-header-3d {
    margin-bottom: 6px !important;
  }

  .code-body-3d pre code {
    font-size: 9px !important;
  }

  .floating-badge-3d {
    padding: 4px 8px !important;
    margin-left: 0 !important;
  }

  .badge-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 9px !important;
  }

  .badge-text strong {
    font-size: 9px !important;
  }

  .badge-text span {
    font-size: 7.5px !important;
  }

  .code-float {
    font-size: 11px !important;
  }

  /* Section Headings & Spacing Mobile */
  .section {
    padding: 45px 0 !important;
  }

  .section-head {
    margin-bottom: 28px !important;
    text-align: center !important;
  }

  .section-head h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .section-head p {
    font-size: 13.5px !important;
  }

  /* Grid Layouts Mobile Adaptation */
  .services-grid-ref,
  .portfolio-grid,
  .process-grid,
  .features-grid,
  .footer-grid,
  .timeline-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .timeline-card {
    padding: 22px 18px !important;
  }

  .tech-matrix-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  .tech-item-card {
    padding: 16px 10px !important;
  }

  .tech-item-card i {
    font-size: 24px !important;
    margin-bottom: 6px !important;
  }

  .tech-item-card span {
    font-size: 11.5px !important;
  }

  /* Partner Section Mobile Fixes */
  .partner-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .partner-img-wrapper {
    overflow: hidden !important;
    padding: 10px !important;
    border-radius: 20px !important;
  }

  .floating-growth-card {
    top: 12px !important;
    right: 12px !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
  }

  .growth-title {
    font-size: 9.5px !important;
    margin-bottom: 4px !important;
  }

  .growth-chart-bars {
    height: 22px !important;
    gap: 4px !important;
  }

  .gb {
    width: 6px !important;
  }

  .partner-checklist {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 10px !important;
    margin: 20px 0 24px 0 !important;
  }

  .check-item {
    gap: 8px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .check-icon-circle {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }

  /* Cost Estimator Widget Mobile Optimization (Services Page) */
  .estimator-box {
    grid-template-columns: 1fr !important;
    padding: 22px 16px !important;
    gap: 24px !important;
    border-radius: 20px !important;
  }

  .estimator-options-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .estimator-option {
    padding: 12px 14px !important;
    font-size: 12.5px !important;
  }

  .estimator-result-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }

  .estimator-total-val {
    font-size: 32px !important;
    margin: 8px 0 14px !important;
  }

  /* Contact Us Page Mobile Optimization */
  .subpage-hero {
    padding: 75px 0 35px 0 !important;
    text-align: center !important;
  }

  .subpage-hero h1 {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
  }

  .subpage-hero p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    padding: 0 4px !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .info-box,
  .form-box {
    padding: 22px 16px !important;
    border-radius: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .info-box h2 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .info-box p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
  }

  .info-item {
    gap: 12px !important;
    margin-bottom: 18px !important;
  }

  .info-item b {
    font-size: 14px !important;
  }

  .info-item p {
    font-size: 12.5px !important;
    word-break: break-word !important;
  }

  .form-box h3 {
    font-size: 20px !important;
    margin-bottom: 16px !important;
    word-break: break-word !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .form-group label {
    font-size: 12px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px !important;
    font-size: 13px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .faq-question {
    padding: 18px 20px !important;
    font-size: 14.5px !important;
  }

  .faq-answer {
    padding: 0 20px 18px !important;
    font-size: 13px !important;
  }

  /* Portfolio Section Mobile Fixes */
  .portfolio-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }

  .portfolio-header .btn {
    width: 100% !important;
    max-width: 240px !important;
    justify-content: center !important;
  }

  .feature-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--card-border) !important;
    padding: 18px 14px !important;
  }

  .feature-card:last-child {
    border-bottom: 0 !important;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .cta-banner {
    padding: 24px 16px !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 16px !important;
    border-radius: 20px !important;
  }

  .cta-banner .pill-badge {
    margin: 0 auto 10px auto !important;
    font-size: 10.5px !important;
    padding: 4px 12px !important;
  }

  .cta-banner h2 {
    font-size: 20px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .cta-banner p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .cta-banner div>div[style*="display: flex"] {
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .cta-banner .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    font-size: 12.5px !important;
  }

  .cta-img-box {
    margin-top: 6px !important;
  }

  .cta-img-box img {
    max-width: 130px !important;
    max-height: 130px !important;
    margin: 0 auto !important;
    border-radius: 14px !important;
  }

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

  .testimonial-slider-wrapper {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .testimonial-card {
    padding: 24px 18px !important;
  }

  .quote-text {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .slider-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .partner-checklist {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .check-item {
    font-size: 13.5px !important;
  }

  .tech-matrix-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ==================== ADVANCED SUBPAGE COMPONENTS ==================== */

/* FAQ Accordion Styling (Contact Us) */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.active {
  border-color: rgba(32, 215, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 112, 243, 0.10);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: var(--blue-vibrant);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* Cost Estimator Widget (Services Page) */
.estimator-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.estimator-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.estimator-option {
  background: #f8fbff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.estimator-option.selected {
  background: #eef5ff;
  border-color: var(--blue-vibrant);
  color: var(--blue-vibrant);
  box-shadow: 0 4px 16px rgba(23, 105, 255, 0.15);
}

.estimator-result-card {
  background: linear-gradient(135deg, #07112f, #0d1e4c);
  border-radius: 20px;
  padding: 34px 28px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 14px 35px rgba(7, 17, 47, 0.4);
}

.estimator-total-val {
  font-size: 42px;
  font-weight: 800;
  color: var(--cyan-glow);
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
}

/* Interactive Timeline (About Us Page) */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 30px;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 112, 243, 0.12);
  border-color: rgba(32, 215, 255, 0.6);
}

.timeline-year-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan-glow), var(--blue-vibrant));
  color: #04091e;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ============================================================
   BRAND LOGO MARQUEE SLIDER — LIGHT & FRESH THEME
   ============================================================ */
.brand-marquee-section {
  padding: 50px 0;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.brand-marquee-section::before,
.brand-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}

.brand-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #f1f5f9 0%, rgba(241, 245, 249, 0) 100%);
}

.brand-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #f1f5f9 0%, rgba(241, 245, 249, 0) 100%);
}

.brand-marquee-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.brand-marquee-header .pill-badge {
  background: rgba(23, 105, 255, 0.08);
  border: 1px solid rgba(23, 105, 255, 0.2);
  color: #1769ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.brand-marquee-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.brand-marquee-track-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  padding: 12px 0;
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: scrollBrandMarquee 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
  padding: 8px 0;
}

.brand-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollBrandMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-card-item {
  flex: 0 0 auto;
  width: 200px;
  height: 84px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.brand-card-item:hover {
  background: #ffffff;
  border-color: #1769ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(23, 105, 255, 0.15);
}

.brand-card-item img {
  max-width: 145px;
  max-height: 46px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.3s ease;
}

.brand-card-item:hover img {
  transform: scale(1.08);
}



/* ==================== DESKTOP DROPDOWN MENU ==================== */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(7, 17, 47, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(32, 215, 255, 0.25);
  border-radius: 16px;
  margin-top: 2px;
  padding: 12px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1000;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(32, 215, 255, 0.12);
  color: #20d7ff;
  padding-left: 24px;
}

.dropdown-arrow {
  font-size: 11px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-wrapper:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ==================== MOBILE SERVICES DROPDOWN ==================== */
.mobile-services-dropdown {
  width: 100%;
}

.mobile-dropdown-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
  background: rgba(32, 215, 255, 0.1);
  color: #20d7ff;
}

.mobile-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.mobile-dropdown-menu.active {
  max-height: 500px;
  opacity: 1;
}

.mobile-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 36px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 8px;
}

.mobile-dropdown-menu a:hover {
  background: rgba(32, 215, 255, 0.12);
  color: #20d7ff;
  padding-left: 40px;
}

.mobile-dropdown-menu a i {
  font-size: 14px;
  color: #20d7ff;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    display: none !important;
  }

  .mobile-dropdown-toggle {
    padding: 10px 12px;
  }

  .mobile-dropdown-menu a {
    padding: 11px 12px 11px 32px;
    font-size: 13px;
    gap: 10px;
  }
}



/* =========================
   WhatsApp Floating Button
========================= */

.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border: 3px solid #fff;
    border-radius: 50%;

    font-size: 25px;
    line-height: 1;

    text-decoration: none;

    z-index: 9999;

    box-shadow: rgba(37, 211, 102, 0.35) 0px 10px 30px !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

/* Hover */
.whatsapp-float:hover {
    color: #fff;
    background: #20bd5a;

    transform: translateY(-3px) scale(1.05);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.20),
        0 4px 10px rgba(37, 211, 102, 0.30);
}

/* Icon */
.whatsapp-float i {
    display: block;
}


/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .whatsapp-float {
        left: 14px;
        bottom: 20px;

        width: 46px;
        height: 46px;

        font-size: 23px;
    }

}

/* =========================
   Founder Message Section
========================= */

.founder-message-section {
  position: relative;
  overflow: hidden;
}

.founder-message-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
  padding: 20px;
}

.founder-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--card-bg, #fff);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.founder-image-card img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.founder-experience-card {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 220px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

.founder-experience-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.founder-experience-card span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.founder-content h2 {
  margin: 18px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.founder-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-content .founder-intro {
  font-size: 18px;
  color: var(--text);
}

.founder-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.founder-signature strong {
  display: block;
  font-size: 17px;
}

.founder-signature span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
}

.founder-quote {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 18px;
}

@media (max-width: 900px) {
  .founder-message-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-card img {
    height: 420px;
  }

  .founder-experience-card {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .founder-image-wrapper {
    padding: 10px;
  }

  .founder-image-card img {
    height: 360px;
  }

  .founder-experience-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -5px;
  }
}

