/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AICORENEX TECHNOLOGIES â€” LIGHT GLASSMORPHISM THEME
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ CSS VARIABLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --secondary: #7c3aed;
  --secondary-light: #a78bfa;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --emerald: #059669;
  --rose: #e11d48;

  /* Light palette */
  --dark:   #f8faff;
  --dark-2: #f0f4ff;
  --dark-3: #e8effd;
  --dark-4: #dde8ff;
  --surface: rgba(255,255,255,0.75);
  --surface-2: rgba(255,255,255,0.6);
  --card-bg: rgba(255,255,255,0.65);
  --card-bg-hover: rgba(255,255,255,0.90);

  --border: rgba(15,23,42,0.08);
  --border-hover: rgba(14,165,233,0.35);
  --border-secondary: rgba(124,58,237,0.15);

  /* Text â€” dark for light bg */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-bright: #0f172a;

  /* Gradients */
  --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
  --gradient-2: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
  --gradient-3: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
  --gradient-hero: linear-gradient(160deg, #f8faff 0%, #f0f4ff 35%, #f5f0ff 65%, #f0f7ff 100%);
  --gradient-section-1: linear-gradient(180deg, #f8faff 0%, #f0f4ff 50%, #f8faff 100%);
  --gradient-section-2: linear-gradient(180deg, #f0f4ff 0%, #f8faff 100%);
  --gradient-mesh:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(14,165,233,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(124,58,237,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(245,158,11,0.05) 0%, transparent 60%);

  --glow-primary: 0 0 40px rgba(14,165,233,0.18), 0 0 80px rgba(14,165,233,0.06);
  --glow-secondary: 0 0 40px rgba(124,58,237,0.18), 0 0 80px rgba(124,58,237,0.06);
  --glow-accent: 0 0 40px rgba(245,158,11,0.15);
  --card-shadow: 0 4px 24px rgba(15,23,42,0.07), 0 1px 4px rgba(15,23,42,0.04), 0 0 0 1px rgba(255,255,255,0.7);
  --card-shadow-hover: 0 20px 60px rgba(15,23,42,0.12), 0 4px 16px rgba(14,165,233,0.08), 0 0 0 1px rgba(255,255,255,0.9);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: #f0f4ff;
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  top: -25vh;
  left: -15vw;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -25vh;
  right: -15vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
p { color: var(--text-secondary); }
.text-muted { color: var(--text-muted) !important; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-dark); }

/* â”€â”€ TOP BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.top-bar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.82rem;
  z-index: 1001;
  position: relative;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar-left a, .top-bar-left span,
.top-bar-right span {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left a i, .top-bar-left span i,
.top-bar-right span i { color: var(--primary); font-size: 0.85rem; }
.top-bar-divider { width: 1px; height: 14px; background: var(--border); }
.top-bar-socials { display: flex; gap: 8px; }
.top-bar-socials a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s, transform 0.3s;
}
.top-bar-socials a:hover { color: var(--primary); transform: translateY(-1px); }

/* â”€â”€ SELECTION & SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--primary), var(--secondary)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(to bottom, var(--primary-light), var(--secondary-light)); }

/* â”€â”€ UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-padding { padding: 110px 0; }
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-3 {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.08);
  color: var(--primary);
  border: 1px solid rgba(14,165,233,0.25);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.section-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: tagPulse 2s infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.section-desc {
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.12rem;
  margin-top: 18px;
  line-height: 1.8;
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary-glow {
  background: var(--gradient-1);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(14,165,233,0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}
.btn-primary-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}
.btn-primary-glow:hover::before { left: 100%; }
.btn-primary-glow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(14,165,233,0.4), 0 0 60px rgba(14,165,233,0.12);
  color: #fff;
}
.btn-primary-glow:active { transform: translateY(-1px) scale(0.98); }
.btn-outline-glow {
  background: rgba(255,255,255,0.7);
  color: var(--primary);
  border: 1.5px solid rgba(14,165,233,0.35);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}
.btn-outline-glow:hover::before { opacity: 1; }
.btn-outline-glow:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--glow-primary);
}
.btn-outline-glow:active { transform: translateY(-1px) scale(0.98); }

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#mainNav {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 1px 30px rgba(15,23,42,0.06);
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 30px rgba(15,23,42,0.10);
  border-bottom-color: rgba(14,165,233,0.12);
  padding: 10px 0;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 178px;
  height: 48px;
  overflow: hidden;
}
.brand-logo-img {
  width: 210px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: -10px;
  mix-blend-mode: multiply;
}
.brand-ai { color: var(--primary); }
.brand-core { color: var(--text-primary); }
.brand-nex { color: var(--secondary); }
.brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px !important;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gradient-1);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.dropdown-menu {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 16px 60px rgba(15,23,42,0.15);
  min-width: 260px;
}
.dropdown-item {
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
}
.dropdown-item i { font-size: 1.1rem; color: var(--primary); }
.dropdown-item:hover {
  background: rgba(14,165,233,0.08);
  color: var(--primary);
  transform: translateX(6px);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.navbar-toggler { border: none; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  min-height: 85vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 30% -10%, rgba(14,165,233,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 50%, rgba(124,58,237,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(245,158,11,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.25);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.badge-dot {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px rgba(14,165,233,0.6);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(14,165,233,0.6); }
  50% { opacity: 0.7; transform: scale(1.4); box-shadow: 0 0 20px rgba(14,165,233,0.3); }
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-primary);
}
.hero-subtext {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 620px;
  margin-top: 24px;
  line-height: 1.8;
}
.hero-ctas .btn { font-size: 1.05rem; }
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
  filter: blur(1px);
}
.orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 65%);
  animation-delay: 0s;
}
.orb-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  top: 15%; right: 5%;
  animation-delay: 2.5s;
}
.orb-3 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 65%);
  bottom: 18%; left: 8%;
  animation-delay: 4.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-15px) scale(1.03) rotate(1deg); }
  66% { transform: translateY(-25px) scale(1.06) rotate(-1deg); }
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.12);
  animation: floatCard 5s ease-in-out infinite;
  transition: var(--transition);
}
.floating-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  transform: scale(1.05);
}
.floating-card i { color: var(--primary); font-size: 1.3rem; }
.card-1 { top: 12%; left: -5%; animation-delay: 0s; }
.card-2 { top: 44%; right: -8%; animation-delay: 1.8s; }
.card-3 { bottom: 15%; left: 8%; animation-delay: 3.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-16px) rotateX(2deg); }
}
.hero-trust { margin-top: 48px; }
.trust-label { color: var(--text-muted); font-size: 0.92rem; font-weight: 500; }
.trust-avatars { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.avatar-stack { display: flex; }
.av {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(15,23,42,0.15);
}
.av1 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.av2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.av3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.av4 { background: linear-gradient(135deg, #fa709a, #fee140); }
.av5 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.star-row { color: var(--accent); font-size: 0.95rem; font-weight: 600; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-line {
  width: 2px; height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 1px;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 50px; }
  50% { opacity: 1; height: 40px; }
}

/* â”€â”€ TRUST MARQUEE STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-marquee-section {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(14,165,233,0.10);
  border-bottom: 1px solid rgba(14,165,233,0.10);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.trust-marquee-section::before,
.trust-marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}
.trust-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}
.trust-marquee-track { width: 100%; overflow: hidden; }
.trust-marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-item {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee-item i { color: var(--primary); font-size: 1.1rem; }
.marquee-divider { color: var(--primary); font-size: 0.7rem; margin: 0 28px; opacity: 0.4; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-marquee-section:hover .trust-marquee-content { animation-play-state: paused; }

/* â”€â”€ GLASS CARD BASE â€” applied to all glass cards â”€â”€ */
.service-card, .why-card, .blog-card, .process-card,
.testimonial-card, .industry-card, .contact-card, .job-card,
.about-highlight-card, .sv2-card, .sv2-about-card,
.sv2-process-step, .sv2-faq-item, .sv2-related-card,
.sv2-stat-card, .cta-inner, .floating-card {
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

/* â”€â”€ SERVICE CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section {
  background: var(--gradient-section-1);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
  cursor: pointer;
  box-shadow: var(--card-shadow);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(14,165,233,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
  background: var(--card-bg-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.card-hover-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-1);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.service-card:hover .card-hover-border { opacity: 0.08; }
.service-icon-wrap {
  position: relative;
  width: 76px; height: 76px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition-bounce);
}
.service-icon-wrap i { font-size: 2.2rem; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon-wrap {
  background: rgba(14,165,233,0.14);
  transform: rotate(-8deg) scale(1.15);
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 0 30px rgba(14,165,233,0.15);
}
.icon-glow {
  position: absolute;
  inset: -4px;
  background: var(--gradient-1);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(12px);
}
.service-card:hover .icon-glow { opacity: 0.3; }
.service-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 700;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 22px;
  line-height: 1.75;
}
.service-features { list-style: none; padding: 0; margin-bottom: 26px; }
.service-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.service-features li i { color: var(--emerald); flex-shrink: 0; font-size: 1.1rem; }
.service-card:hover .service-features li { color: var(--text-primary); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; color: var(--primary-dark); }
.service-link i { transition: transform 0.35s ease; font-size: 1.2rem; }
.service-link:hover i { transform: translateX(6px); }

/* â”€â”€ WHY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-section {
  background: var(--gradient-section-2);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124,58,237,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.why-section .text-muted { color: var(--text-secondary) !important; font-size: 1.05rem; line-height: 1.75; }
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.why-point:last-child { border-bottom: none; }
.why-point:hover { padding-left: 10px; }
.why-point > i {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(14,165,233,0.08);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(14,165,233,0.14);
  transition: var(--transition-bounce);
}
.why-point:hover > i {
  background: rgba(14,165,233,0.14);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 24px rgba(14,165,233,0.14);
  border-color: rgba(14,165,233,0.30);
}
.why-point strong { color: var(--text-primary); font-size: 1.1rem; }
.why-point small { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; }
.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 28px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--card-shadow);
}
.tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15,23,42,0.08);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-bounce);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tech-badge img { width: 22px; height: 22px; object-fit: contain; }
.tech-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(14,165,233,0.14);
  background: rgba(14,165,233,0.05);
}

/* â”€â”€ PORTFOLIO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.portfolio-section {
  background: var(--gradient-section-1);
  position: relative;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(14,165,233,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}
.portfolio-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.portfolio-card:hover img { transform: scale(1.12); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.45) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  background: var(--gradient-1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portfolio-info h5 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.portfolio-info p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-bottom: 14px; }
.portfolio-actions { display: flex; gap: 10px; }

/* â”€â”€ PORTFOLIO CARD (no-image) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.portfolio-card-inner {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease, border-color 0.4s ease;
  box-shadow: var(--card-shadow);
}
.portfolio-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
}
.portfolio-img-wrap { position: relative; overflow: hidden; height: 220px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card-inner:hover .portfolio-img { transform: scale(1.06); }

/* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-section {
  background: var(--gradient-section-2);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(124,58,237,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 44px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-2);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonial-card:hover {
  border-color: rgba(124,58,237,0.20);
  box-shadow: var(--glow-secondary);
  transform: translateY(-8px) rotateX(2deg);
}
.testimonial-card:hover::before { opacity: 1; }
.testi-quote { font-size: 3.5rem; color: var(--secondary); opacity: 0.25; line-height: 1; margin-bottom: 18px; }
.testi-text { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.85; font-style: italic; }
.testi-stars { color: var(--accent); font-size: 1rem; margin-top: 18px; }
.testi-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
  box-shadow: 0 0 16px rgba(124,58,237,0.15);
}
.testi-author strong { color: var(--text-primary); font-size: 1.05rem; }
.testi-author small { color: var(--text-muted) !important; font-size: 0.9rem; }

/* â”€â”€ INDUSTRIES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.industries-section {
  background: var(--gradient-section-2);
  position: relative;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover {
  border-color: rgba(14,165,233,0.20);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.industry-card i {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.industry-card h6 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* â”€â”€ STATS / COUNTERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-section {
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid rgba(14,165,233,0.10);
  border-bottom: 1px solid rgba(14,165,233,0.10);
  padding: 80px 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(14,165,233,0.18);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* â”€â”€ ABOUT HIGHLIGHTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-highlights-section {
  background: var(--gradient-section-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
  position: relative;
}
.about-highlight-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.about-highlight-card:hover {
  border-color: rgba(14,165,233,0.18);
  transform: translateY(-4px);
  box-shadow: var(--glow-primary);
}
.about-highlight-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(14,165,233,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-highlight-icon i { font-size: 1.5rem; color: var(--primary); }
.about-highlight-card h3 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.about-highlight-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* â”€â”€ CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  background: var(--gradient-section-1);
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(14,165,233,0.07) 0%, rgba(124,58,237,0.07) 50%, rgba(245,158,11,0.04) 100%);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 28px;
  padding: 90px 48px;
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(15,23,42,0.06);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.04) 0%, transparent 50%);
  animation: rotateSlow 25s linear infinite;
}
.cta-inner::after {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); position: relative; z-index: 1; color: var(--text-primary); }
.cta-sub { color: var(--text-secondary); position: relative; z-index: 1; font-size: 1.15rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-inner .btn { position: relative; z-index: 1; }
.cta-inner .section-tag { position: relative; z-index: 1; }

/* â”€â”€ BLOG CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-section {
  background: var(--gradient-section-1);
  position: relative;
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245,158,11,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
}
.blog-image { position: relative; overflow: hidden; height: 240px; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-category {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gradient-1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body { padding: 32px; }
.blog-meta {
  display: flex;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.blog-meta i { color: var(--primary); }
.blog-title { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.4; }
.blog-title a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { color: var(--text-secondary); font-size: 0.98rem; margin-bottom: 22px; line-height: 1.7; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: gap 0.35s ease, color 0.3s;
}
.read-more:hover { gap: 14px; color: var(--primary-dark); }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-premium {
  background: linear-gradient(180deg, #0c1530 0%, #06091a 100%);
  border-top: 2px solid transparent;
  background-clip: padding-box;
  padding: 90px 0 0;
  position: relative;
  z-index: 1;
}
.footer-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-1);
}
main { position: relative; z-index: 2; }
.footer-glow-top {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 430px; height: 2px;
  background: var(--gradient-1);
  filter: blur(2px);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  width: 200px;
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.footer-logo-img {
  width: 238px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: -10px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-desc { color: #94a3c4; font-size: 1rem; max-width: 320px; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-socials a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3c4;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition-bounce);
}
.footer-socials a:hover {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 24px rgba(14,165,233,0.3);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #eef2ff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: #94a3c4;
  text-decoration: none;
  font-size: 0.98rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.footer-links a::before {
  content: '\2192';
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  font-weight: 700;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 14px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #94a3c4;
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-contact li i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #94a3c4; text-decoration: none; transition: color 0.3s; font-weight: 500; }
.footer-contact a:hover { color: var(--primary-light); }
.newsletter-form .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #eef2ff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.newsletter-form .form-control::placeholder { color: #64748b; }
.newsletter-form .form-control:focus {
  background: rgba(14,165,233,0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
  color: #eef2ff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 24px;
  margin-top: 70px;
}
.footer-bottom p { font-size: 0.92rem; color: #64748b; }
.footer-bottom .text-muted { color: #64748b !important; }

/* â”€â”€ CONTACT PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section {
  background: var(--gradient-section-1);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}
.contact-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: var(--radius);
  padding: 52px;
  box-shadow: var(--card-shadow);
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 0 0 3px 3px;
}
.form-control, .form-select {
  background: rgba(255,255,255,0.80) !important;
  border: 1.5px solid rgba(15,23,42,0.10) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  padding: 16px 20px;
  transition: var(--transition);
  font-size: 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,0.10) !important;
  background: rgba(255,255,255,0.95) !important;
}
.form-control::placeholder { color: var(--text-muted); }
.form-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-select option { background: #fff; color: var(--text-primary); }
textarea.form-control { min-height: 150px; resize: vertical; }

/* â”€â”€ PAGE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  padding: 150px 0 90px;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, rgba(14,165,233,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(124,58,237,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .section-tag { position: relative; z-index: 1; }
.page-hero .section-title { position: relative; z-index: 1; }
.page-hero .text-muted {
  color: var(--text-secondary) !important;
  position: relative;
  z-index: 1;
  font-size: 1.12rem;
  line-height: 1.8;
}

/* â”€â”€ FILTER BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-btn {
  background: rgba(255,255,255,0.70);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(14,165,233,0.20);
  transform: translateY(-2px);
}

/* â”€â”€ CAREERS PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.job-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
}
.job-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
}
.job-card h5 { color: var(--text-primary); font-size: 1.25rem; }
.job-card .text-muted { color: var(--text-secondary) !important; font-size: 0.95rem; }
.job-badge {
  background: rgba(14,165,233,0.08);
  color: var(--primary);
  border: 1px solid rgba(14,165,233,0.20);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* â”€â”€ 3D TILT TARGET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tilt-card { transform-style: preserve-3d; transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.tilt-card .tilt-content { transform: translateZ(40px); }

/* â”€â”€ PARTICLE CANVAS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#particles-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* â”€â”€ WHY CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon {
  width: 68px; height: 68px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-bounce);
}
.why-card-icon i { font-size: 1.6rem; color: var(--primary); }
.why-card:hover .why-card-icon {
  background: rgba(14,165,233,0.14);
  transform: rotate(-8deg) scale(1.15);
  border-color: rgba(14,165,233,0.30);
  box-shadow: 0 0 30px rgba(14,165,233,0.14);
}
.why-card h5 { color: var(--text-primary); font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* â”€â”€ PROCESS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section {
  background: var(--gradient-section-1);
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(14,165,233,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.process-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.4s ease;
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,255,255,0.98);
}
.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.process-icon {
  width: 60px; height: 60px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition-bounce);
}
.process-icon i { font-size: 1.4rem; color: var(--primary); }
.process-card:hover .process-icon {
  background: rgba(14,165,233,0.14);
  transform: scale(1.15);
  box-shadow: 0 0 24px rgba(14,165,233,0.14);
}
.process-card h5 { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 10px; }
.process-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* â”€â”€ SERVICE DETAIL EXTRAS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.included-item i { flex-shrink: 0; }
.service-process-timeline { position: relative; padding-left: 40px; }
.service-process-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 1px;
}
.timeline-step { position: relative; padding: 0 0 28px 20px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 0;
  width: 32px; height: 32px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  box-shadow: 0 0 20px rgba(14,165,233,0.25);
}
.timeline-content h6 { color: var(--text-primary); font-size: 1.05rem; margin-bottom: 6px; }
.timeline-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* â”€â”€ ACCORDION (FAQ) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.accordion-item {
  background: rgba(255,255,255,0.70) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.85) !important;
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: visible;
}
.accordion-button {
  background: rgba(255,255,255,0.85) !important;
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 20px;
  box-shadow: none !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
}
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed) {
  background: rgba(14,165,233,0.06) !important;
  color: var(--primary) !important;
}
.accordion-body {
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 12px 20px 20px;
}

/* â”€â”€ SIDEBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sidebar-sticky { position: sticky; top: 100px; }
.sidebar-highlights { display: flex; flex-direction: column; gap: 16px; }
.sidebar-highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-highlight-item:last-child { border-bottom: none; }
.sidebar-highlight-item > i { font-size: 1.2rem; flex-shrink: 0; margin-top: 3px; }
.sidebar-highlight-item strong { color: var(--text-primary); font-size: 0.95rem; }
.sidebar-highlight-item small { color: var(--text-muted); font-size: 0.85rem; }

/* â”€â”€ RELATED SERVICES LIST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-services-list { list-style: none; padding: 0; margin: 0; }
.related-services-list li { margin-bottom: 8px; }
.related-services-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.related-services-list a:hover {
  background: rgba(14,165,233,0.07);
  border-color: rgba(14,165,233,0.20);
  color: var(--primary);
  transform: translateX(4px);
}
.related-services-list a i:first-child {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* â”€â”€ FLOATING CTA WIDGET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.floating-cta-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(15,23,42,0.20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.fab-btn:hover { transform: scale(1.15) translateY(-4px); color: #fff; }
.fab-whatsapp { background: #25d366; }
.fab-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.fab-phone { background: var(--gradient-1); }
.fab-phone:hover { box-shadow: 0 8px 30px rgba(14,165,233,0.4); }
.fab-email { background: var(--gradient-2); }
.fab-email:hover { box-shadow: 0 8px 30px rgba(124,58,237,0.4); }

/* â”€â”€ SERVICE PAGES V2 â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sv2-hero, .sv2-detail-hero {
  padding: 150px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.sv2-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(14,165,233,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(124,58,237,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.sv2-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.sv2-hero-sub {
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.85;
  margin-top: 18px;
  max-width: 560px;
}
.sv2-hero-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: var(--radius);
  padding: 36px 48px;
  box-shadow: var(--card-shadow);
}
.sv2-stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sv2-stat-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}
.sv2-services-section { background: var(--dark-3); position: relative; }
.sv2-card {
  display: flex;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, border-color 0.3s ease;
  height: 100%;
}
.sv2-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); border-color: rgba(255,255,255,0.98); }
.sv2-card-accent { width: 5px; flex-shrink: 0; background: var(--gradient-1); opacity: 0.4; transition: opacity 0.3s ease; }
.sv2-card:hover .sv2-card-accent { opacity: 1; }
.sv2-card-body { display: flex; align-items: flex-start; gap: 24px; padding: 32px 28px; flex: 1; min-width: 0; }
.sv2-card-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-bounce);
}
.sv2-card-icon i { font-size: 1.7rem; color: var(--primary); }
.sv2-card:hover .sv2-card-icon {
  background: rgba(14,165,233,0.14);
  border-color: rgba(14,165,233,0.30);
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 0 24px rgba(14,165,233,0.14);
}
.sv2-card-content { flex: 1; min-width: 0; }
.sv2-card-category {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--primary); opacity: 0.8; margin-bottom: 6px;
}
.sv2-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin: 0 0 10px; line-height: 1.3; }
.sv2-card-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 0 0 14px; }
.sv2-card-features { display: flex; flex-wrap: wrap; gap: 8px; }
.sv2-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(5,150,105,0.07); border: 1px solid rgba(5,150,105,0.18);
  color: var(--emerald); font-size: 0.78rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px; white-space: nowrap;
}
.sv2-chip i { font-size: 0.65rem; }
.sv2-card-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(14,165,233,0.07);
  color: var(--primary);
  align-self: center;
  transition: var(--transition);
}
.sv2-card:hover .sv2-card-arrow { background: var(--gradient-1); color: #fff; transform: translateX(4px); }
.sv2-detail-title { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--text-primary); line-height: 1.1; letter-spacing: -1px; margin-top: 8px; }
.sv2-detail-sub { color: var(--text-secondary); font-size: 1.15rem; line-height: 1.85; margin-top: 16px; max-width: 600px; }
.sv2-hero-icon-wrap {
  width: 160px; height: 160px; margin: 0 auto;
  background: rgba(14,165,233,0.06);
  border: 2px solid rgba(14,165,233,0.14);
  border-radius: 40px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.sv2-hero-icon-wrap::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 48px;
  border: 1px solid rgba(14,165,233,0.07);
}
.sv2-hero-icon-wrap i {
  font-size: 4.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sv2-about { background: var(--dark-3); }
.sv2-about-card {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--card-shadow);
}
.sv2-about-card--main { border-left: 4px solid var(--primary); }
.sv2-about-label {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.sv2-about-label i { color: var(--primary); }
.sv2-about-text { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.9; }
.sv2-about-text p { margin-bottom: 16px; }
.sv2-about-stats { display: flex; flex-direction: column; gap: 14px; }
.sv2-stat-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 14px; padding: 20px 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.sv2-stat-card:hover {
  border-color: rgba(14,165,233,0.20);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(14,165,233,0.08);
}
.sv2-stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,0.10), rgba(124,58,237,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--primary); flex-shrink: 0;
}
.sv2-stat-value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.sv2-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.sv2-about-highlights {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(124,58,237,0.05));
  border: 1px solid rgba(14,165,233,0.14);
  border-radius: 14px; padding: 24px 28px;
}
.sv2-about-hl-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 16px; }
.sv2-about-hl-list { list-style: none; padding: 0; margin: 0; }
.sv2-about-hl-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15,23,42,0.05);
}
.sv2-about-hl-list li:last-child { border-bottom: none; }
.sv2-about-hl-list li i { color: var(--emerald); font-size: 0.72rem; flex-shrink: 0; }
.sv2-features { position: relative; }
.sv2-feature-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  padding: 22px 24px; height: 100%;
  box-shadow: var(--card-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.sv2-feature-item:hover { border-color: rgba(14,165,233,0.20); transform: translateY(-3px); }
.sv2-feature-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.45; flex-shrink: 0; line-height: 1;
}
.sv2-feature-text { color: var(--text-primary); font-size: 0.95rem; font-weight: 500; line-height: 1.5; }
.sv2-process { background: var(--dark-3); position: relative; }
.sv2-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sv2-process-step {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius); padding: 32px 28px; text-align: center;
  box-shadow: var(--card-shadow);
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.sv2-process-step:hover { border-color: rgba(14,165,233,0.20); transform: translateY(-6px); }
.sv2-step-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.25; line-height: 1; margin-bottom: 12px;
}
.sv2-process-step h5 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.sv2-process-step p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin: 0; }
.sv2-faq { position: relative; }
.sv2-faq-list { display: flex; flex-direction: column; gap: 12px; }
.sv2-faq-item {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  transition: border-color 0.3s ease;
}
.sv2-faq-item[open] { border-color: rgba(14,165,233,0.22); }
.sv2-faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--text-primary); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}
.sv2-faq-item summary::-webkit-details-marker { display: none; }
.sv2-faq-item summary::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.8rem; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0;
}
.sv2-faq-item[open] summary::after { transform: rotate(180deg); }
.sv2-faq-item[open] summary { background: rgba(14,165,233,0.05); color: var(--primary); }
.sv2-faq-answer { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.85; }
.sv2-related { background: var(--dark-3); }
.sv2-related-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius); padding: 36px 24px;
  text-decoration: none; height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.sv2-related-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); border-color: rgba(255,255,255,0.98); }
.sv2-related-icon {
  width: 60px; height: 60px;
  background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.18);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: var(--transition-bounce);
}
.sv2-related-icon i { font-size: 1.5rem; color: var(--primary); }
.sv2-related-card:hover .sv2-related-icon {
  background: rgba(14,165,233,0.14); transform: scale(1.15);
  box-shadow: 0 0 24px rgba(14,165,233,0.14);
}
.sv2-related-card h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 14px; }
.sv2-related-arrow { color: var(--primary); font-size: 0.9rem; transition: transform 0.3s ease; }
.sv2-related-card:hover .sv2-related-arrow { transform: translateX(4px); }

/* â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1200px) { html { font-size: 16px; } }
@media (max-width: 992px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .section-padding { padding: 80px 0; }
  .hero-headline { font-size: 2.8rem; letter-spacing: -1px; }
  .top-bar-right span:first-child { display: none; }
  .cta-inner { padding: 70px 36px; }
  .sv2-process-grid { grid-template-columns: repeat(2, 1fr); }
  .sv2-hero-icon-wrap { width: 120px; height: 120px; border-radius: 30px; }
  .sv2-hero-icon-wrap i { font-size: 3.2rem; }
  .sv2-about-card { padding: 36px; }
}
@media (max-width: 768px) {
  html { font-size: 15.5px; }
  .section-padding { padding: 70px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; padding: 80px 0 50px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-subtext { font-size: 1.05rem; }
  .contact-card { padding: 32px; }
  .page-hero { padding: 120px 0 70px; }
  .cta-inner { padding: 60px 28px; border-radius: 20px; }
  .cta-title { font-size: 1.8rem; }
  .cta-sub { font-size: 1rem; }
  .service-card { padding: 32px 28px; }
  .testimonial-card { padding: 32px; }
  .marquee-item { font-size: 0.9rem; }
  .marquee-divider { margin: 0 18px; }
  .top-bar { display: none; }
  .floating-cta-widget { bottom: 16px; right: 8px; flex-direction: column; gap: 10px; }
  .fab-btn { width: 46px; height: 46px; font-size: 1.15rem; margin: 0; }
  .sidebar-sticky { position: static; }
  .industry-card { padding: 28px 14px; }
  .industry-card i { font-size: 1.8rem; margin-bottom: 10px; }
  .industry-card h6 { font-size: 0.85rem; }
  .about-highlight-card h3 { font-size: 2rem; }
  .about-highlights-section { padding: 50px 0; }
  .section-title { font-size: 2rem; }
  .section-desc { font-size: 0.95rem; }
  .btn-lg { padding: 12px 24px; font-size: 0.95rem; }
  .sv2-hero, .sv2-detail-hero { padding: 120px 0 60px; }
  .sv2-hero-stat { padding: 28px 36px; }
  .sv2-stat-number { font-size: 2.4rem; }
  .sv2-card-body { flex-direction: column; gap: 16px; }
  .sv2-card-arrow { align-self: flex-start; }
  .sv2-process-grid { grid-template-columns: 1fr; }
  .sv2-hero-icon-wrap { width: 100px; height: 100px; border-radius: 24px; }
  .sv2-hero-icon-wrap::before { inset: -8px; border-radius: 32px; }
  .sv2-hero-icon-wrap i { font-size: 2.5rem; }
  .sv2-about-card { padding: 28px; }
}
@media (max-width: 576px) {
  html { font-size: 15px; }
  .hero-headline { font-size: 1.85rem; }
  .hero-subtext { font-size: 0.95rem; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.9rem; }
  .floating-card { padding: 10px 16px; font-size: 0.85rem; }
  .contact-card { padding: 24px; }
  .cta-inner { padding: 48px 20px; border-radius: 16px; }
  .cta-title { font-size: 1.5rem; }
  .cta-sub { font-size: 0.92rem; }
  .fab-btn { width: 42px; height: 42px; font-size: 1rem; margin: 0; }
  .page-hero { padding: 100px 0 60px; }
  .page-hero .section-title { font-size: 1.7rem; }
  .service-card { padding: 28px 22px; }
  .why-card { padding: 28px 22px; }
  .process-card { padding: 28px 22px; }
  .industry-card { padding: 24px 12px; }
  .industry-card i { font-size: 1.5rem; }
  .industry-card h6 { font-size: 0.8rem; }
  .about-highlight-card { padding: 28px 14px; }
  .about-highlight-card h3 { font-size: 1.8rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { text-align: center; }
  .trust-avatars { justify-content: center; }
  .marquee-item { font-size: 0.82rem; }
  .marquee-divider { margin: 0 14px; }
  .btn-lg { padding: 11px 20px; font-size: 0.9rem; }
  .btn-primary-glow, .btn-outline-glow { font-size: 0.9rem; }
  .footer-premium { padding: 60px 0 0; }
  .footer-bottom { margin-top: 40px; padding: 20px 0; }
  .sv2-hero, .sv2-detail-hero { padding: 100px 0 50px; }
  .sv2-hero-title { font-size: 1.8rem; }
  .sv2-detail-title { font-size: 1.7rem; }
  .sv2-hero-sub, .sv2-detail-sub { font-size: 0.95rem; }
  .sv2-card-body { padding: 24px 20px; }
  .sv2-feature-item { padding: 16px 18px; }
  .sv2-about-card { padding: 22px; }
  .sv2-faq-item summary { padding: 16px 18px; font-size: 0.92rem; }
  .sv2-faq-answer { padding: 0 18px 16px; }
}

@media print {
  body { background: #fff; color: #000; }
  .navbar, .footer-premium, .hero-visual { display: none; }
}
