/* ============================================================
   TUSHAR QUICKER — style.css
   tushar.xoomcoders.com
   ============================================================ */
/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --bg: #0B1120;
  --bg-alt: #08101e;
  --card: #111827;
  --card-h: #162032;
  --border: rgba(255, 255, 255, 0.07);
  --border-h: rgba(59, 130, 246, 0.28);
  --blue: #3B82F6;
  --cyan: #06B6D4;
  --purple: #8B5CF6;
  --green: #22C55E;
  --yellow: #F59E0B;
  --red: #EF4444;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --grad: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  --grad-p: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pad: 6rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 99px;
}

::selection {
  background: rgba(59, 130, 246, 0.3);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-heading {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sec-body {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.sec-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
}

.section-pad {
  padding: var(--pad) 0;
}

.section-alt {
  background: var(--bg-alt);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 80% 10%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
}

/* ── 4. GLASS CARD ──────────────────────────────────────────── */
.glass {
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.glass:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.78rem 1.85rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  font-family: var(--font);
  text-decoration: none;
}

.btn-primary-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.45);
  color: #fff;
}

.btn-primary-custom:hover::after {
  opacity: 1;
}

.btn-primary-custom:active {
  transform: scale(0.99);
}

.btn-primary-custom.w-100 {
  width: 100%;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.76rem 1.83rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font);
  text-decoration: none;
}

.btn-outline-custom:hover {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.76rem 1.5rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  text-decoration: none;
}

.btn-ghost-custom:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── 6. ICON COLORS ─────────────────────────────────────────── */
.text-primary-c {
  color: var(--blue);
}

.text-purple-c {
  color: var(--purple);
}

.text-yellow-c {
  color: var(--yellow);
}

.text-cyan-c {
  color: var(--cyan);
}

.text-orange-c {
  color: #F97316;
}

.text-red-c {
  color: var(--red);
}

/* ── 7. NAVBAR ──────────────────────────────────────────────── */
#mainNav {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: padding 0.3s var(--ease), box-shadow 0.3s;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
  transition: transform 0.3s var(--spring);
}

.navbar-brand:hover .logo-icon {
  transform: rotate(-8deg) scale(1.08);
}

.logo-text {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.logo-dot {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted) !important;
  padding: 0.45rem 0.75rem !important;
  border-radius: var(--r-sm);
  position: relative;
  transition: color 0.2s, background 0.2s !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--grad);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.3rem;
  border-radius: 99px;
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
  text-decoration: none;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  color: #fff !important;
}

.vs-sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.admin-bar .vs-sticky-top {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .vs-sticky-top {
    top: 46px;
  }
  .admin-bar .vs-sticky-top.scrolled {
    position: fixed;
    top: 0;
  }
}
/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--muted);
  transition: all 0.3s var(--ease);
}

/* ── 8. HERO ─────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
}

.orb-1 {
  width: 650px;
  height: 650px;
  background: var(--blue);
  top: -200px;
  right: -120px;
  animation: orb-float 9s ease-in-out infinite;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: var(--cyan);
  bottom: -80px;
  left: -100px;
  animation: orb-float 11s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  top: 45%;
  left: 40%;
  opacity: 0.07;
  animation: orb-float 7s ease-in-out infinite 3s;
}

@keyframes orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -25px) scale(1.04);
  }
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-available {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

.avail-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: avail-ping 2s ease-in-out infinite;
}

@keyframes avail-ping {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}
.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.hero-name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--mono);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-role-prefix,
.hero-role-suffix {
  color: var(--blue);
  font-weight: 600;
  opacity: 0.6;
}

.hero-role-typed {
  color: var(--cyan);
  font-weight: 500;
}

.cursor-blink {
  color: var(--blue);
  animation: blink 0.85s step-start infinite;
  font-weight: 700;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 490px;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero-btns {
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hstat {
  display: flex;
  flex-direction: column;
}

.hstat-num {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hstat-plus {
  font-size: 1.1rem;
}

.hstat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.22rem;
}

.hstat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 360px;
  width: 100%;
}

.hero-img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.2);
}

.r1 {
  inset: -18px;
  animation: ring-spin 14s linear infinite;
}

.r2 {
  inset: -36px;
  border-color: rgba(6, 182, 212, 0.12);
  animation: ring-spin 20s linear infinite reverse;
}

@keyframes ring-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.elementor .hero-photo,
.hero-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(59, 130, 246, 0.3);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Tech badges */
.tech-badge {
  position: absolute;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.42rem;
  z-index: 2;
  animation: badge-float 4s ease-in-out infinite;
  white-space: nowrap;
}

.tech-badge i {
  font-size: 0.95rem;
}

.b-wp {
  top: 8%;
  left: -10%;
  animation-delay: 0s;
}

.b-php {
  bottom: 20%;
  left: -8%;
  animation-delay: -1.6s;
}

.b-js {
  top: 22%;
  right: -6%;
  animation-delay: -3.2s;
}

.b-el {
  top: 50%;
  right: -6%;
  animation-delay: -5.2s;
}

.b-woo {
  bottom: -10%;
  left: 38%;
  animation-delay: -7.2s;
}

@keyframes badge-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--blue);
  border-radius: 99px;
  animation: scroll-w 1.9s ease-in-out infinite;
}

@keyframes scroll-w {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}
/* ── 9. ABOUT ─────────────────────────────────────────────────── */
.about-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-deco {
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--r-xl) - 4px);
  border: 1.5px dashed rgba(59, 130, 246, 0.18);
  z-index: 0;
}

.exp-badge {
  position: absolute;
  bottom: -1.2rem;
  right: 0;
  background: var(--grad);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
  z-index: 2;
}

.exp-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.exp-lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.astat-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: transform 0.3s var(--spring), border-color 0.3s;
}

.astat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h);
}

.astat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.astat-num::after {
  content: "+";
}

.astat-lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ── 10. SERVICES ─────────────────────────────────────────────── */
.svc-card {
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  height: 100%;
}

.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ic, var(--blue)), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--ic, var(--blue)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic, var(--blue)) 28%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--ic, var(--blue));
  margin-bottom: 1.3rem;
  transition: transform 0.3s var(--spring);
}

.svc-card:hover .svc-icon {
  transform: scale(1.12) rotate(-6deg);
}

.svc-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
}

.svc-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.svc-card:hover .svc-num {
  color: rgba(59, 130, 246, 0.05);
}

/* ── 11. SKILLS ───────────────────────────────────────────────── */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.skb-pct {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
}

.skb-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}

.skb-fill {
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 99px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.skb-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
  opacity: 0;
  transition: opacity 0.3s 1.2s;
}

.skb-fill.anim::after {
  opacity: 1;
}

.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.skbadge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.5rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  cursor: default;
  transition: all 0.25s var(--ease);
}

.skbadge i {
  font-size: 0.98rem;
  flex-shrink: 0;
}

.skbadge:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.28);
  color: var(--text);
  transform: translateY(-3px) scale(1.03);
}

/* ── 12. PORTFOLIO ────────────────────────────────────────────── */
.pf-filters .pf-btn {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  font-family: var(--font);
}

.pf-filters .pf-btn:hover,
.pf-filters .pf-btn.active {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--blue);
  transform: translateY(-2px);
}

/* Grid — CSS grid so items always fill properly */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pf-item {
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.pf-item.pf-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.94);
  position: absolute;
  /* take out of flow cleanly */
  visibility: hidden;
}

/* When the grid only shows filtered items, re-anchor the grid */
.pf-grid.is-filtering {
  position: relative;
}

.pf-card {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.pf-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-h);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pf-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.pf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.pf-card:hover .pf-img-wrap img {
  transform: scale(1.06);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(6, 182, 212, 0.4));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s var(--ease);
}

.pf-card:hover .pf-overlay {
  opacity: 1;
}

.pf-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  transform: scale(0.65);
  transition: transform 0.35s var(--spring);
}

.pf-card:hover .pf-link {
  transform: scale(1);
}

.pf-body {
  padding: 1.5rem;
}

.pf-cat {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}

.pf-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.pf-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── 13. EXPERIENCE TIMELINE ──────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.28) 8%, rgba(59, 130, 246, 0.28) 92%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  position: relative;
  width: 50%;
  padding-right: 3rem;
  padding-bottom: 2.5rem;
}

.tl-item.tl-right {
  left: 50%;
  padding-right: 0;
  padding-left: 3rem;
}

.tl-dot {
  position: absolute;
  right: -21px;
  top: 1.25rem;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.9rem;
  z-index: 2;
  transition: background 0.3s, transform 0.3s var(--spring);
}

.tl-right .tl-dot {
  right: auto;
  left: -21px;
}

.tl-item:hover .tl-dot {
  background: var(--blue);
  color: #fff;
  transform: scale(1.12);
}

.tl-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.tl-item:hover .tl-card {
  transform: translateY(-4px);
  border-color: var(--border-h);
}

.tl-date {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.45rem;
}

.tl-role {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.tl-company {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.tl-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tl-tags span {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.18rem 0.6rem;
  border-radius: 99px;
  font-family: var(--mono);
}

@media (max-width: 767px) {
  .timeline::before {
    left: 18px;
  }
  .tl-item,
  .tl-item.tl-right {
    width: 100%;
    left: 0;
    padding-left: 3.5rem;
    padding-right: 0;
  }
  .tl-dot,
  .tl-right .tl-dot {
    left: 0;
    right: auto;
    top: 1.5rem;
  }
}
/* ── 14. TESTIMONIALS ─────────────────────────────────────────── */
.testi-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
}

.testi-featured {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.05);
}

.testi-quote {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.8;
  color: rgba(59, 130, 246, 0.18);
  margin-bottom: 0.5rem;
  user-select: none;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
}

.testi-role {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.testi-stars {
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── 15. CONTACT ──────────────────────────────────────────────── */
.ct-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ct-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  transition: transform 0.25s var(--spring), border-color 0.25s;
}

.ct-item:hover {
  transform: translateX(6px);
  border-color: var(--border-h);
}

.ct-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--ci, var(--blue)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ci, var(--blue)) 24%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--ci, var(--blue));
  transition: background 0.2s;
}

.ct-item:hover .ct-icon {
  background: color-mix(in srgb, var(--ci, var(--blue)) 22%, transparent);
}

.ct-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ct-value {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.1rem;
}

.ct-form-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.ct-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.fg {
  margin-bottom: 0.25rem;
}

.flabel {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.finput {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.finput::placeholder {
  color: rgba(148, 163, 184, 0.45);
}

.finput:focus {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.finput.err {
  border-color: var(--red);
}

.ferr {
  display: block;
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 0.28rem;
  min-height: 0.9rem;
}

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

.form-ok {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--green);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* ── 16. FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 0.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--spring);
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--blue);
  transform: translateY(-3px);
}

.footer-copy p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-sub {
  margin-top: 0.25rem;
}

/* ── 17. BACK TO TOP ──────────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--spring), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btt.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.btt:hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
  transform: translateY(-3px) scale(1.06);
}

/* ── 18. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991px) {
  :root {
    --pad: 4.5rem ;
  }
  .hero-section {
    padding-top: 5.5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-photo {
    width: 240px;
    height: 240px;
  }
  .hero-img-wrap {
    max-width: 280px;
  }
  .b-wp,
  .b-php,
  .b-js {
    display: none;
  }
  #navMenu {
    background: rgba(8, 16, 30, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--r-lg);
    margin-top: 0.5rem;
    border: 1px solid var(--border);
  }
  .footer-copy {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  :root {
    --pad: 3.5rem ;
  }
  .hero-heading {
    font-size: 2rem;
  }
  .hero-photo {
    width: 190px;
    height: 190px;
  }
  .about-photo {
    width: 260px;
    height: 300px;
  }
  .ct-form-card {
    padding: 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
  }
  .btt {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}
/* ── 19. PRICING ──────────────────────────────────────────────── */
/* Billing toggle */
.billing-toggle {
  margin-top: 1.5rem;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}

#lbl-monthly {
  color: var(--text);
}

#pricingToggle:checked ~ * #lbl-yearly,
.billing-toggle:has(#pricingToggle:checked) #lbl-yearly {
  color: var(--text);
}

.billing-toggle:has(#pricingToggle:checked) #lbl-monthly {
  color: var(--muted);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 0.3s var(--spring), background 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translate(24px, -50%);
  background: var(--grad);
  /* can't animate a gradient directly — use box-shadow glow instead */
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.save-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 99px;
  margin-left: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Price cards */
.price-card {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-h);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

/* Featured card */
.price-featured {
  border-color: rgba(59, 130, 246, 0.38);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.1) 0%, rgba(17, 24, 39, 0.85) 50%);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.18), 0 20px 60px rgba(59, 130, 246, 0.15);
}

.price-featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3), 0 28px 70px rgba(59, 130, 246, 0.22);
}

.price-badge-top {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: var(--grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.45);
}

.price-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--pi, var(--blue)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--pi, var(--blue)) 28%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--pi, var(--blue));
  margin-bottom: 1.3rem;
  transition: transform 0.3s var(--spring);
}

.price-card:hover .price-icon {
  transform: scale(1.1) rotate(-6deg);
}

.price-plan {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.price-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1.75rem;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.price-num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.2rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.price-features li i {
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--green);
  width: 16px;
  text-align: center;
}

.price-feat-off {
  opacity: 0.38;
}

.price-feat-off i {
  color: var(--muted) !important;
}

/* Divider line above features */
.price-features::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
  margin-bottom: 0.5rem;
}

/* Note row */
.price-note {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--r-md);
  padding: 1.1rem 1.5rem;
  display: inline-block;
  margin: 0 auto;
}

.price-note p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.price-note-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-note-link:hover {
  color: var(--cyan);
}

@media (max-width: 575px) {
  .price-num {
    font-size: 2.4rem;
  }
  .price-card {
    padding: 1.75rem 1.4rem;
  }
}

/*# sourceMappingURL=xoomcare.css.map */
