/* ============================================================
   LoopStack Technologies — Main Stylesheet
   Primary Blue: #0b6eff | Dark Navy: #1a2b4a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  --primary: #0b6eff;
  --primary-dark: #0051d4;
  --primary-light: #4d9aff;
  --primary-xlight: #e8f0ff;
  --secondary: #1a2b4a;
  --secondary-dark: #0d1b2e;
  --secondary-mid: #233558;
  --accent: #00b4ff;
  --accent-dark: #008fd4;
  --white: #ffffff;
  --off-white: #f4f8ff;
  --light: #edf2ff;
  --light-gray: #dde5f5;
  --gray: #6b7a99;
  --dark-gray: #3d4e6b;
  --dark: #0d1b2e;
  --success: #00c87a;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-xs: 0 2px 10px rgba(11, 110, 255, 0.08);
  --shadow-sm: 0 5px 20px rgba(11, 110, 255, 0.12);
  --shadow-md: 0 10px 40px rgba(11, 110, 255, 0.18);
  --shadow-lg: 0 20px 60px rgba(11, 110, 255, 0.22);
  --shadow-dark: 0 10px 40px rgba(13, 27, 46, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--secondary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.05rem;
}

p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

/* ==================== SECTION LABELS / TITLES ==================== */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-label .bar {
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-label.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sec-label.light .bar {
  background: var(--accent);
}

.sec-title {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 18px;
  line-height: 1.2;
}

.sec-title span {
  color: var(--primary);
}

.sec-title.light {
  color: #fff;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.85;
}

.sec-desc.light {
  color: rgba(255, 255, 255, 0.72);
}

.sec-desc.center {
  margin: 0 auto;
}

.sec-header {
  margin-bottom: 65px;
}

.sec-header.center {
  text-align: center;
}

.sec-header.center .sec-label {
  justify-content: center;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  outline: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}



.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(11, 110, 255, 0.38);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(11, 110, 255, 0.5);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
  transform: scale(1.05);
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: scale(1.05);
  background: var(--off-white);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--light-gray);
}

.btn-outline:hover {
  transform: scale(1.05);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ==================== PRELOADER ==================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--secondary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
}

html.no-preloader #preloader {
  display: none !important;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo-wrap {
  width: 90px;
  height: 90px;
  background: rgba(11, 110, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 1.8s ease-in-out infinite;
}

.preloader-logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: fill-bar 1.6s ease infinite;
}

.preloader-txt {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(11, 110, 255, 0);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(11, 110, 255, 0.4);
  }
}

@keyframes fill-bar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* ==================== TOP BAR ==================== */
.top-bar {
  background: var(--secondary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 9px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tb-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
}

.tb-info i {
  color: var(--primary);
  font-size: 0.85rem;
}

.tb-info a {
  color: rgba(255, 255, 255, 0.65);
}

.tb-info a:hover {
  color: var(--accent);
}

.tb-social {
  display: flex;
  gap: 8px;
}

.tb-social a {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  transition: var(--transition);
}

.tb-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 20px rgba(13, 27, 46, 0.07);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 5px 35px rgba(13, 27, 46, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-xlight);
}

.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-svg-icon {
  width: 44px;
  height: 44px;
}

.logo-txt .logo-name {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}

.logo-txt .logo-name em {
  color: var(--primary);
  font-style: normal;
}

.logo-txt .logo-tag {
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link i.caret {
  font-size: 0.68rem;
  margin-top: 1px;
  transition: transform 0.3s ease;
}

.nav-item:hover>.nav-link {
  color: var(--primary);
  background: var(--primary-xlight);
}

.nav-item:hover>.nav-link .caret {
  transform: rotate(180deg);
}

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

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  min-width: 235px;
  padding: 8px;
  box-shadow: 0 16px 50px rgba(13, 27, 46, 0.16);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 999;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-dropdown a i {
  color: var(--primary);
  font-size: 0.82rem;
  width: 18px;
  flex-shrink: 0;
}

.nav-dropdown a:hover {
  background: var(--primary-xlight);
  color: var(--primary);
  padding-left: 18px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--primary-xlight);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Menu */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 46, 0.6);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}

.mob-overlay.show {
  opacity: 1;
}

.mob-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -320px;
  width: 305px;
  height: 100vh;
  background: var(--secondary-dark);
  z-index: 1200;
  padding: 30px 25px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-menu.open {
  right: 0;
}

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.mob-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mob-close:hover {
  background: var(--primary);
}

.mob-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.mob-nav-link:hover,
.mob-nav-link.active {
  color: var(--accent);
}

.mob-nav-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.mob-nav-item.open>.mob-nav-link i {
  transform: rotate(180deg);
}

.mob-sub {
  display: none;
  padding: 5px 0 10px 15px;
}

.mob-nav-item.open>.mob-sub {
  display: block;
}

.mob-sub a {
  display: block;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  border-radius: 6px;
  transition: var(--transition);
}

.mob-sub a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.mob-cta {
  margin-top: 30px;
}

.mob-contact {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mob-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.mob-contact a i {
  color: var(--primary);
  width: 16px;
}

.mob-contact a:hover {
  color: var(--accent);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #060f1e 0%, #0d1b2e 25%, #1a2b4a 55%, #0b3a8a 80%, #0b6eff 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(11, 110, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 110, 255, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 110, 255, 0.2) 0%, transparent 65%);
  border-radius: 50%;
  animation: drift 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: drift 10s ease-in-out infinite reverse;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(20px, -15px);
  }

  66% {
    transform: translate(-10px, 20px);
  }
}

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

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(11, 110, 255, 0.8);
  border-radius: 50%;
  animation: float-dot var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes float-dot {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-40px) translateX(15px);
    opacity: 1;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 110, 255, 0.18);
  border: 1px solid rgba(11, 110, 255, 0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.7s ease both;
}

.hero-badge .blink {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink-dot 1.5s ease-in-out infinite;
}

@keyframes blink-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-title .grad {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 38px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}

.h-stat .num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.h-stat .num sup {
  font-size: 1.2rem;
  color: var(--accent);
}

.h-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-visual-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(11, 110, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(11, 110, 255, 0.3);
  animation: spin-slow 20s linear infinite;
}

.hero-visual-ring::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 255, 0.2);
  animation: spin-slow 15s linear infinite reverse;
}

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

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

.hero-center-box {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  z-index: 2;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card.fc1 {
  top: 30px;
  right: -30px;
  animation: float-card 3.5s ease-in-out infinite;
}

.hero-float-card.fc2 {
  bottom: 50px;
  left: -35px;
  animation: float-card 4s ease-in-out 1s infinite;
}

.hero-float-card.fc3 {
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  animation: float-card 3s ease-in-out 0.5s infinite;
}

@keyframes float-card {

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

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

.hero-float-card.fc3 {
  animation: float-card-mid 3s ease-in-out 0.5s infinite;
}

@keyframes float-card-mid {

  0%,
  100% {
    transform: translateY(-50%);
  }

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

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fc-icon.blue {
  background: rgba(11, 110, 255, 0.3);
  color: var(--accent);
}

.fc-icon.green {
  background: rgba(0, 200, 122, 0.2);
  color: #00c87a;
}

.fc-icon.orange {
  background: rgba(255, 159, 28, 0.2);
  color: #ff9f1c;
}

.fc-txt strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3px;
}

.fc-txt span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.hero-orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--accent);
  animation: orbit 8s linear infinite;
}

.hero-orbit-dot:nth-child(2) {
  animation-delay: -4s;
  background: var(--primary);
  border-color: var(--accent);
}

@keyframes orbit {
  0% {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  25% {
    top: 50%;
    left: calc(100% - 10px);
    transform: translateY(-50%);
  }

  50% {
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
  }

  75% {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }

  100% {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Scroll Indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  animation: scroll-hint 2s ease infinite;
}

.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes scroll-hint {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ==================== SERVICES STRIP ==================== */
.svc-strip {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  padding: 0 0 0;
}

.svc-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.strip-item {
  background: var(--secondary);
  padding: 38px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: var(--primary);
}

.strip-item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  transition: var(--transition);
}

.strip-item:hover .strip-item-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.strip-item-body h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 7px;
}

.strip-item-body p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  padding: 110px 0;
  background: #fff;
}

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

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-img-main .about-img-placeholder {
  width: 100%;
  height: 530px;
  background: linear-gradient(145deg, var(--primary-xlight), var(--light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 5rem;
  color: var(--primary);
}

.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -28px;
  width: 175px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.about-accent-box .big-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.about-accent-box .big-lbl {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 5px;
  font-weight: 500;
}

.about-float-badge {
  position: absolute;
  top: 28px;
  left: -22px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 18px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.about-float-badge::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 14px 0 0 #febc2e, 28px 0 0 #28c840;
}

.about-float-badge .ab-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-float-badge .ab-txt strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
}

.about-float-badge .ab-txt span {
  font-size: 0.78rem;
  color: var(--gray);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 6px 0;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.about-feat:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xs);
  transform: translateX(6px);
}

.about-feat .af-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--primary-xlight);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feat:hover .af-icon {
  background: var(--primary);
  color: #fff;
}

.about-feat .af-txt strong {
  display: block;
  font-size: 0.97rem;
  color: var(--secondary);
  margin-bottom: 3px;
}

.about-feat .af-txt p {
  font-size: 0.88rem;
  margin: 0;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 110px 0;
  background: var(--off-white);
}

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

.svc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 18px;
  transition: var(--transition);
}

.svc-card:hover .svc-card-num {
  color: var(--primary);
}

.svc-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.svc-card:hover .svc-card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.svc-card h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 0.93rem;
  margin-bottom: 22px;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  margin-top: auto;
}

.svc-card-link:hover {
  gap: 13px;
  color: var(--primary-dark);
}

/* ==================== STATS / COUNTERS ==================== */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #060f1e 0%, #0d1b2e 30%, #0b3080 70%, #0b6eff 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-box-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.stat-box:hover .stat-box-icon {
  background: var(--primary);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num .suf {
  color: var(--accent);
  font-size: 2rem;
}

.stat-lbl {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==================== WHY CHOOSE US ==================== */
.why-section {
  padding: 110px 0;
  background: #fff;
}

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

.why-img-wrap {
  position: relative;
}

.why-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-img-main img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.why-img-placeholder {
  width: 100%;
  height: 530px;
  background: linear-gradient(145deg, #e8f0ff, var(--light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
}

.why-floating {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.why-floating.wf1 {
  top: 40px;
  right: -30px;
  animation: float-y 3.5s ease-in-out infinite;
}

.why-floating.wf2 {
  bottom: 40px;
  left: -30px;
  animation: float-y 4s ease-in-out 1s infinite;
}

.why-floating.wf3 {
  top: 40px;
  left: -30px;
  animation: float-y 3.8s ease-in-out 0.5s infinite;
}

@keyframes float-y {

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

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

.wf-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.wf-icon.blue {
  background: var(--primary-xlight);
  color: var(--primary);
}

.wf-icon.green {
  background: #e6fff4;
  color: var(--success);
}

.wf-icon.orange {
  background: #fff5e6;
  color: #ff9f1c;
}

.wf-txt strong {
  display: block;
  color: var(--secondary);
  font-size: 1rem;
}

.wf-txt span {
  color: var(--gray);
  font-size: 0.8rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.why-feat {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.why-feat:hover {
  background: var(--primary-xlight);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.why-feat i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-feat h5 {
  font-size: 0.97rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.why-feat p {
  font-size: 0.85rem;
  margin: 0;
}

/* ==================== PROCESS STEPS ==================== */
.process-section {
  padding: 110px 0;
  background: var(--off-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--light-gray);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .process-num {
    transition: none !important;
  }
}

.process-step:hover .process-num {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(11, 110, 255, 0.4);
}

@media (max-width: 991px) {
  .process-step.active .process-num {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(11, 110, 255, 0.4);
  }
}

.process-step h4 {
  font-size: 1.02rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
  padding: 110px 0;
  background: #fff;
}

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

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  background: #fff;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.team-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--light);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

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

.team-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 110, 255, 0.88), transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.team-card:hover .team-img-overlay {
  opacity: 1;
}

.team-socials {
  display: flex;
  gap: 8px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.team-socials a:hover {
  background: #fff;
  color: var(--primary);
}

.team-info {
  padding: 22px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.team-info .role {
  font-size: 0.83rem;
  color: var(--primary);
  font-weight: 600;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 110px 0;
  background: linear-gradient(145deg, #060f1e, #0d1b2e 40%, #1a2b4a);
  position: relative;
  overflow: hidden;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 110, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.testi-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(11, 110, 255, 0.4);
  transform: translateY(-6px);
}

.testi-quote {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 18px;
  font-family: Georgia, serif;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testi-stars i {
  color: #ffc107;
  font-size: 0.88rem;
}

.testi-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.testi-author-info strong {
  display: block;
  color: #fff;
  font-size: 0.97rem;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== TECHNOLOGIES ==================== */
.tech-section {
  padding: 90px 0;
  background: var(--off-white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tech-item {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.tech-item:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xs);
}

.tech-item i {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 8px;
  transition: var(--transition);
  display: block;
}

.tech-item:hover i {
  color: var(--primary);
}

.tech-item .tech-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
}

.tech-item:hover .tech-name {
  color: var(--primary);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #0051d4, #0b6eff 50%, #00b4ff);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-bubble-1 {
  position: absolute;
  top: -40%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-bubble-2 {
  position: absolute;
  bottom: -50%;
  right: -3%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.cta-actions .btn {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  justify-content: center;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--secondary-dark);
  padding: 90px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 55px;
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-txt .fn {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.footer-logo-txt .fn em {
  color: var(--primary);
  font-style: normal;
}

.footer-logo-txt .ft {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.93rem;
  line-height: 1.85;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--primary);
  width: 15px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.55);
}



.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-row a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.footer-links a i {
  color: var(--primary);
  font-size: 0.72rem;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.86rem;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.86rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ==================== BACK TO TOP ==================== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  padding: 130px 0 90px;
  background: linear-gradient(145deg, #060f1e 0%, #0d1b2e 30%, #1a2b4a 60%, #0b3080 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.ph-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.breadcrumb .cur {
  color: var(--accent);
  font-size: 0.87rem;
}

.ph-inner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.ph-inner p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  max-width: 600px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
  padding: 110px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.ci-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.ci-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.ci-card:hover .ci-icon {
  background: var(--primary);
  color: #fff;
}

.ci-txt strong {
  display: block;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.ci-txt a,
.ci-txt span {
  color: var(--gray);
  font-size: 0.93rem;
  word-break: break-word;
}

.ci-txt .wh-text {
  font-size: 0.82rem;
}

.ci-txt a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 50px 45px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.contact-form-wrap h3 {
  font-size: 1.7rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-form-wrap>p {
  margin-bottom: 35px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  color: var(--secondary);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 110, 255, 0.08);
}

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

.form-msg {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.form-msg.success {
  background: #e8fff4;
  color: #008050;
  border: 1px solid #b0f0d4;
  display: block;
}

.form-msg.error {
  background: #fff0f0;
  color: #c00;
  border: 1px solid #ffd4d4;
  display: block;
}

/* ==================== PORTFOLIO ==================== */
.portfolio-section {
  padding: 110px 0;
  background: var(--off-white);
}

.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.pf-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--light-gray);
  background: #fff;
  color: var(--secondary);
  transition: var(--transition);
}

.pf-btn.active,
.pf-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.portfolio-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.project-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .project-card-image img {
  transform: scale(1.04);
}

.portfolio-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.portfolio-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-body h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.portfolio-body p {
  font-size: 0.9rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  min-height: 4.5em;
  /* 3 lines of 1.5em */
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 14px;
  min-height: 48px;
}

.portfolio-tech span {
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  height: 22px;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

/* ==================== ABOUT PAGE ADDITIONS ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.value-card .vc-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}

.value-card:hover .vc-icon {
  background: var(--primary);
  color: #fff;
}

.value-card h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
}

/* ==================== AOS REVEAL ==================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-accent-box,
  .about-float-badge,
  .why-floating {
    display: none;
  }

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

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .header-right .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .svc-strip-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-box:nth-child(even) {
    border-bottom: none;
  }

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

  .process-line {
    display: none;
  }

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

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

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

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

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

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

  .why-features {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .contact-form-wrap {
    padding: 30px 22px;
  }

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

/* ==================== REAL LOGO IMAGE STYLES ==================== */

/* Preloader logo — show full brand logo centered */
.preloader-logo-wrap {
  width: 220px !important;
  height: 220px !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: none !important;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  animation: logo-pulse 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(11, 110, 255, 0.55));
}

@keyframes logo-pulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 22px rgba(11, 110, 255, 0.45));
  }

  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 45px rgba(11, 110, 255, 0.75));
  }
}

/* Header logo image */
.header-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.logo:hover .header-logo-img {
  transform: scale(1.04);
}

/* Footer logo image */
.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Fix logo <a> flex alignment after removing inner divs */
a.logo {
  display: flex;
  align-items: center;
}

/* ==================== TECH VISUAL SECTIONS (About / Why) ==================== */

/* About Tech Dashboard Mockup */
.about-tech-visual {
  width: 100%;
  height: 530px;
  background: linear-gradient(145deg, #0d1b2e 0%, #1a2b4a 50%, #0b3080 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 16px;
  box-shadow: var(--shadow-dark);
}

.about-tech-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11, 110, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 110, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.atv-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.atv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.atv-dot.red {
  background: #ff5f57;
}

.atv-dot.amber {
  background: #febc2e;
}

.atv-dot.green {
  background: #28c840;
}

.atv-url {
  flex: 1;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.atv-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

.atv-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.atv-stat-box .asb-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.atv-stat-box .asb-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.atv-chart-area {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.atv-chart-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.atv-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.atv-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--primary), var(--accent));
  opacity: 0.85;
  animation: grow-bar 1.5s ease both;
  animation-delay: var(--d, 0s);
}

@keyframes grow-bar {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.atv-code-line {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
}

.atv-code-line .kw {
  color: var(--accent);
}

.atv-code-line .fn {
  color: #ffd700;
}

.atv-code-line .str {
  color: #98e490;
}

.atv-progress-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.atv-progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.atv-progress-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  width: 60px;
  flex-shrink: 0;
}

.atv-progress-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.atv-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: fill-prog 2s ease both;
  animation-delay: var(--d, 0s);
}

@keyframes fill-prog {
  from {
    width: 0;
  }
}

.atv-progress-pct {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  width: 32px;
  text-align: right;
}

/* Why section — floating device mockup */
.why-tech-visual {
  width: 100%;
  height: 530px;
  background: linear-gradient(145deg, #f0f5ff 0%, #e8f0ff 50%, #dce8ff 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.why-tech-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(11, 110, 255, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0, 180, 255, 0.05) 0%, transparent 55%);
}

.wtv-phone {
  width: 200px;
  height: 380px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(13, 27, 46, 0.2);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 6px solid #0d1b2e;
  display: flex;
  flex-direction: column;
}

.wtv-phone-notch {
  width: 70px;
  height: 18px;
  background: #0d1b2e;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.wtv-phone-screen {
  flex: 1;
  padding: 12px;
  background: linear-gradient(180deg, #f4f8ff 0%, #fff 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wtv-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.wtv-app-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
}

.wtv-app-dot {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 5px;
}

.wtv-metric {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.wtv-metric .wm-num {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.wtv-metric .wm-lbl {
  font-size: 0.6rem;
  opacity: 0.8;
}

.wtv-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.wtv-mini-card {
  background: var(--primary-xlight);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wtv-mini-card i {
  font-size: 0.9rem;
  color: var(--primary);
}

.wtv-mini-card span {
  font-size: 0.6rem;
  color: var(--gray);
  font-weight: 600;
}

.wtv-chart-sm {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 4px;
}

.wtv-bar-sm {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(to top, var(--primary), var(--accent));
  opacity: 0.7;
}

.wtv-laptop {
  position: absolute;
  right: -10px;
  bottom: 30px;
  width: 240px;
  height: 155px;
  background: #1a2b4a;
  border-radius: 12px 12px 0 0;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(13, 27, 46, 0.25);
}

.wtv-laptop::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -15px;
  right: -15px;
  height: 10px;
  background: #0d1b2e;
  border-radius: 0 0 8px 8px;
}

.wtv-laptop-screen {
  margin: 8px;
  height: calc(100% - 16px);
  background: linear-gradient(135deg, #060f1e, #0d1b2e);
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wtv-code-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wtv-code-block span {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  animation: code-shimmer 2s ease-in-out infinite;
}

.wtv-code-block span:nth-child(1) {
  width: 80%;
  background: rgba(11, 110, 255, 0.5);
  animation-delay: 0s;
}

.wtv-code-block span:nth-child(2) {
  width: 60%;
  background: rgba(0, 180, 255, 0.4);
  animation-delay: 0.2s;
}

.wtv-code-block span:nth-child(3) {
  width: 90%;
  background: rgba(255, 215, 0, 0.3);
  animation-delay: 0.4s;
}

.wtv-code-block span:nth-child(4) {
  width: 70%;
  background: rgba(152, 228, 144, 0.4);
  animation-delay: 0.6s;
}

.wtv-code-block span:nth-child(5) {
  width: 50%;
  background: rgba(11, 110, 255, 0.3);
  animation-delay: 0.8s;
}

@keyframes code-shimmer {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.wtv-badge {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(13, 27, 46, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wtv-badge.b1 {
  top: 35px;
  left: 15px;
}

.wtv-badge.b2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wtv-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.wtv-badge-icon.blue {
  background: var(--primary-xlight);
  color: var(--primary);
}

.wtv-badge-icon.green {
  background: #e6fff4;
  color: var(--success);
}

.wtv-badge-txt strong {
  display: block;
  font-size: 0.88rem;
  color: var(--secondary);
}

.wtv-badge-txt span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ==================== RESPONSIVE ADDITIONS ==================== */
@media (max-width: 768px) {

  .ci-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .ci-txt .wh-text {
    white-space: normal;
  }

  .about-tech-visual,
  .why-tech-visual {
    height: 320px;
  }

  .wtv-phone {
    transform: scale(0.75);
  }

  .why-section,
  .stats-section,
  .services-section,
  .about-section,
  .team-section,
  .process-section {
    padding: 60px 0;
  }

  .atv-code-line {
    display: none;
  }

  .wtv-laptop {
    display: none;
  }

  .preloader-logo-wrap {
    width: 180px !important;
    height: 180px !important;
  }
}

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

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

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

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

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

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

  .hero-stats {
    gap: 24px;
  }

  .portfolio-filter {
    flex-wrap: wrap;
  }
}

/* ==================== LOGO FIXES ==================== */
.header-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

a.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

a.logo:hover .header-logo-wrap {
  box-shadow: 0 4px 18px rgba(11, 110, 255, 0.2);
  transform: scale(1.03);
}

/* Footer logo — white pill so it shows on dark bg */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-link .footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  display: block;
}

/* ==================== FOOTER FULL REWRITE ==================== */
.site-footer {
  background: linear-gradient(180deg, #0d1b2e 0%, #060e1a 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11, 110, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 110, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.footer-brand .footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.9rem;
  width: 16px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}



.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Preloader logo */
.preloader-logo-wrap {
  width: 200px !important;
  height: 200px !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  animation: logo-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(11, 110, 255, 0.4));
}

@keyframes logo-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

/* ==================== NAVBAR UPDATES ==================== */
.has-dropdown {
  position: relative;
}

.has-dropdown .nav-dropdown {
  min-width: 220px;
}

/* ==================== FOOTER RESPONSIVE ==================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- New Team Section Redesign --- */

.team-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 24px;
}

.team-eyebrow::before,
.team-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--light-gray);
}

.team-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 16px;
}

.team-heading span {
  color: var(--accent);
}

.team-subtext {
  font-size: 1.1rem;
  color: var(--gray);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* CEO Spotlight */
.founders-spotlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.founders-spotlight .ceo-spotlight-card {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.ceo-spotlight-card {
  display: flex;
  align-items: center;
  background: var(--secondary);
  /* Dark background */
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 60px;
  max-width: 800px;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.ceo-spotlight-avatar {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), #00b4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.ceo-spotlight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceo-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ceo-spotlight-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
}

.ceo-spotlight-info span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Divider */
.team-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 50px;
  max-width: 800px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.team-divider::before,
.team-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

/* Modern Team Grid */
.modern-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Modern Team Card */
.modern-team-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.modern-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--primary-xlight);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.modern-team-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 6px 0;
}

.modern-team-card .role {
  font-size: 0.9rem;
  color: var(--gray);
  display: block;
  margin: 0 0 16px 0;
}

/* Department Pills */
.dept-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: auto;
}

.dept-eng {
  background: #f0f5ff;
  color: #3b82f6;
}

.dept-design {
  background: #fdf4ff;
  color: #d946ef;
}

.dept-mobile {
  background: #ecfdf5;
  color: #10b981;
}

.dept-ops {
  background: #fffbeb;
  color: #d97706;
}

.dept-sales {
  background: #fef2f2;
  color: #ef4444;
}

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

  .ceo-spotlight-card {
    padding: 30px;
    gap: 24px;
  }

  .ceo-spotlight-avatar {
    width: 110px;
    height: 110px;
    font-size: 2.8rem;
  }

  .ceo-spotlight-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .ceo-spotlight-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .modern-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .modern-team-card {
    padding: 16px;
  }

  .modern-team-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .modern-team-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .modern-team-card .role {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .dept-pill {
    padding: 4px 8px;
    font-size: 0.65rem;
    border-radius: 4px;
  }

  .team-heading {
    font-size: 2rem;
  }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 80px 0;
  background: var(--off-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-heading);
  user-select: none;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px 25px;
  /* max-height is set via JS for smooth transition */
}

/* =========================================
   RELATED PORTFOLIO SECTION & COMING SOON
   ========================================= */
.related-portfolio {
  padding: 90px 0;
  background: var(--white);
}

.related-header {
  text-align: center;
  margin-bottom: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}

.related-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 992px) {
  .related-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-grid,
  .related-grid.cols-3,
  .related-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* Coming Soon Case Study Panel */
.coming-soon-panel {
  max-width: 660px;
  margin: 0 auto;
  padding: 50px 36px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.coming-soon-panel:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.cs-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--primary-xlight);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.cs-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cs-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cs-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.6;
}

.cs-btn {
  margin-top: 4px;
}

@media (max-width: 992px) {
  .founders-spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .founders-spotlight {
    grid-template-columns: 1fr;
  }
}