/* Lets Connect Custom Styles */
.lets-connect-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 22px;
}

.lets-connect-icon-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
.lets-connect-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  text-align: center;
}
.lets-connect-btn {
  background: linear-gradient(90deg, #6366f1, #38bdf8, #f472b6);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 38px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 8px 32px -10px #6366f199;
  cursor: pointer;
  transition: background 0.4s, transform 0.2s;
  margin-top: 8px;
}
.lets-connect-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px -14px #6366f1aa;
}
/* Hero Section Responsive Improvements */
/* Global variable so we can reference nav height outside navbar scope */
:root {
  --nav-h: 78px;
}
/* Apply top padding only to non-home pages so hero can custom-center */
body:not(.home-page) {
  padding-top: var(--nav-h);
}
/* ---------- Global Modern Navbar (Reusable) ---------- */
.sfz-navbar {
  --nav-h: 78px;
  /* Dark translucent base so white nav text is readable */
  --nav-bg: rgba(10, 18, 32, 0.72);
  --nav-border: rgba(255, 255, 255, 0.08);
  --nav-glow: #6366f155;
  --grad-1: #38bdf8;
  --grad-2: #6366f1;
  --grad-3: #f472b6;
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1200;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: linear-gradient(150deg, var(--nav-bg), rgba(15, 23, 42, 0.85));
  border-bottom: 1px solid var(--nav-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfz-nav-inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(14px, 4vw, 42px);
}
.sfz-brand img {
  height: 46px;
  width: auto;
  max-width: 75px;
  display: block;
  border-radius: 8px;
  border: none; /* remove debug red border */
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Responsive logo sizes */
@media (max-width: 980px) {
  .sfz-brand img {
    height: 40px;
    max-width: 200px;
  }
}
@media (max-width: 600px) {
  .sfz-brand img {
    height: 40px;
    max-width: 180px;
    width: auto;
  }
}
.sfz-links {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex: 1;
  align-items: center;
}
.sfz-links > li {
  position: relative;
}
.sfz-links .sfz-mobile-actions {
  display: none;
}
.sfz-links a,
.sfz-drop-label {
  --p-x: 18px;
  --p-y: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--p-y) var(--p-x);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  border-radius: 14px;
  transition: 0.25s;
}
.sfz-links a::before,
.sfz-drop-label::before {
  content: none !important;
}
.sfz-links a:hover::before,
.sfz-drop-label:hover::before {
  opacity: 0;
}
.sfz-links a,
.sfz-drop-label {
  z-index: 1;
}
.sfz-links a span.indicator {
  display: none;
}
.sfz-links a.active {
  color: #38bdf8;
}
.sfz-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 34%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--grad-1),
    var(--grad-2),
    var(--grad-3)
  );
  transform: translateX(-50%);
}
/* Enhanced desktop hover contrast so black text doesn't disappear */
@media (min-width: 981px) {
  .sfz-links a,
  .sfz-drop-label {
    background: none !important;
  }
  .sfz-links a:hover,
  .sfz-links a:focus,
  .sfz-drop-label:hover {
    color: #38bdf8;
    text-shadow: none;
  }
  .sfz-links a:active {
    transform: none;
  }
}
/* Dropdown */
.sfz-drop {
  position: relative;
}
.sfz-drop-toggle {
  display: none;
}
.sfz-drop-label {
  cursor: pointer;
}
.sfz-drop-panel {
  --panel-bg: linear-gradient(150deg, #ffffffee, #f1f5f9ee);
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  min-width: 230px;
  padding: 14px 10px;
  border-radius: 20px;
  background: var(--panel-bg);
  box-shadow: 0 18px 60px -18px #0f172a33, 0 4px 18px -4px #6366f122;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: 0.4s cubic-bezier(0.4, 0.2, 0.15, 1);
}
.sfz-drop-panel a {
  padding: 10px 14px;
  border-radius: 14px;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sfz-drop-panel a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--grad-1), var(--grad-2));
  opacity: 0;
  transition: 0.4s;
  mix-blend-mode: overlay;
}
.sfz-drop-panel a:hover::after {
  opacity: 0.18;
}
.sfz-drop-toggle:checked + .sfz-drop-label + .sfz-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
/* Fallback: also open on hover / focus for non-touch (desktop) or if checkbox click is blocked */
@media (hover: hover) and (pointer: fine) {
  .sfz-drop:hover > .sfz-drop-panel,
  .sfz-drop:focus-within > .sfz-drop-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
}
/* Ensure dropdown is above hero or other positioned elements */
.sfz-drop-panel { z-index: 1600; }
/* Actions */
.sfz-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Global action buttons (unified from index) */
.verify-btn,
.get-started {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 0 !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.25s;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  border: 0;
}
.verify-btn {
  background: linear-gradient(90deg, #ffffff, #eef2ff);
  color: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.06);
}
.verify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
}
.get-started {
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
  box-shadow: 0 10px 34px -14px rgba(99, 102, 241, 0.5);
}
.get-started:hover {
  transform: translateY(-3px);
}
.verify-btn:active,
.get-started:active {
  transform: translateY(-1px);
}
/* Hamburger (mobile) */
.sfz-burger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.sfz-burger span {
  position: absolute;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
  transition: 0.5s;
}
.sfz-burger span:nth-child(1) {
  transform: translateY(-8px);
}
.sfz-burger span:nth-child(3) {
  transform: translateY(8px);
}
#sfz-nav-toggle:checked + label span:nth-child(1) {
  transform: rotate(45deg);
}
#sfz-nav-toggle:checked + label span:nth-child(2) {
  opacity: 0;
}
#sfz-nav-toggle:checked + label span:nth-child(3) {
  transform: rotate(-45deg);
}
/* Mobile layout */
#sfz-nav-toggle {
  display: none;
}
@media (max-width: 980px) {
  .sfz-nav-inner {
    gap: 14px;
  }
  /* Stack mobile panel */
  .sfz-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h);
    bottom: 0;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    background: linear-gradient(165deg, #020617 0%, #0f172a 45%, #1e293b 100%);
    padding: 28px 20px 180px;
    border-bottom: 1px solid #1e293b;
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 14px 40px -16px #000;
    display: none;
  }
  #sfz-nav-toggle:checked ~ .sfz-links {
    display: flex;
  }
  .sfz-links > li {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }
  .sfz-links .sfz-mobile-actions {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0aa;
  }
  .sfz-links .sfz-mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .sfz-links .sfz-mobile-btns a {
    width: 100%;
    max-width: 320px;
  }
  .sfz-links .sfz-mobile-btns a.verify-btn {
    background: linear-gradient(95deg, #fbbf24, #f59e0b);
    color: #111;
    font-weight: 700;
  }
  .sfz-links .sfz-mobile-btns a.verify-btn:hover {
    filter: brightness(1.05);
  }
  .sfz-links a,
  .sfz-drop-label {
    justify-content: center;
    width: 100%;
    color: #ffffff;
  }
  .sfz-links a::before,
  .sfz-drop-label::before {
    background: linear-gradient(120deg, #1e293b, #334155);
  }
  .sfz-links a:hover::before,
  .sfz-drop-label:hover::before {
    opacity: 0.55;
  }
  .sfz-drop-panel {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 2px 0 10px;
    min-width: 0;
    grid-template-columns: 1fr;
  }
  .sfz-drop-panel a {
    justify-content: center;
    color: #e2e8f0;
  }
  .sfz-drop-panel a:hover::after {
    opacity: 0.25;
  }
  .sfz-actions {
    display: none !important;
  }
  .sfz-burger {
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .sfz-nav-inner {
    gap: 12px;
  }
  .sfz-links a,
  .sfz-drop-label {
    font-size: 0.9rem;
    padding: 9px 12px;
  }
  .verify-btn,
  .get-started {
    font-size: 0.78rem;
    padding: 7px 12px;
    border-radius: 10px;
  }
  .sfz-brand img {
    height: 40px;
    max-width: 380px;
    width: auto;
  }
}
/* End Global Navbar */
.hero-section {
  width: 100%;
  max-width: none;
  min-height: clamp(520px, calc(100vh - var(--nav-h) - 40px), 820px);
  margin: 0;
  padding: 40px clamp(1rem, 4vw, 2rem) 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.hero-content {
  max-width: 980px;
  width: 100%;
}
/* Allow spans inside hero to wrap safely if needed */
.hero-typing span {
  word-break: break-word;
}
/* Fluid scale: shrink hero card proportionally below 880px down to 480px width */
@media (max-width: 880px) {
  .hero-section {
    padding: 32px clamp(0.8rem, 5vw, 1.6rem) 48px;
  }
  .hero-scale-wrap {
    transform: scale(calc(0.75 + (0.25 * (100vw - 480px) / 400)));
    transform-origin: top center;
    max-width: 980px;
    width: 100%;
  }
  .hero-typing {
    font-size: clamp(2rem, 6.2vw, 2.8rem);
  }
}
@media (max-width: 560px) {
  .hero-section {
    padding: 26px clamp(0.7rem, 5vw, 1.2rem) 40px;
  }
  .hero-typing {
    font-size: clamp(1.55rem, 7.6vw, 2.05rem);
    line-height: 1.18;
    letter-spacing: 0.3px;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  max-width: 980px;
  padding: 32px 18px;
  margin: 0 auto;
  z-index: 1;
  background: transparent;
}
.hero-bg img {
  display: none;
}

/* Dim overlay for better text contrast */
/* Pure CSS Typing Effect for Hero Text */
.hero-typing {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
  margin: 0;
}
.hero-typing span {
  opacity: 0;
  animation: typingFadeIn 0.1s forwards;
  display: inline-block;
  white-space: pre;
  filter: none !important;
}
.hero-typing span.plain {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
}
.hero-typing .gradient-text {
  background: linear-gradient(90deg, #f472b6, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

/* CSS-only typing animation for single-line hero heading */
.hero-typing .typed {
  opacity: 1; /* override per-span fade rules for this element */
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border-right: 0.14em solid transparent; /* caret hidden by default */
  width: 0; /* start closed */
  animation: typing 1.6s steps(23, end) 0.2s forwards,
    blinkDuring 1.6s linear 0.2s forwards;
  will-change: width;
}

/* Company name types after the main phrase */
.hero-typing .typed-company {
  opacity: 1;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border-right: 0.14em solid transparent; /* caret hidden by default */
  width: 0;
  /* Delay: initial delay 0.2s + typing 1.6s + small pause 0.4s = 2.2s */
  animation: typing 1.6s steps(25, end) 2.2s forwards,
    blinkDuring 1.6s linear 2.2s forwards;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blink only during typing — ends transparent so caret disappears when typing completes */
@keyframes blinkDuring {
  0% {
    border-right-color: rgba(255, 255, 255, 0.95);
  }
  30% {
    border-right-color: transparent;
  }
  60% {
    border-right-color: rgba(255, 255, 255, 0.95);
  }
  90% {
    border-right-color: transparent;
  }
  100% {
    border-right-color: transparent;
  }
}

/* Modern Portfolio Showcase */
.portfolio-section {
  position: relative;
  padding: 60px clamp(1.3rem, 5vw, 4rem) 120px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, #1e293b, #020617 70%);
}
.portfolio-head {
  max-width: 1200px;
  margin: 0 auto 54px;
  text-align: center;
}
.portfolio-title-xl {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation: portGrad 12s linear infinite;
}
@keyframes portGrad {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.portfolio-title-xl span {
  filter: drop-shadow(0 4px 14px #6366f155);
}
.portfolio-sub {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #cbd5e1;
  font-weight: 500;
}
.portfolio-showcase-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 38px;
  position: relative;
}
.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: linear-gradient(
    140deg,
    rgba(30, 41, 59, 0.78),
    rgba(15, 23, 42, 0.94)
  );
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  transition: 0.5s;
  box-shadow: 0 12px 40px -18px #0f172acc, 0 4px 24px -10px #000 inset;
  backdrop-filter: blur(14px) saturate(1.4);
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 35% 25%,
    rgba(99, 102, 241, 0.4),
    transparent 70%
  );
  opacity: 0.4;
  mix-blend-mode: overlay;
  transition: 0.6s;
}
.work-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 70px -20px #6366f199, 0 10px 50px -16px #0f172acc;
}
.work-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1s transform;
}
.work-card:hover .work-media img {
  transform: scale(1.08);
}
.work-info {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.work-info h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff;
}
.work-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #94a3b8;
  font-weight: 500;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.work-tags span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 11px;
  font-size: 0.6rem;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #e2e8f0;
  border-radius: 12px;
  text-transform: uppercase;
}
.work-card:hover .work-tags span {
  background: linear-gradient(120deg, #38bdf8, #6366f1);
  color: #fff;
  border-color: transparent;
}
.portfolio-cta-row {
  margin-top: 60px;
  text-align: center;
}
.portfolio-cta {
  display: inline-block;
  padding: 16px 34px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 14px;
  background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 10px 40px -15px #6366f199;
  transition: 0.5s;
}
.portfolio-cta:hover {
  background-position: 100% 50%;
  transform: translateY(-4px);
}
@media (max-width: 820px) {
  .portfolio-section {
    padding: 100px 1.2rem 100px;
  }
  .portfolio-showcase-grid {
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .portfolio-section {
    padding: 90px 1.1rem 90px;
  }
  .portfolio-title-xl {
    font-size: 2.3rem;
  }
}
@keyframes typingFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
/* Removed legacy #technology-section styles (old design retired) */

/* Fixed 3x2 layout for six core cards (desktop) */
.services-grid-pro {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 980px) {
  .services-grid-pro {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 620px) {
  .services-grid-pro {
    grid-template-columns: 1fr !important;
  }
}
/* Remove unwanted scrollbars from specific elements */
.navbar,
.navbar-container,
.nav-links,
.nav-links-row {
  overflow: visible !important;
}
.hero-bg img,
.about-photo-card,
.about-photo {
  overflow: hidden !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
  scrollbar-width: none !important;
}
.about-photo-card::-webkit-scrollbar,
.about-photo::-webkit-scrollbar,
.hero-bg img::-webkit-scrollbar {
  display: none !important;
}
/* Prevent horizontal scroll only on root, not all elements */
html,
body {
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}
/* Global Tagline (centered) */
.site-tagline {
  text-align: center;
  font-size: clamp(0.05rem, 1.64vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.45px;
  margin: 14px auto 4px;
  line-height: 1.05;
  background: linear-gradient(90deg, #f472b6, #38bdf8, #6366f1);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradMove 10s linear infinite;
}
.site-tagline span {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Core Six Pillars (capability suite) */
.core-six {
  position: relative;
  padding: 90px clamp(1.2rem, 5vw, 3.2rem) 70px;
  overflow: hidden;
  background: radial-gradient(circle at 25% 25%, #1e293b, #020617 70%);
}
.core-six::before,
.core-six::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.core-six::before {
  background: radial-gradient(
    circle at 75% 70%,
    rgba(99, 102, 241, 0.35),
    transparent 60%
  );
  filter: blur(40px);
  opacity: 0.7;
}
.core-six::after {
  background: repeating-linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.04) 0 2px,
    transparent 2px 90px
  );
  mix-blend-mode: overlay;
  opacity: 0.3;
}
.core-six-inner {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.core-six-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-align: center;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation: portGrad 14s linear infinite;
}
.core-six-sub {
  margin: 0;
  max-width: 760px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #cbd5e1;
  font-weight: 500;
}
.core-six-grid {
  width: 100%;
  display: grid;
  /* Fixed 3-column layout for consistent 3-up / 3-down appearance on desktop */
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.core-six-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px 30px;
  background: linear-gradient(
    140deg,
    rgba(30, 41, 59, 0.78),
    rgba(15, 23, 42, 0.94)
  );
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 28px;
  min-height: 200px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 10px 40px -15px #000 inset, 0 8px 32px -12px #0f172acc;
  transition: 0.5s;
  backdrop-filter: blur(14px) saturate(1.4);
}
.core-six-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(99, 102, 241, 0.45),
    transparent 70%
  );
  opacity: 0.45;
  mix-blend-mode: overlay;
  transition: 0.6s;
}
.core-six-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6, #38bdf8);
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  transition: 0.6s;
}
.core-six-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px -18px #6366f1aa, 0 8px 40px -10px #0f172acc;
}
.core-six-card:hover::after {
  animation: borderShift 4s linear infinite;
}
@keyframes borderShift {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.core-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  background: linear-gradient(120deg, #38bdf8, #6366f1);
  box-shadow: 0 4px 18px -6px #6366f199;
  margin: 0 0 6px;
  font-weight: 700;
}
.core-six-card h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0.4px;
  font-weight: 700;
  color: #fff;
}
.core-six-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a3b8;
  font-weight: 500;
}
@media (max-width: 840px) {
  .core-six {
    padding: 80px 1.3rem 60px;
  }
  .core-six-grid {
    gap: 28px;
  }
}
@media (max-width: 580px) {
  .core-six-title {
    font-size: 2rem;
  }
  .site-tagline {
    font-size: 1.15rem;
  }
}

/* Force 3/3 grid layout for six feature/service cards */
.features-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .features-six-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .features-six-grid {
    grid-template-columns: 1fr;
  }
}
/* Ensure combined class wins over page-level .content-grid definitions */
.content-grid.features-six-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 980px) {
  .content-grid.features-six-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 620px) {
  .content-grid.features-six-grid {
    grid-template-columns: 1fr !important;
  }
}
/* --- Desktop Navbar Improvements: spacing, centering, modern look --- */
/* --- Simple, clean navbar with padding between buttons --- */
.navbar {
  width: 100%;
  background: #23272f;
  padding: 0;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
}
.nav-links-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #353b48;
  color: #f472b6;
}
/* Services dropdown */
.nav-item {
  position: relative;
}
.nav-item.has-dropdown > .nav-link-with-dd {
  position: relative;
  padding-right: 26px;
}
.nav-item.has-dropdown > .nav-link-with-dd::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.nav-item.has-dropdown:hover > .nav-link-with-dd::after {
  transform: translateY(-50%) rotate(225deg);
}
.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 14px 16px;
  background: linear-gradient(
    140deg,
    rgba(30, 41, 59, 0.92),
    rgba(15, 23, 42, 0.96)
  );
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 14px 40px -18px #000, 0 4px 16px -6px #0f172acc;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s;
  z-index: 50;
}
.nav-item:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0);
  transition: 0.35s;
}
.nav-dropdown a:hover {
  background: linear-gradient(120deg, #38bdf8, #6366f1);
  color: #fff;
}
@media (max-width: 900px) {
  .nav-item.has-dropdown {
    position: static;
  }
  .nav-item.has-dropdown .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 6px;
  }
  .nav-item.has-dropdown .nav-dropdown a {
    background: #353b48;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .nav-item.has-dropdown .nav-dropdown a:hover {
    background: linear-gradient(120deg, #38bdf8, #6366f1);
  }
  .nav-item.has-dropdown > .nav-link-with-dd::after {
    display: none;
  }
}
/* --- Mobile Navbar: not sticky, no overflow, better UI, no horizontal scroll --- */
@media (max-width: 700px) {
  .about-photo-card,
  .about-icon {
    display: none !important;
  }
  .nav-links-row {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
  }
  .nav-links-row-top,
  .nav-links-row-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  .nav-links-row-top {
    margin-bottom: 12px;
  }
  .nav-links-row-bottom {
    margin-bottom: 0;
  }
  .about-photo {
    display: none !important;
  }
  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }
  .navbar,
  .navbar-container {
    overflow-x: hidden !important;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .navbar {
    width: 100%;
    background: #23272f;
    padding: 10px 0 10px 0;
    margin-bottom: 8px;
    position: static !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    z-index: auto !important;
  }
  .navbar-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 32px 12px 32px;
    margin: 0 auto 12px auto;
    background: #23272f;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 8px #0002;
  }
  .logo {
    margin-bottom: 12px;
    justify-content: center;
    display: flex;
    padding-top: 8px;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 10px;
    padding: 0 18px 12px 18px;
  }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 1rem;
    border: none;
    background: none;
    margin: 0 0 10px 0;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
  }
  .nav-links a:hover {
    background: #353b48;
    color: #f472b6;
  }
}
/* --- Responsive Navbar: 2-row nav links on mobile --- */
/* Removed 2-row nav links on mobile for simplicity */
.footer-services {
  margin-top: 20px;
  text-align: center;
}
/* Footer Pro */
.footer-pro {
  position: relative;
  padding: 120px clamp(1.2rem, 5vw, 4rem) 70px;
  background: radial-gradient(circle at 15% 20%, #0f172a, #020617 70%);
  overflow: hidden;
}
.footer-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.03) 0 2px,
    transparent 2px 90px
  );
  mix-blend-mode: overlay;
  opacity: 0.3;
}
.footer-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 80%,
    rgba(99, 102, 241, 0.22),
    transparent 60%
  );
  filter: blur(40px);
  opacity: 0.9;
}
.footer-pro-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  align-items: start;
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
}
.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px #6366f155);
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  color: #94a3b8;
  font-weight: 600;
}
.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #f1f5f9;
  font-weight: 800;
}
.brand-desc {
  margin: 0 0 26px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #94a3b8;
  font-weight: 500;
  max-width: 340px;
}
.brand-socials {
  display: flex;
  gap: 12px;
}
.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #1e293b, #0f172a);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.45s;
}
.soc-btn:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(140deg, #38bdf8, #6366f1);
  box-shadow: 0 8px 28px -12px #6366f199;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 50px;
}
.f-col h3 {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #e2e8f0;
  font-weight: 700;
}
.f-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-col a {
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: #94a3b8;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.35s;
}
.f-col a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  transition: 0.4s;
}
.f-col a:hover {
  color: #fff;
}
.f-col a:hover:before {
  width: 26px;
}
.newsletter .news-copy {
  margin: 0 0 14px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
}
.news-form {
  display: flex;
  gap: 10px;
  margin: 0 0 8px;
}
.news-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 500;
  outline: none;
  transition: 0.35s;
}
.news-form input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}
.news-form button {
  background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6);
  background-size: 220% 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 12px 18px;
  border: none;
  border-radius: 14px;
  font-size: 0.72rem;
  cursor: pointer;
  box-shadow: 0 8px 26px -14px #6366f199;
  transition: 0.5s;
}
.news-form button:hover {
  background-position: 100% 50%;
  transform: translateY(-4px);
}
.news-privacy {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.6px;
  color: #64748b;
  font-weight: 600;
}
.footer-mid {
  display: flex;
  justify-content: center;
}
.metrics-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.m-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.m-item .m-num {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.m-item .m-label {
  font-size: 0.55rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.legal {
  font-size: 0.65rem;
  letter-spacing: 0.6px;
  color: #64748b;
  font-weight: 600;
}
.legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.legal-links a {
  font-size: 0.6rem;
  letter-spacing: 0.6px;
  color: #94a3b8;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
}
.legal-links a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .footer-pro {
    padding: 100px 1.1rem 60px;
  }
  .footer-top {
    gap: 50px;
  }
}
@media (max-width: 640px) {
  .footer-columns {
    gap: 40px;
  }
  .metrics-row {
    gap: 34px;
  }
}
.footer-services-title {
  font-weight: 700;
  font-size: 1.08rem;
  color: #22292f;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.footer-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.footer-services-list a {
  color: #22292f;
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.98rem;
  padding: 2px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, opacity 0.2s;
}
.footer-services-list a:hover {
  color: #f472b6;
  background: rgba(244, 114, 182, 0.08);
  opacity: 1;
}
/* Ultimate Support Section - Super Modern Glassmorphism UI */
.support-ultimate {
  position: relative;
  padding: 100px 0 80px 0;
  background: transparent;
  overflow: visible;
  z-index: 1;
}
.support-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #3b82f6 0%, #a21caf 100%);
  opacity: 0.13;
  filter: blur(32px) saturate(180%);
  pointer-events: none;
  animation: supportBgMove 18s ease-in-out infinite;
}
@keyframes supportBgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.support-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.support-float-icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.18;
  filter: blur(0.5px);
  animation: floatSupportIcon 10s infinite alternate ease-in-out;
}
.support-float-1 {
  left: 6%;
  top: 10%;
  animation-delay: 0s;
}
.support-float-2 {
  left: 80%;
  top: 18%;
  animation-delay: 2s;
}
.support-float-3 {
  left: 12%;
  top: 80%;
  animation-delay: 4s;
}
.support-float-4 {
  left: 70%;
  top: 70%;
  animation-delay: 3s;
}
.support-float-5 {
  left: 50%;
  top: 90%;
  animation-delay: 1.5s;
}
@keyframes floatSupportIcon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.08);
  }
}
.support-ultimate-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1px;
  z-index: 2;
  position: relative;
}
.support-ultimate-title .gradient-text {
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.support-ultimate-sub {
  text-align: center;
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  position: relative;
}
.support-ultimate-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto 32px auto;
  z-index: 2;
  position: relative;
}
.support-ultimate-card {
  background: rgba(24, 28, 40, 0.65);
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 #00000033, 0 0 0 2.5px #fff2 inset;
  padding: 22px 14px 18px 14px;
  min-width: 180px;
  max-width: 210px;
  flex: 0 0 210px;
  position: relative;
  border: none;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 4px solid #22d3ee44;
  border-right: 4px solid #f472b644;
}
.support-ultimate-card-gradient {
  border-bottom: 4px solid #f472b6;
  border-right: 4px solid #22d3ee;
}
.support-ultimate-card-blue {
  border-bottom: 4px solid #3b82f6;
  border-right: 4px solid #22d3ee;
}
.support-ultimate-card-orange {
  border-bottom: 4px solid #fbbf24;
  border-right: 4px solid #f472b6;
}
.support-ultimate-card-green {
  border-bottom: 4px solid #22d3ee;
  border-right: 4px solid #a3ff6f;
}
.support-ultimate-card:hover,
.support-ultimate-card:focus {
  background: linear-gradient(120deg, #3b82f6 0%, #a21caf 100%);
  box-shadow: 0 0 48px 0 #f472b6cc, 0 2px 32px 0 #22d3ee99;
  border-bottom: 4px solid #f472b6;
  border-right: 4px solid #22d3ee;
  transform: translateY(-12px) scale(1.05) rotate(-1deg);
  z-index: 2;
}
.support-ultimate-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: 0 2px 12px #00000033;
  background: rgba(255, 255, 255, 0.08);
}
.support-ultimate-title-card {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 18px;
}
.support-ultimate-desc {
  color: #e5e7eb;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 400;
}
.support-ultimate-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #22d3ee;
  text-decoration: none;
  margin-top: auto;
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: text-shadow 0.2s;
}
.support-ultimate-card:hover .support-ultimate-link,
.support-ultimate-card:focus .support-ultimate-link {
  text-shadow: 0 0 8px #22d3ee99;
}
.support-ultimate-footer {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}
.support-ultimate-footer-card {
  background: rgba(24, 28, 40, 0.65);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.support-footer-icon {
  font-size: 1.5rem;
}
@media (max-width: 1100px) {
  .support-ultimate-grid {
    flex-wrap: wrap;
    gap: 14px;
  }
  .support-ultimate-card {
    flex: 1 1 45%;
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .support-ultimate-title {
    font-size: 2rem;
  }
  .support-ultimate-grid {
    flex-direction: column;
    gap: 16px;
  }
  .support-ultimate-card {
    min-width: 0;
    max-width: 100%;
  }
}
/* Help/Support Section */
.help-section {
  padding: 80px 0 60px 0;
  background: transparent;
  position: relative;
  overflow: visible;
}
.help-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #22d3ee, #b983ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0;
  letter-spacing: 1px;
}
.help-title-gradient {
  background: linear-gradient(90deg, #b983ff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.help-subtitle {
  text-align: center;
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.help-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
.help-card {
  background: rgba(24, 28, 40, 0.85);
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 #00000033;
  padding: 22px 16px 18px 16px;
  min-width: 180px;
  max-width: 220px;
  flex: 0 0 220px;
  position: relative;
  border: none;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .help-grid {
    flex-wrap: wrap;
  }
  .help-card {
    flex: 1 1 45%;
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .help-grid {
    flex-direction: column;
    gap: 16px;
  }
  .help-card {
    min-width: 0;
    max-width: 100%;
  }
}
.help-card-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 18px;
}
.help-card-title-gradient {
  background: linear-gradient(90deg, #b983ff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.help-card-desc {
  color: #e5e7eb;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 400;
}
.help-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.help-articles {
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 18px;
  background: #23272f;
  color: #fff;
  box-shadow: 0 1.5px 8px 0 #00000033;
}
.help-articles-pink {
  background: linear-gradient(90deg, #f472b6, #a21caf);
  color: #fff;
}
.help-articles-blue {
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  color: #fff;
}
.help-articles-orange {
  background: linear-gradient(90deg, #fbbf24, #f472b6);
  color: #fff;
}
.help-articles-green {
  background: linear-gradient(90deg, #22d3ee, #a3ff6f);
  color: #222;
}
.help-arrow {
  font-size: 1.3rem;
  color: #fff;
  margin-left: 8px;
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.help-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: 0 2px 12px #00000033;
}
.help-icon-gradient {
  background: linear-gradient(135deg, #b983ff 0%, #f472b6 100%);
}
.help-icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
}
.help-icon-orange {
  background: linear-gradient(135deg, #fbbf24 0%, #f472b6 100%);
}
.help-icon-green {
  background: linear-gradient(135deg, #22d3ee 0%, #a3ff6f 100%);
}
.help-card-gradient {
  border-bottom: 4px solid #f472b6;
  border-right: 4px solid #22d3ee;
}
.help-card-blue {
  border-bottom: 4px solid #3b82f6;
  border-right: 4px solid #22d3ee;
}
.help-card-orange {
  border-bottom: 4px solid #fbbf24;
  border-right: 4px solid #f472b6;
}
.help-card-green {
  border-bottom: 4px solid #22d3ee;
  border-right: 4px solid #a3ff6f;
}
.help-card:hover,
.help-card:focus {
  background: linear-gradient(120deg, #3b82f6 0%, #a21caf 100%);
  box-shadow: 0 0 40px 0 #f472b6cc, 0 2px 24px 0 #22d3ee99;
  border-bottom: 4px solid #f472b6;
  border-right: 4px solid #22d3ee;
  transform: translateY(-10px) scale(1.04) rotate(-1deg);
  z-index: 2;
}
.help-card:hover .help-card-title,
.help-card:focus .help-card-title {
  color: #fff;
  background: linear-gradient(90deg, #b983ff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.help-card:hover .help-articles,
.help-card:focus .help-articles {
  filter: brightness(1.1) contrast(1.2);
  box-shadow: 0 2px 12px #22d3ee99;
}
.help-card:hover .help-arrow,
.help-card:focus .help-arrow {
  color: #fff;
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.help-card:hover .help-icon,
.help-card:focus .help-icon {
  filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 8px #22d3ee99);
}
@media (max-width: 900px) {
  .help-grid {
    flex-direction: column;
    gap: 24px;
  }
  .help-card {
    max-width: 100%;
    min-width: 0;
  }
}
/* Client Feedback Section */
.feedback-section {
  padding: 80px 0 60px 0;
  min-height: 100vh;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.feedback-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #b983ff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.feedback-subtitle {
  text-align: center;
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.feedback-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .feedback-grid {
    flex-wrap: wrap;
  }
  .feedback-card {
    flex: 1 1 45%;
    min-width: 280px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .feedback-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feedback-card {
    min-width: 0;
    max-width: 100%;
  }
}
.feedback-card {
  background: rgba(24, 28, 40, 0.85);
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 #00000033;
  padding: 36px 32px 32px 32px;
  min-width: 320px;
  max-width: 370px;
  flex: 1 1 320px;
  position: relative;
  border: none;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}
.feedback-card .quote-icon {
  position: absolute;
  top: -32px;
  left: 32px;
  background: #b983ff;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px #b983ff55;
  border: 4px solid #18181b;
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}
.feedback-card .profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.feedback-card .profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #22d3ee;
  box-shadow: 0 2px 8px #00000033;
}
.feedback-card .profile-info {
  display: flex;
  flex-direction: column;
}
.feedback-card .profile-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.feedback-card .profile-role {
  color: #a1a1aa;
  font-size: 0.98rem;
  font-weight: 500;
}
.feedback-card .stars {
  margin-left: auto;
  color: #ffe066;
  font-size: 1.2rem;
  display: flex;
  gap: 2px;
}
.feedback-card .feedback-text {
  color: #e5e7eb;
  font-size: 1.08rem;
  margin: 18px 0 0 0;
  font-style: italic;
  line-height: 1.6;
  min-height: 80px;
}
/* Enhanced hover effect for all cards */
.feedback-card:hover,
.feedback-card.feedback-card-active:hover {
  background: linear-gradient(120deg, #3b82f6 0%, #a21caf 100%);
  box-shadow: 0 0 40px 0 #f472b6cc, 0 2px 24px 0 #22d3ee99;
  border: 2.5px solid #f472b6;
  transform: translateY(-10px) scale(1.04) rotate(-1deg);
  z-index: 2;
}
.feedback-card:hover .profile-name,
.feedback-card.feedback-card-active:hover .profile-name {
  color: #fff;
  background: linear-gradient(90deg, #b983ff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.feedback-card:hover .profile-role,
.feedback-card.feedback-card-active:hover .profile-role {
  color: #22d3ee;
}
.feedback-card:hover .feedback-text,
.feedback-card.feedback-card-active:hover .feedback-text {
  color: #fff;
  text-shadow: 0 0 8px #22d3ee99;
}
.feedback-card:hover .stars,
.feedback-card.feedback-card-active:hover .stars {
  color: #ffe066;
  text-shadow: 0 0 8px #ffe06699;
}
.feedback-card:hover .quote-icon,
.feedback-card.feedback-card-active:hover .quote-icon {
  background: #f472b6;
  box-shadow: 0 2px 16px #f472b6aa;
}
@media (max-width: 900px) {
  .feedback-grid {
    flex-direction: column;
    gap: 24px;
  }
  .feedback-card {
    max-width: 100%;
    min-width: 0;
  }
}
/* Modern Services Section */
.services-modern {
  padding: 80px 0 60px 0;
  background: transparent;
}
.services-title {
  font-family: inherit;
}
.services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ultra modern team redesign */
.careers-title {
      margin: 0;
      font-size: clamp(2.4rem, 5.2vw, 3.9rem);
      font-weight: 800;
      letter-spacing: .6px;
      line-height: 1.06;
      background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
      -webkit-background-clip: text;
      color: transparent;
      background-size: 200% 100%;
      animation: gradSlide 12s linear infinite;
    }
.modern-team {
  position: relative;
  padding: 60px clamp(1.2rem, 5vw, 4rem) 140px;
  background: radial-gradient(circle at 20% 15%, #111b2b, #020617 70%);
  overflow: hidden;
}
.modern-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.03) 0 2px,
    transparent 2px 90px
  );
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.modern-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 85%,
    rgba(99, 102, 241, 0.22),
    transparent 60%
  );
  filter: blur(40px);
  opacity: 0.9;
}
.team-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.team-card-pro {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px 36px;
  border-radius: 34px;
  background: linear-gradient(
    140deg,
    rgba(30, 41, 59, 0.78),
    rgba(15, 23, 42, 0.94)
  );
  border: 1px solid rgba(56, 189, 248, 0.22);
  overflow: hidden;
  isolation: isolate;
  transition: 0.55s;
  backdrop-filter: blur(18px) saturate(1.45);
  box-shadow: 0 14px 46px -18px #0f172acc, 0 4px 28px -12px #000 inset;
}
.team-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(99, 102, 241, 0.55),
    transparent 70%
  );
  opacity: 0.45;
  mix-blend-mode: overlay;
  transition: 0.7s;
}
.team-card-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6, #38bdf8);
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  transition: 0.7s;
}
.team-card-pro:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 26px 80px -22px #6366f1aa, 0 12px 60px -20px #0f172acc;
}
.team-card-pro:hover::after {
  animation: borderShift 5s linear infinite;
}
.team-img-wrap {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 34px -14px #000;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s transform, 1s filter;
  filter: saturate(1.05) contrast(1.05);
}
.team-card-pro:hover .team-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.15);
}
.team-card-pro h3 {
  margin: 4px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.team-card-pro .role {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: #94a3b8;
}
.team-card-pro .bio {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
  flex-grow: 1;
}
.team-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}
.team-chip {
  font-size: 0.55rem;
  letter-spacing: 0.8px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  text-transform: uppercase;
}
.team-card-pro:hover .team-chip {
  background: linear-gradient(120deg, #38bdf8, #6366f1);
  border-color: transparent;
}
.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, #38bdf8, #6366f1);
  box-shadow: 0 4px 18px -8px #6366f199;
  transition: 0.45s;
}
.team-socials a:hover {
  transform: translateY(-6px) rotate(-4deg);
}
@media (max-width: 860px) {
  .modern-team {
    padding: 120px 1.3rem 110px;
  }
  .team-grid-pro {
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .modern-team {
    padding: 100px 1.1rem 95px;
  }
  .services-title {
    font-size: 2.3rem;
  }
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card-modern {
  background: rgba(24, 28, 40, 0.55);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  border: 2.5px solid #22d3ee;
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
  transition: border 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
}
.service-card-modern .service-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffe066;
  margin-bottom: 12px;
  text-shadow: 0 0 12px #ffe06688;
}
.service-card-modern .service-main {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}
.service-card-modern .service-sub {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 8px;
  opacity: 0.85;
  text-align: center;
}
.service-card-modern:hover,
.service-card-modern.service-card-active {
  border: 2.5px solid #f472b6;
  background: linear-gradient(120deg, #3b82f6 0%, #a21caf 100%);
  box-shadow: 0 0 24px 0 #f472b6cc, 0 2px 16px 0 #00000022;
  z-index: 2;
}
.service-card-modern:hover .service-num,
.service-card-modern.service-card-active .service-num {
  color: #fff;
  text-shadow: 0 0 18px #fff, 0 0 8px #f472b6;
}
.service-card-modern:hover .service-main,
.service-card-modern.service-card-active .service-main {
  color: #fff;
}
.service-card-modern:hover .service-sub,
.service-card-modern.service-card-active .service-sub {
  color: #fff;
  opacity: 1;
}
@media (max-width: 900px) {
  .services-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .services-title {
    font-size: 1.5rem;
  }
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card-modern {
    padding: 18px 8px 14px 8px;
    min-height: 120px;
  }
  .service-card-modern .service-num {
    font-size: 1.3rem;
  }
}
.about-title-center {
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .about-title-center {
    font-size: 2rem;
  }
}
.about-photo-overlay {
  position: relative;
  width: 340px;
  height: 220px;
}
.about-photo-overlay .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #00000022;
  display: block;
}
.about-photo-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #000000cc, 0 0 8px #22d3ee99;
  background: rgba(0, 0, 0, 0.32);
  padding: 8px 32px;
  border-radius: 18px;
  pointer-events: none;
}
.about-photo-name {
  position: absolute;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  background: rgba(24, 28, 40, 0.55);
  border-radius: 12px;
  padding: 4px 14px;
  box-shadow: 0 1.5px 8px 0 #00000033;
  pointer-events: none;
  text-shadow: 0 1.5px 8px #00000099;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  animation: floatName 7s infinite alternate ease-in-out;
}
@keyframes floatName {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
/* Modern About Section Styles */
.about-modern {
  position: relative;
  padding: 80px 0 60px 0;
  background: transparent;
  overflow: visible;
}
.about-bg-keywords {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-bg-keywords .keyword {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.7;
  filter: blur(0.5px);
  animation: floatKeyword 12s infinite linear;
  white-space: nowrap;
}
.about-bg-keywords .keyword:nth-child(1) {
  left: 4%;
  top: 6%;
  animation-delay: 0s;
}
.about-bg-keywords .keyword:nth-child(2) {
  left: 8%;
  top: 22%;
  animation-delay: 2s;
}
.about-bg-keywords .keyword:nth-child(3) {
  left: 6%;
  top: 60%;
  animation-delay: 4s;
}
.about-bg-keywords .keyword:nth-child(4) {
  left: 22%;
  top: 12%;
  animation-delay: 1s;
}
.about-bg-keywords .keyword:nth-child(5) {
  left: 2%;
  top: 80%;
  animation-delay: 3s;
}
.about-bg-keywords .keyword:nth-child(6) {
  left: 60%;
  top: 8%;
  animation-delay: 2.5s;
}
.about-bg-keywords .keyword:nth-child(7) {
  left: 80%;
  top: 10%;
  animation-delay: 1.5s;
}
.about-bg-keywords .keyword:nth-child(8) {
  left: 70%;
  top: 18%;
  animation-delay: 3.5s;
}
.about-bg-keywords .keyword:nth-child(9) {
  left: 12%;
  top: 80%;
  animation-delay: 4.5s;
}
.about-bg-keywords .keyword:nth-child(10) {
  left: 60%;
  top: 80%;
  animation-delay: 2.2s;
}
.about-bg-keywords .keyword:nth-child(11) {
  left: 85%;
  top: 40%;
  animation-delay: 1.2s;
}
.about-bg-keywords .keyword:nth-child(12) {
  left: 80%;
  top: 60%;
  animation-delay: 2.8s;
}
.about-bg-keywords .keyword:nth-child(13) {
  left: 70%;
  top: 70%;
  animation-delay: 3.8s;
}
.about-bg-keywords .keyword:nth-child(14) {
  left: 50%;
  top: 90%;
  animation-delay: 1.8s;
}
.about-bg-keywords .keyword:nth-child(15) {
  left: 40%;
  top: 80%;
  animation-delay: 2.6s;
}
.about-bg-keywords .keyword:nth-child(16) {
  left: 30%;
  top: 90%;
  animation-delay: 4.2s;
}
.about-bg-keywords .keyword:nth-child(17) {
  left: 20%;
  top: 70%;
  animation-delay: 2.9s;
}
.about-bg-keywords .keyword:nth-child(18) {
  left: 10%;
  top: 60%;
  animation-delay: 3.1s;
}
.about-bg-keywords .keyword:nth-child(19) {
  left: 90%;
  top: 20%;
  animation-delay: 2.3s;
}
@keyframes floatKeyword {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-18px) scale(1.08);
    opacity: 1;
  }
}
.neon-pink {
  color: #ff4ecd;
  text-shadow: 0 0 12px #ff4ecd88;
}
.neon-yellow {
  color: #ffe066;
  text-shadow: 0 0 12px #ffe06688;
}
.neon-green {
  color: #a3ff6f;
  text-shadow: 0 0 12px #a3ff6f88;
}
.neon-blue {
  color: #60a5fa;
  text-shadow: 0 0 12px #60a5fa88;
}
.neon-purple {
  color: #b983ff;
  text-shadow: 0 0 12px #b983ff88;
}
.neon-orange {
  color: #ffb86c;
  text-shadow: 0 0 12px #ffb86c88;
}
.neon-cyan {
  color: #22d3ee;
  text-shadow: 0 0 12px #22d3ee88;
}

.about-content {
  margin-top: 50px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-left {
  flex: 1 1 380px;
  min-width: 320px;
}
.about-title {
  font-size: 3rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-right {
  min-height: 100%;
}

.about-title .gradient-text {
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.about-desc {
  color: #e5e7eb;
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 400;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0 18px 0;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.stat-card {
  background: rgba(24, 28, 40, 0.55);
  border-radius: 18px;
  padding: 18px 28px;
  box-shadow: 0 2px 16px 0 #00000022;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 0;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 1rem;
  color: #cbd5e1;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(24, 28, 40, 0.65);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 1.5px 12px 0 #00000018;
  border: 1.2px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.05rem;
}
.feature-icon {
  font-size: 1.5rem;
  margin-top: 2px;
}
.about-right {
  flex: 1 1 340px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-card {
  position: relative;
  background: rgba(24, 28, 40, 0.55);
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 #00000033;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  min-height: 320px;
}
.about-photo {
  display: block;
  width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #00000022;
  margin: 0 auto;
}
.about-icon {
  position: absolute;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px 0 #00000022;
  z-index: 2;
}
.about-icon-top-left {
  left: -18px;
  top: -18px;
}
.about-icon-bottom-left {
  left: -18px;
  bottom: -18px;
}
.about-icon-top-right {
  right: -18px;
  top: -18px;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 32px;
  }
  .about-right {
    min-width: 0;
  }
  .about-photo {
    width: 100%;
    height: 180px;
  }
  .about-stats {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-card {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .about-title {
    font-size: 2rem;
  }
  .about-photo {
    width: 100%;
    height: 120px;
  }
  .about-stats {
    gap: 12px;
  }
}
/* Page Fade-in Animation */
.page-fade-in {
  animation: fadeInPage 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeInPage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animated Gradient Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: linear-gradient(
    270deg,
    #0ea5e9,
    #a21caf,
    #f472b6,
    #22d3ee,
    #0ea5e9
  );
  background-size: 400% 400%;
  animation: gradientMove 18s ease-in-out infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating Shapes Animation */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(2px);
  mix-blend-mode: lighten;
}
.shape1 {
  width: 180px;
  height: 180px;
  background: #f472b6;
  top: 10%;
  left: 8%;
  animation: float1 12s ease-in-out infinite;
}
.shape2 {
  width: 120px;
  height: 120px;
  background: #22d3ee;
  top: 60%;
  left: 80%;
  animation: float2 14s ease-in-out infinite;
}
.shape3 {
  width: 90px;
  height: 90px;
  background: #a21caf;
  top: 80%;
  left: 20%;
  animation: float3 16s ease-in-out infinite;
}
.shape4 {
  width: 140px;
  height: 140px;
  background: #3b82f6;
  top: 30%;
  left: 70%;
  animation: float4 18s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-40px) scale(1.1);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(30px) scale(1.08);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.12);
  }
}
@keyframes float4 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(35px) scale(1.05);
  }
}

/* Text Reveal Animation */
.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  animation: revealText 1.2s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Ripple/Glow Effect */
.ripple {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 #f472b6;
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ripple:hover {
  box-shadow: 0 0 24px 8px #f472b6aa, 0 0 0 0 #22d3ee99;
}
.ripple::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(244, 114, 182, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  pointer-events: none;
}
.ripple:hover::after {
  width: 200%;
  height: 200%;
}

/* Card 3D Tilt Effect */
.tilt {
  perspective: 600px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.tilt:hover {
  transform: rotateY(10deg) scale(1.05) skewY(1deg);
  box-shadow: 0 12px 32px 0 #a21caf33, 0 2px 8px 0 #3b82f622;
}

/* Parallax Section */
.parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.08;
  background-attachment: fixed;
  background-size: 400px 400px;
  animation: parallaxMove 40s linear infinite;
}
@keyframes parallaxMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 800px;
  }
}
/* Reset and base styles */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #000;
  color: #f3f4f6;
  line-height: 1.6;
}

/* Animated Gradient Overlay on Black */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(120deg, #1a1a2e 0%, #23234b 40%, #0f3460 100%);
  opacity: 0.22;
  background-size: 200% 200%;
  animation: animatedBgMove 12s ease-in-out infinite;
}
@keyframes animatedBgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

section {
  padding: 60px 0 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid #e5e7eb44;
  z-index: 100;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  background: linear-gradient(90deg, #3b82f6, #a21caf);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  color: #f472b6;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
}
.get-started {
  background: linear-gradient(90deg, #3b82f6, #a21caf);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.15);
}
.get-started:hover {
  background: linear-gradient(90deg, #a21caf, #3b82f6);
  box-shadow: 0 4px 16px 0 rgba(168, 85, 247, 0.25);
}

/* Hero Section (fluid scaling card) */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 90px 4vw 70px;
  box-sizing: border-box;
}
.hero-bg {
  position: absolute;
  inset: 0;
  margin-top: 100px;
  background: rgba(0, 0, 0, 0); /* subtle dark overlay only */
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  background: rgba(15, 17, 25, 0.55);
  border-radius: 34px;
  box-shadow: 0 18px 60px -20px #000, 0 4px 28px -10px #1e293b inset;
  border: 1.2px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  padding: 70px clamp(1.2rem, 4.6vw, 3rem) 64px;
  transition: 0.5s;
}
@media (max-width: 960px) {
  .hero-content {
    max-width: 880px;
    padding: 60px clamp(1.1rem, 5vw, 2.4rem) 56px;
  }
}
@media (max-width: 780px) {
  .hero-content {
    max-width: 720px;
    padding: 56px clamp(1rem, 6vw, 2rem) 52px;
  }
}
@media (max-width: 640px) {
  .hero-content {
    max-width: 560px;
    padding: 50px clamp(0.9rem, 6.4vw, 1.6rem) 46px;
  }
}
@media (max-width: 520px) {
  .hero-content {
    max-width: 460px;
    padding: 44px clamp(0.85rem, 7vw, 1.4rem) 40px;
    border-radius: 28px;
  }
}
@media (max-width: 440px) {
  .hero-content {
    max-width: 400px;
    padding: 40px clamp(0.75rem, 7.5vw, 1.25rem) 36px;
    border-radius: 26px;
  }
}
@media (max-width: 390px) {
  .hero-content {
    max-width: 360px;
    padding: 36px clamp(0.65rem, 8vw, 1.1rem) 32px;
    border-radius: 24px;
  }
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5.6vw, 3.4rem);
  margin: 0 0 1rem;
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.gradient-text {
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  color: #cbd5e1;
  margin-bottom: 2rem;
}
.hero-btn {
  background: linear-gradient(90deg, #3b82f6, #a21caf);
  color: #fff;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.15);
}
.hero-btn:hover {
  background: linear-gradient(90deg, #a21caf, #3b82f6);
  box-shadow: 0 4px 16px 0 rgba(168, 85, 247, 0.25);
}

/* About Section */
.about-section {
  margin-top: 50px;
  margin-inline: auto;
  border-radius: 16px;

  text-align: center;
}

/* Services Section */
.services-section {
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: linear-gradient(90deg, #0ea5e9 0%, #a21caf 100%);
  color: #fff;
  padding: 32px 16px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(168, 85, 247, 0.18);
}

/* Portfolio Section */
.portfolio-section {
  text-align: center;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.portfolio-card {
  background: #18181b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(168, 85, 247, 0.18);
}
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.portfolio-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 16px 0 8px 0;
}
.portfolio-desc {
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* Team Section */
.team-section {
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: #18181b;
  border-radius: 16px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(168, 85, 247, 0.18);
}
.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #3b82f6;
}
.team-name {
  font-weight: 600;
  font-size: 1.1rem;
}
.team-role {
  color: #a78bfa;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.testimonial-card {
  background: #18181b;
  border-radius: 16px;
  padding: 32px 24px;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(168, 85, 247, 0.18);
}
.testimonial-content {
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  color: #a78bfa;
  font-size: 0.95rem;
}

/* Support Section */
.support-section {
  text-align: center;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.support-card {
  background: linear-gradient(90deg, #0ea5e9 0%, #a21caf 100%);
  color: #fff;
  padding: 32px 16px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(168, 85, 247, 0.18);
}

/* Contact Section */
.contact-section {
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 32px auto 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #23272f;
  color: #fff;
  font-size: 1rem;
  resize: none;
}
.contact-form button {
  background: linear-gradient(90deg, #3b82f6, #a21caf);
  color: #fff;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.15);
}
.contact-form button:hover {
  background: linear-gradient(90deg, #a21caf, #3b82f6);
  box-shadow: 0 4px 16px 0 rgba(168, 85, 247, 0.25);
}

/* Contact Pro Section */
.contact-pro {
  position: relative;
  padding: 80px clamp(1.2rem, 5vw, 4rem) 140px;
  background: radial-gradient(circle at 25% 15%, #111b2b, #020617 70%);
  overflow: hidden;
}
.contact-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.03) 0 2px,
    transparent 2px 90px
  );
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.contact-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 85%,
    rgba(99, 102, 241, 0.22),
    transparent 60%
  );
  filter: blur(40px);
  opacity: 0.9;
}
.contact-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 70px;
}
.contact-title {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.contact-title span {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  color: transparent;
}
.contact-sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
  font-weight: 500;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 50px;
  align-items: start;
}
/* Force two-column layout sooner (side-by-side panels) */
@media (min-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 759.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-panel {
  position: relative;
  padding: 46px 44px 54px;
  border-radius: 40px;
  background: linear-gradient(
    140deg,
    rgba(30, 41, 59, 0.82),
    rgba(15, 23, 42, 0.95)
  );
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(18px) saturate(1.45);
  box-shadow: 0 20px 60px -25px #0f172acc, 0 8px 32px -12px #000 inset;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(99, 102, 241, 0.5),
    transparent 70%
  );
  opacity: 0.4;
  mix-blend-mode: overlay;
  transition: 0.6s;
}
.contact-form-pro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* Compact variant (left panel redesign) */
.contact-form-compact {
  gap: 26px;
}
.contact-form-compact .row-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}
.contact-form-compact .form-field textarea {
  min-height: 160px;
}
.contact-form-compact .stretch-btn {
  width: 100%;
  max-width: 240px;
}
@media (max-width: 600px) {
  .contact-form-compact {
    gap: 22px;
  }
  .contact-form-compact .row-2col {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form-compact .stretch-btn {
    max-width: 100%;
  }
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  font-weight: 600;
  color: #94a3b8;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  color: #f1f5f9;
  font-size: 0.92rem;
  font-weight: 500;
  resize: vertical;
  transition: 0.35s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}
.form-field select {
  appearance: none;
}
.form-field.full textarea {
  min-height: 140px;
}
.contact-submit {
  align-self: flex-start;
  background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6);
  background-size: 220% 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding: 16px 30px;
  border: none;
  border-radius: 18px;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 30px -12px #6366f199;
  transition: 0.5s;
}
.contact-submit:hover {
  background-position: 100% 50%;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -14px #6366f1aa;
}
.contact-privacy {
  margin: 6px 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.6px;
  color: #64748b;
  font-weight: 600;
}
.contact-privacy a {
  color: #e2e8f0;
}
.contact-panel-info .info-block {
  margin: 0 0 40px;
}
.contact-panel-info h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: #fff;
}
.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
  font-weight: 500;
}
.bullet-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, #38bdf8, #6366f1);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}
.contact-line {
  margin: 0 0 6px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #cbd5e1;
  font-weight: 500;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.metric .num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric .label {
  font-size: 0.6rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}
.social-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.social-btn svg {
  display: block;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.social-link.linkedin {
  background: linear-gradient(180deg, #0e76a8, #055a8c);
  color: #ffffff;
}
.social-link.twitter {
  background: linear-gradient(180deg, #1da1f2, #0d95e8);
  color: #fff;
}
.social-link.github {
  background: linear-gradient(180deg, #333, #111);
  color: #fff;
}
.social-link.insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
}
.social-link.fb {
  background: linear-gradient(180deg, #4267b2, #2d5aa6);
  color: #fff;
}
.social-link.mail {
  background: linear-gradient(180deg, #ea4335, #c5221f);
  color: #fff;
}
.contact-panel-form,
.contact-form-pro,
.contact-form-pro * {
  pointer-events: auto !important;
  z-index: 9999 !important;
  position: relative;
}
.contact-panel::before {
  pointer-events: none !important;
}
/* small tweaks for dark icons when used on light backgrounds */
@media (prefers-color-scheme: light) {
  .social-btn {
    color: #fff;
  }
}

.about-split-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px -10px #6366f199;
  background: #10172a;
}
.about-split-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181e2f;
}
.about-split-image img {
  max-width: 100%;
  max-height: 180px;
  object-fit: cover;
  width: auto;
  border-bottom: 1px solid #222a3a;
}
.about-split-text {
  flex: 1 1 50%;
  padding: 24px 18px;
  color: #e2e8f0;
  font-size: 1rem;
}
.about-split-text h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #38bdf8;
}
.team-footer-linkedin a.linkedin-trigger {
  pointer-events: auto !important;
  position: relative;
  z-index: 2;
}
.team-footer-linkedin {
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
}


/* Responsive portfolio grid */
.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
@media (max-width: 900px) {
  .portfolio-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .portfolio-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
  }
  .work-card .work-info h3 {
    font-size: 0.9rem;
  }
  .work-card .work-info p {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .portfolio-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 360px) {
  .portfolio-showcase-grid {
    grid-template-columns: 1fr;
  }
}
/* End responsive portfolio grid */

  .careers-footer {
      padding: 70px 24px;
      text-align: center;
      font-size: .7rem;
      letter-spacing: .6px;
      color: #64748b;
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

 #hiring.talent-section {
      position: relative;
      padding: 90px clamp(1.2rem, 5vw, 4rem) 110px;
      background: radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.18), transparent 15%),
        radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.12), transparent 25%),
        linear-gradient(180deg, #081225 0%, #060e18 50%, #050c14 100%);
      overflow: hidden;
      border-radius: 0;
      isolation: isolate;
    }

    #hiring .talent-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 65% 35%, rgba(99, 102, 241, 0.25), transparent 60%),
        radial-gradient(circle at 35% 70%, rgba(56, 189, 248, 0.22), transparent 65%);
      mix-blend-mode: overlay;
      opacity: .55;
      filter: blur(40px);
    }

    #hiring .talent-inner {
      max-width: 1250px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 520px;
      gap: 42px;
      align-items: start;
      position: relative;
      z-index: 2;
    }

    @media (max-width:1080px) {
      #hiring .talent-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:880px) {
      #hiring .talent-inner {
        grid-template-columns: 1fr;
      }
    }

    /* Left column */
    #hiring .talent-left {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    #hiring .talent-title {
      margin: 0 0 6px;
      font-size: clamp(2.2rem, 4.2vw, 3.4rem);
      line-height: 1.05;
      font-weight: 900;
      letter-spacing: .6px;
      color: #f1f5f9;
    }

    #hiring .talent-title span {
      background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }

    #hiring .talent-lead {
      margin: 0 0 8px;
      font-size: 1.02rem;
      line-height: 1.55;
      max-width: 660px;
      color: rgba(226, 232, 240, .85);
      font-weight: 500;
    }

    /* Pillars */
    #hiring .talent-pillars {
      list-style: none;
      margin: 0 0 14px;
      padding: 0;
      display: grid;
      gap: 14px 18px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #hiring .talent-pillars li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      font-weight: 700;
      color: #e2e8f0;
      font-size: .83rem;
      letter-spacing: .3px;
    }

    #hiring .talent-pillars .pi {
      font-size: 1.25rem;
    }

    @media (max-width:640px) {
      #hiring .talent-pillars {
        grid-template-columns: 1fr;
      }
    }

    /* CTAs */
    #hiring .talent-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    #hiring .talent-btn {
      position: relative;
      display: inline-block;
      padding: 14px 22px;
      font-size: .82rem;
      letter-spacing: .9px;
      font-weight: 800;
      text-decoration: none;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.04);
      color: #f1f5f9;
      transition: .45s;
      box-shadow: 0 8px 26px -14px #000;
    }

    #hiring .talent-btn.primary {
      background: linear-gradient(90deg, #38bdf8, #6366f1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 34px -16px #6366f199;
    }

    #hiring .talent-btn:hover {
      transform: translateY(-4px);
    }

    /* Perks / chips */
    #hiring .talent-perks {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    #hiring .perk-title {
      margin: 0;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      font-weight: 800;
      color: #f472b6;
    }

    #hiring .perk-list,
    #hiring .culture-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    #hiring .perk {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 8px 14px;
      font-size: .65rem;
      letter-spacing: .7px;
      font-weight: 700;
      border-radius: 999px;
      color: #dbeafe;
    }

    /* Right column role cards */
    #hiring .talent-right {
      position: relative;
    }

    #hiring .role-stack {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    @media (max-width:1080px) {
      #hiring .role-stack {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:880px) {
      #hiring .role-stack {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:720px) {
      #hiring .role-stack {
        grid-template-columns: 1fr;
      }
    }

    #hiring .role-card {
      background: linear-gradient(150deg, rgba(24, 34, 52, 0.85), rgba(11, 22, 34, 0.92));
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 20px 20px 22px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-shadow: 0 8px 34px -16px #020c18;
      transition: .45s;
    }

    #hiring .role-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 25%, rgba(99, 102, 241, .35), transparent 70%);
      mix-blend-mode: overlay;
      opacity: .55;
      transition: .6s;
    }

    #hiring .role-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 46px -18px #1e3a8acc;
    }

    #hiring .role-dept {
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #7dd3fc;
      display: inline-block;
    }

    #hiring .role-card h3 {
      margin: 6px 0 4px;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .4px;
      color: #f1f5f9;
    }

    #hiring .role-card p {
      margin: 0 0 8px;
      font-size: .75rem;
      line-height: 1.45;
      color: #94a3b8;
      font-weight: 500;
    }

    #hiring .role-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    #hiring .role-tools span {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 6px 10px;
      font-size: .55rem;
      letter-spacing: .7px;
      font-weight: 600;
      color: #e2e8f0;
      border-radius: 10px;
      text-transform: uppercase;
    }

    #hiring .role-card:hover .role-tools span {
      background: linear-gradient(120deg, #38bdf8, #6366f1);
      color: #fff;
      border-color: transparent;
    }

    /* Accessibility focus */
    #hiring .role-card:focus {
      outline: 2px solid #6366f1;
      outline-offset: 2px;
    }

    /* Spacing adjustments on small screens */
    @media (max-width:640px) {
      #hiring.talent-section {
        padding: 80px 1.1rem 90px;
      }
      #hiring .talent-title {
        font-size: 2.3rem;
      }
    }

 .services-hub {
      position: relative;
      padding: 60px clamp(1.2rem, 5vw, 4rem) 120px;
      overflow: hidden;
      background: radial-gradient(circle at 25% 20%, #1e293b, #020617 70%);
    }

    .services-hub::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.04)0 2px, transparent 2px 90px),
        radial-gradient(circle at 80% 85%, rgba(99, 102, 241, 0.18), transparent 60%);
      mix-blend-mode: overlay;
      opacity: .35;
      pointer-events: none;
    }

    .services-hub-inner {
      max-width: 1500px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Revised: make heading text clearly visible (solid fill + subtle gradient glow) */
    .services-title {
      position: relative;
      display: inline-block;
      margin: 0 0 18px;
      font-size: clamp(2.3rem, 5.2vw, 3.8rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: .5px;
      color: #f8fafc;
      text-align: center;
      padding: .2em .4em;
    }

    .services-head {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .services-title::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 12px;
      background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
      opacity: .22;
      filter: blur(6px);
      z-index: -2;
    }

    .services-title::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 55%;
      background: linear-gradient(90deg, #38bdf8, #6366f1, #f472b6);
      border-radius: 6px;
      opacity: .35;
      z-index: -1;
    }

    .services-title-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .keystackbutton {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 6px 10px;
      font-size: .63rem;
      letter-spacing: .7px;
      font-weight: 600;
      color: #e2e8f0;
      border-radius: 10px;
      text-transform: uppercase;
      margin-top: 10px;
      color: white;
      height: 70px;
      margin-inline: center;
      justify-items: centerr;
      text-align: center;
    }

    @keyframes svcGrad {
      0% {
        background-position: 0 50%
      }

      100% {
        background-position: 200% 50%
      }
    }

    .services-title span {
      filter: drop-shadow(0 4px 18px #6366f155);
    }

    .services-sub {
      max-width: 920px;
      font-size: 1.08rem;
      line-height: 1.6;
      color: #cbd5e1;
      margin: 0 0 54px;
      font-weight: 500;
    }

    .services-grid-pro {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 34px;
      position: relative;
    }

    .services-grid-pro::before {
      content: "";
      position: absolute;
      inset: -60px -80px;
      pointer-events: none;
      background:
        radial-gradient(circle at 35% 40%, rgba(56, 189, 248, 0.12), transparent 60%),
        radial-gradient(circle at 75% 65%, rgba(99, 102, 241, 0.12), transparent 65%);
      filter: blur(40px);
      opacity: .9;
    }

    .svc-card {
      position: relative;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      padding: 28px 26px 30px;
      background: linear-gradient(140deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.85));
      border: 1px solid rgba(99, 102, 241, 0.25);
      border-radius: 28px;
      min-height: 280px;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      box-shadow: 0 10px 40px -15px #000 inset, 0 8px 32px -12px #0f172acc;
      transition: .5s;
      backdrop-filter: blur(14px) saturate(1.4);
    }

    .svc-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.45), transparent 70%);
      opacity: .45;
      mix-blend-mode: overlay;
      transition: .6s;
    }

    .svc-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6, #38bdf8);
      background-size: 300% 100%;
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: .55;
      transition: .6s;
    }

    .svc-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 60px -18px #6366f1aa, 0 8px 40px -10px #0f172acc;
    }

    .svc-card:hover::after {
      animation: borderShift 4s linear infinite;
    }

    @keyframes borderShift {
      0% {
        background-position: 0 50%
      }

      100% {
        background-position: 300% 50%
      }
    }

    .svc-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 1.8rem;
      background: linear-gradient(120deg, #38bdf8, #6366f1);
      box-shadow: 0 4px 18px -6px #6366f199;
      margin: 0 0 16px;
      font-weight: 700;
    }

    .svc-card h3 {
      margin: 0 0 10px;
      font-size: 1.18rem;
      letter-spacing: .5px;
      font-weight: 700;
    }

    .svc-card p {
      margin: 0 0 16px;
      font-size: .9rem;
      line-height: 1.5;
      color: #94a3b8;
      font-weight: 500;
    }

    .svc-points {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .svc-points li {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 6px 10px;
      font-size: .63rem;
      letter-spacing: .7px;
      font-weight: 600;
      color: #e2e8f0;
      border-radius: 10px;
      text-transform: uppercase;
    }

    .svc-card:hover .svc-points li {
      background: linear-gradient(120deg, #38bdf8, #6366f1);
      color: #fff;
      border-color: transparent;
    }

    .services-foot-note {
      margin-top: 54px;
      text-align: center;
      font-size: .85rem;
      letter-spacing: .6px;
      color: #94a3b8;
      font-weight: 500;
    }

    .services-foot-note span {
      color: #e2e8f0;
      font-weight: 600;
    }

    @media (max-width:820px) {
      .svc-card {
        min-height: 0;
        padding: 26px 22px 28px;
      }

      .services-grid-pro {
        gap: 26px;
      }
    }

    @media (max-width:640px) {
      .services-hub {
        padding: 100px 1.1rem 100px;
      }

      .services-title {
        font-size: 2.4rem;
      }

      .services-sub {
        margin-bottom: 40px;
      }
    }

    /* --- Flip Animation (scoped) --- */
    .svc-card {
      perspective: 1200px;
    }

    .svc-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform .85s cubic-bezier(.65, .02, .35, 1);
    }

    .svc-card:hover .svc-card-inner {
      transform: rotateY(180deg);
    }

    .svc-face {
      position: absolute;
      inset: 0;
      padding: 28px 26px 30px;
      display: flex;
      flex-direction: column;
      backface-visibility: hidden;
    }

    .svc-front {
      position: relative;
    }

    .svc-back {
      transform: rotateY(180deg);
      justify-content: flex-start;
      background: linear-gradient(150deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
      border-radius: 24px;
    }

    .svc-back h3 {
      margin: 0 0 16px;
      font-size: 1.02rem;
      letter-spacing: .6px;
      font-weight: 700;
      background: linear-gradient(90deg, #38bdf8, #6366f1);
      -webkit-background-clip: text;
      color: transparent;
    }

    .svc-tech {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 12px;
    }

    .svc-tech li {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      padding: 6px 10px;
      font-size: .63rem;
      letter-spacing: .7px;
      font-weight: 600;
      color: #e2e8f0;
      border-radius: 10px;
      text-transform: uppercase;
      text-align: center;
    }

    .svc-card:hover .svc-back .svc-tech li {
      background: linear-gradient(120deg, #38bdf8, #6366f1);
      color: #fff;
      border-color: transparent;
    }

    /* Maintain original padding for front via existing .svc-card > .svc-card-inner > .svc-front overrides (avoid double padding) */
    .svc-card .svc-front {
      padding: 28px 26px 30px;
    }

    /* Remove outer padding to revert original visual height after flip structure */
    .svc-card {
      padding: 0 !important;
    }

    @media (max-width:820px) {
      .svc-face {
        padding: 26px 22px;
      }

      .svc-card .svc-front {
        padding: 26px 22px;
      }
    }
  /* </style> */
  /* <!-- Enhanced About Section Design --> */
  /* <style> */
    /* Premium rework for About section */
    #about.about-modern {
      position: relative;
      padding: 60px clamp(1.2rem, 4vw, 3rem) 120px;
      overflow: hidden;
      border-radius: 0;
      background: radial-gradient(circle at 20% 20%, #0f172a, #020617 70%);
    }

    #about .about-bg-keywords {
      position: absolute;
      inset: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: center;
      align-content: center;
      filter: blur(3px) brightness(1.2);
      opacity: .07;
      padding: 6vw;
      pointer-events: none;
      mix-blend-mode: plus-lighter;
      font-weight: 700;
      font-size: clamp(.7rem, 1.1vw, .95rem);
    }

    #about .about-title {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      letter-spacing: .5px;
      margin: 0 0 30px;
      text-transform: uppercase;
      background: linear-gradient(90deg, #f472b6, #38bdf8, #6366f1);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: aboutGrad 10s linear infinite;
    }

    @keyframes aboutGrad {
      0% {
        background-position: 0 50%
      }

      100% {
        background-position: 200% 50%
      }
    }

    .about-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 56px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .about-left {
      display: flex;
      flex-direction: column;
      gap: 30px;
      text-align: left;
    }

    .about-left .about-desc {
      font-size: 1.05rem;
      line-height: 1.65;
      color: #cbd5e1;
      margin: 0;
    }

    .about-pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin-top: 4px;
    }

    .about-pillars .pillar {
      position: relative;
      padding: 18px 16px 20px;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      border: 1px solid rgba(99, 102, 241, 0.15);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 18px -6px #000;
      transition: .35s;
    }

    .about-pillars .pillar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.35), transparent 70%);
      opacity: .4;
      mix-blend-mode: overlay;
      transition: .6s;
    }

    .about-pillars .pillar:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 34px -10px #6366f180;
    }

    .about-pillars .pillar-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      font-size: 1.4rem;
      background: linear-gradient(140deg, #38bdf8, #6366f1);
      border-radius: 14px;
      margin-bottom: 10px;
    }

    .about-pillars h3 {
      margin: 0 0 6px;
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: .5px;
      color: #fff;
    }

    .about-pillars p {
      margin: 0;
      font-size: .75rem;
      line-height: 1.4;
      color: #94a3b8;
    }

    .about-right {
      position: relative;
    }

    .about-right .about-photo-card {
      position: relative;
      isolation: isolate;
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
      border-radius: 32px;
      overflow: hidden;
      background: linear-gradient(120deg, #1e293b, #0f172a);
      padding: 18px;
      box-shadow: 0 20px 60px -25px #000;
      background-clip: padding-box;
    }

    .about-right .about-photo-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px;
      background: linear-gradient(120deg, #38bdf8, #6366f1, #f472b6);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: .5;
    }

    .about-right .about-photo {
      width: 100%;
      height: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 24px;
      display: block;
      filter: saturate(1.05) contrast(1.05);
    }

    /* Video placeholder pulse */
    .about-video-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
    }

    .about-video-btn {
      width: 82px;
      height: 82px;
      border-radius: 50%;
      background: linear-gradient(140deg, #38bdf8, #6366f1);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 1.8rem;
      font-weight: 700;
      box-shadow: 0 8px 30px -10px #6366f180;
      position: relative;
      cursor: pointer;
    }

    .about-video-btn::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: inherit;
      background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.55), transparent 70%);
      animation: btnPulse 3s ease-in-out infinite;
    }

    @keyframes btnPulse {

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

      50% {
        transform: scale(1.15);
        opacity: .2
      }
    }

    /* Stats row redesigned */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 18px;
      margin-top: 4px;
    }

    .about-stats .stat-card {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      border: 1px solid rgba(56, 189, 248, 0.25);
      padding: 20px 16px 22px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 10px -4px #000;
    }

    .about-stats .stat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.25), transparent 70%);
      opacity: .65;
      mix-blend-mode: overlay;
    }

    .about-stats .stat-number {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: .5px;
      background: linear-gradient(90deg, #38bdf8, #6366f1);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 4px;
    }

    .about-stats .stat-label {
      font-size: .72rem;
      letter-spacing: .75px;
      text-transform: uppercase;
      color: #94a3b8;
      font-weight: 600;
    }

    /* Responsive tweaks */
    @media (max-width:900px) {
      .about-content {
        gap: 38px;
      }

      .about-right .about-photo-card {
        max-width: 480px;
      }
    }

    @media (max-width:640px) {
      #about.about-modern {
        padding: 90px 1.1rem 90px;
      }

      .about-content {
        grid-template-columns: 1fr;
      }

      .about-right .about-photo-card {
        max-width: 440px;
      }

      .about-pillars {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px;
      }
    }
  /* </style> */
  /* <!-- Scoped Team Hover Footer Styles --> */
  /* <style id="team-linkedin-hover-styles"> */
    #team .team-card-pro {
      position: relative;
      display: flex;
      flex-direction: column;
      padding-bottom: 60px;
    }

    /* Footer bar pinned 2px from bottom & horizontally centered */
    #team .team-card-pro .team-footer-linkedin {
      position: absolute;
      left: 50%;
      bottom: 2px;
      transform: translate(-50%, 10px);
      width: 85%;
      /* reduced width */
      background: linear-gradient(120deg, rgba(56, 189, 248, 0.22), rgba(99, 102, 241, 0.22));
      border: 1px solid rgba(56, 189, 248, 0.28);
      padding: 10px 14px;
      border-radius: 14px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: .4s ease;
      backdrop-filter: blur(8px) saturate(1.3);
    }

    #team .team-card-pro:hover .team-footer-linkedin {
      opacity: 1;
      transform: translate(-50%, 0);
      pointer-events: auto;
    }

    #team .team-footer-linkedin a.linkedin-trigger {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: .8rem;
      letter-spacing: .6px;
      color: #e2f0ff;
      width: auto;
      max-width: 100%;
      text-align: center;
      margin: 0 auto;
      /* center horizontally */
      transform: none;
      /* remove previous shift */
    }

    #team .team-footer-linkedin a.linkedin-trigger:hover {
      color: #ffffff;
    }

    #team .team-footer-linkedin .li-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: .95rem;
      border-radius: 10px;
      background: linear-gradient(120deg, #38bdf8, #6366f1);
      color: #fff;
      box-shadow: 0 4px 14px -6px #6366f180;
    }

    #team .team-footer-linkedin .li-text {
      white-space: nowrap;
    }