﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0c1827; --navy2: #112038; --navy3: #1a2f4a;
  --teal: #00c9a7; --teal-glow: rgba(0,201,167,.12);
  --teal-border: rgba(0,201,167,.2);
  --white: #e8f0f8; --grey: #7a8fa6;
  --card-bg: rgba(17,32,56,.8);
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  padding-top: 72px; /* offset for fixed header */
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: linear-gradient(rgba(0,201,167,.035) 1px,transparent 1px), linear-gradient(90deg,rgba(0,201,167,.035) 1px,transparent 1px);
  background-size: 55px 55px; pointer-events: none; z-index: 0;
}
.glow { position: fixed; border-radius: 50%; filter: blur(130px); pointer-events: none; z-index: 0; }
.glow-1 { width: 600px; height: 600px; background: rgba(0,201,167,.07); top: -150px; right: -100px; }
.glow-2 { width: 450px; height: 450px; background: rgba(0,80,200,.06); bottom: 0; left: -150px; }
.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  min-width: 0;
  box-sizing: border-box;
}

/* HEADER */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  /* position:fixed instead of sticky - sticky breaks when any ancestor has
     overflow-x:hidden (creates a scroll container, killing sticky).
     backdrop-filter lives on ::before so position:fixed children stay
     viewport-relative on all browsers including Safari. */
  border-bottom: 1px solid var(--teal-border);
  padding: 16px 0;
  transition: padding .3s ease, border-color .3s ease, box-shadow .35s ease;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12,24,39,.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: background .35s ease;
}
header.scrolled {
  border-bottom-color: rgba(0,201,167,.3);
  box-shadow: 0 4px 32px rgba(0,0,0,.5), 0 1px 0 rgba(0,201,167,.18);
  padding: 10px 0;
}
header.scrolled::before {
  background: rgba(7,14,26,.97);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-width: 0; }
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.15;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span { color: var(--teal); }
.header-right { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.status-dot { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #b8f5e8; border: 1px solid rgba(0,201,167,.45); padding: 7px 14px; border-radius: 999px; background: linear-gradient(135deg, rgba(0,201,167,.22), rgba(0,201,167,.08)); box-shadow: 0 0 0 1px rgba(0,201,167,.12) inset, 0 8px 22px rgba(0,201,167,.12); }
.status-dot::before { content: ''; width: 9px; height: 9px; background: #00e6b8; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 4px rgba(0,201,167,.25), 0 0 18px rgba(0,230,184,.55); }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.72; transform:scale(.92); } }
@keyframes pulseHero { 0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 6px rgba(0,201,167,.35),0 0 28px rgba(0,230,184,.65); } 50% { opacity:.88; transform:scale(.94); box-shadow:0 0 0 10px rgba(0,201,167,.2),0 0 36px rgba(0,230,184,.45); } }
.btn-contact { font-size: 12px; font-weight: 600; font-family: var(--font-sans); background: var(--teal); color: #0c1827; border: none; padding: 8px 18px; border-radius: 6px; cursor: pointer; text-decoration: none; transition: opacity .2s,transform .2s; white-space: nowrap; }
.btn-contact:hover { opacity: .88; transform: translateY(-1px); }
/* "Get a Free Quote" button - slightly tighter padding so the longer label fits neatly */
.btn-contact.btn-quote { padding-left: 14px; padding-right: 14px; }
.btn-contact.btn-resume {
  position: relative;
  background: linear-gradient(135deg, #00c9a7 0%, #00a8ff 100%);
  color: #061322;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 8px 18px rgba(0,168,255,.24), 0 0 0 1px rgba(255,255,255,.1) inset;
}
.btn-contact.btn-resume::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  opacity: .55;
  pointer-events: none;
}
.btn-contact.btn-resume:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,168,255,.32), 0 0 18px rgba(0,201,167,.2);
}

@keyframes nav-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0);    }
}

/* NAV LINKS - root-level fixed bar; spans full width, items centered */
.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  z-index: 200;
  pointer-events: none; /* click-through the bar; links opt back in below */
}
.nav-links .nav-link { pointer-events: auto; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-link-kit { color: var(--teal); }
.nav-link-kit:hover { color: var(--teal); background: var(--teal-glow); }

/* HAMBURGER TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); border-color: var(--teal-border); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* NAV OVERLAY (backdrop, created by JS) */
#nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998; /* below drawer (9999), above everything else */
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#nav-overlay.active { opacity: 1; pointer-events: auto; }

/* DRAWER HEAD (mobile only - hidden on desktop) */
.nav-drawer-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--teal-border);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.nav-drawer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-drawer-brand span { color: var(--teal); }
.nav-drawer-close {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-drawer-close:hover {
  background: rgba(255,60,60,.12);
  border-color: rgba(255,60,60,.28);
  color: #ff7070;
}

/* HERO */
.hero {
  padding: 88px 0 64px;
  text-align: center;
  animation: fadeUp .7s ease both;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,min(320px,100%));
  gap: clamp(16px, 4vw, 36px);
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.hero-content { text-align: left; min-width: 0; }
.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,201,167,.5);
  background: linear-gradient(135deg, rgba(0,201,167,.28), rgba(0,168,255,.1));
  box-shadow: 0 0 0 1px rgba(0,201,167,.15) inset, 0 12px 32px rgba(0,201,167,.18), 0 0 40px rgba(0,201,167,.12);
}
.hero-availability-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00f0c8;
  animation: pulseHero 2.2s ease-in-out infinite;
}
.hero-availability-text {
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 700;
  letter-spacing: .02em;
  color: #d4fff6;
  text-shadow: 0 0 24px rgba(0,201,167,.35);
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 0; font-weight: 500; }
.eyebrow::before,.eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--teal); opacity: .5; }
h1 { font-family: var(--font-display); font-size: clamp(34px,5.2vw,56px); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
h1 .accent { color: var(--teal); }
.hero-sub { font-size: 16px; color: var(--grey); max-width: 520px; margin: 0 0 28px; line-height: 1.72; font-weight: 400; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 28px;
}
.btn-hero-hire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3);
  background: linear-gradient(135deg, #00e0ba, #00c9a7);
  color: #052118;
  box-shadow: 0 14px 34px rgba(0,201,167,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  animation: ctaGlow 2.4s ease-in-out infinite;
}
.btn-hero-hire::after {
  content: '→';
  font-size: 14px;
  line-height: 1;
}
.btn-hero-hire:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,201,167,.42), 0 0 0 1px rgba(255,255,255,.14) inset, 0 0 28px rgba(0,201,167,.25);
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 14px 34px rgba(0,201,167,.35), 0 0 0 1px rgba(255,255,255,.08) inset; }
  50% { box-shadow: 0 20px 42px rgba(0,201,167,.45), 0 0 0 1px rgba(255,255,255,.14) inset, 0 0 30px rgba(0,201,167,.22); }
}
.hero-cta-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  min-width: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  padding: 7px 12px;
  border-radius: 8px;
  line-height: 1.3;
}
.hero-badge-response { color: #c5d8e8; }
.hero-badge-icon {
  flex-shrink: 0;
  color: var(--teal);
  opacity: .95;
}
.hero-badge-price {
  color: #b8f0e4;
  border-color: rgba(0,201,167,.22);
  background: rgba(0,201,167,.08);
}
.stats {
  display: flex;
  justify-content: center;
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  min-width: 0;
  margin: 0;
  background: var(--card-bg);
}
.stat {
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(12px, 3vw, 20px) clamp(8px, 2.5vw, 16px);
  text-align: center;
  border-right: 1px solid var(--teal-border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 600;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.stat-label {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: .04em;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.hero-photo-card {
  background: var(--card-bg);
  border: 1px solid var(--teal-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,.34);
  text-align: left;
  width: 100%;
  max-width: 320px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  display: block;
  flex-shrink: 1;
}
.hero-photo-meta { padding: 12px 4px 6px; display: flex; flex-direction: column; gap: 3px; }
.hero-photo-meta strong { font-size: 15px; color: var(--white); font-weight: 600; letter-spacing: .01em; }
.hero-photo-meta span { font-size: 12px; color: var(--grey); }

/* SECTION HEAD */
.section-head { text-align: center; margin-bottom: 48px; margin-top: 80px; }
.section-head h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px; }
.section-head p { font-size: 14px; color: var(--grey); }

/* PROJECT CARDS */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  margin-bottom: 80px;
  animation: fadeUp .7s .15s ease both;
}
.project-card { background: var(--card-bg); border: 1px solid var(--teal-border); border-radius: 14px; overflow: hidden; transition: transform .3s,border-color .3s,box-shadow .3s; cursor: pointer; display: flex; flex-direction: column; backdrop-filter: blur(10px); }
.project-card:hover { transform: translateY(-6px); border-color: rgba(0,201,167,.5); box-shadow: 0 20px 60px rgba(0,0,0,.4),0 0 0 1px rgba(0,201,167,.15); }
.card-bar { height: 4px; background: linear-gradient(90deg,var(--teal),#00a8ff); }
.card-bar.orange { background: linear-gradient(90deg,#ff6b35,#f7c59f); }
.card-bar.purple { background: linear-gradient(90deg,#7c3aed,#a78bfa); }
.card-body { padding: 24px; flex: 1; }
.card-icon { width: 44px; height: 44px; background: var(--teal-glow); border: 1px solid var(--teal-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.card-icon.orange-bg { background: rgba(255,107,53,.1); border-color: rgba(255,107,53,.2); }
.card-icon.purple-bg { background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.2); }
.card-type { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; font-weight: 600; }
.card-type.orange { color: #ff6b35; }
.card-type.purple { color: #a78bfa; }
.card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.35; }
.card-desc { font-size: 13px; color: var(--grey); line-height: 1.7; margin-bottom: 18px; font-weight: 400; }
.features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.features li { font-size: 12px; color: var(--grey); display: flex; align-items: flex-start; gap: 8px; }
.features li::before { content: '✓'; color: var(--teal); font-size: 11px; margin-top: 1px; flex-shrink: 0; }
.features li.orange::before { color: #ff6b35; }
.features li.purple::before { color: #a78bfa; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tag { font-size: 10px; letter-spacing: .5px; color: var(--grey); border: 1px solid rgba(255,255,255,.08); padding: 3px 9px; border-radius: 4px; background: rgba(255,255,255,.04); }
.card-footer { padding: 16px 20px; border-top: 1px solid var(--teal-border); display: flex; align-items: center; justify-content: space-between; gap: 10px; background: rgba(0,0,0,.15); }
.demo-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--teal); white-space: nowrap; }
.demo-badge::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
.demo-badge.coming { color: var(--grey); }
.demo-badge.coming::before { background: var(--grey); animation: none; }
.card-actions { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-demo { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; font-family: var(--font-sans); background: var(--teal); color: #0c1827; border: none; padding: 8px 14px; border-radius: 6px; cursor: pointer; text-decoration: none; white-space: nowrap; transition: opacity .2s,transform .15s; }
.btn-demo:hover { opacity: .88; transform: scale(1.03); }
.btn-demo svg { width: 13px; height: 13px; }
.btn-demo-white { background: #ffffff; color: #1a2f4a; border: 1px solid rgba(255,255,255,.75); }
.btn-repo { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; font-family: var(--font-sans); padding: 8px 11px; border-radius: 6px; text-decoration: none; color: var(--teal); border: 1px solid rgba(0,201,167,.35); background: rgba(0,201,167,.12); white-space: nowrap; transition: opacity .2s,transform .15s; }
.btn-repo:hover { opacity: .92; transform: scale(1.03); }
.btn-repo svg { width: 12px; height: 12px; }
.btn-repo-purple { color: #a78bfa; border-color: rgba(167,139,250,.35); background: rgba(167,139,250,.12); }
.btn-demo.disabled { background: rgba(255,255,255,.06); color: var(--grey); cursor: not-allowed; border: 1px solid rgba(255,255,255,.08); }
.btn-demo.disabled:hover { opacity:1; transform:none; }

/* TESTIMONIALS */
.testimonials-section { position: relative; z-index: 1; overflow-x: hidden; }
.testimonials-head { margin-top: 0; margin-bottom: 40px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-bottom: 80px;
  animation: fadeUp .7s .1s ease both;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--teal-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,201,167,.45);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(0,201,167,.12);
}
.testimonial-card-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #00a8ff);
}
.testimonial-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f5c542;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}
.testimonial-star { text-shadow: 0 0 12px rgba(245,197,66,.35); }
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #9ef1ba;
  border: 1px solid rgba(111,218,68,.35);
  background: rgba(111,218,68,.1);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.testimonial-verified::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fda44;
  box-shadow: 0 0 10px rgba(111,218,68,.45);
}
.testimonial-quote { margin: 0; }
.testimonial-quote p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 400;
}
.testimonial-quote p::before {
  content: '“';
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.25em;
  margin-right: 2px;
  opacity: .85;
}
.testimonial-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--teal-border);
  margin-top: auto;
}
.testimonial-flag { font-size: 28px; line-height: 1; flex-shrink: 0; }
.testimonial-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.testimonial-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.testimonial-role { font-size: 12px; color: var(--grey); line-height: 1.45; }

/* ─── LINK BUTTONS (social) ─── */
.link-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; font-family: var(--font-sans); padding: 9px 18px; border-radius: 7px; text-decoration: none; white-space: nowrap; transition: opacity .2s,transform .2s,box-shadow .2s; cursor: pointer; border: none; }
.link-btn:hover { opacity: .9; transform: translateY(-2px); }
.link-btn.github { background: rgba(255,255,255,.07); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.link-btn.github:hover { background: rgba(255,255,255,.12); box-shadow: 0 6px 18px rgba(255,255,255,.07); }
.link-btn.linkedin { background: #0077b5; color: #fff; }
.link-btn.linkedin:hover { box-shadow: 0 6px 18px rgba(0,119,181,.35); }
.link-btn.whatsapp { background: #25d366; color: #fff; }
.link-btn.whatsapp:hover { box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.link-btn.email { background: var(--teal); color: #0c1827; }
.link-btn.email:hover { box-shadow: 0 6px 18px rgba(0,201,167,.35); }
.link-btn.upwork { background: rgba(111,218,68,.12); color: #6fda44; border: 1px solid rgba(111,218,68,.38); box-shadow: 0 0 0 1px rgba(111,218,68,.06) inset; }
.link-btn.upwork:hover { opacity: 1; background: rgba(111,218,68,.18); border-color: rgba(111,218,68,.55); box-shadow: 0 8px 22px rgba(111,218,68,.18); }
.link-btn.resume-btn { position: relative; background: linear-gradient(135deg,#00c9a7,#00a8ff); color: #061322; border: 1px solid rgba(255,255,255,.24); box-shadow: 0 8px 18px rgba(0,168,255,.22); }
.link-btn.resume-btn:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,168,255,.32),0 0 18px rgba(0,201,167,.2); }

/* ─── CTA / ABOUT SECTION (premium) ─── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(17,32,56,.95) 0%, rgba(10,19,34,.98) 100%);
  border: 1px solid rgba(0,201,167,.22);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: fadeUp .7s .25s ease both;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(0,201,167,.05) inset;
  transition: border-color .4s, box-shadow .4s;
}
.cta-section:hover {
  border-color: rgba(0,201,167,.35);
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(0,201,167,.1) inset;
}
.cta-section::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,201,167,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -100px; left: 5%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,80,200,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Gradient accent bar */
.cta-top-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,201,167,.7) 30%, rgba(0,168,255,.9) 65%, transparent 100%);
  pointer-events: none;
}

/* Left */
.cta-left { position: relative; z-index: 1; min-width: 0; }

.cta-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #c8fff3;
  border: 1px solid rgba(0,201,167,.45);
  background: linear-gradient(135deg, rgba(0,201,167,.18), rgba(0,201,167,.05));
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 0 24px rgba(0,201,167,.08), 0 0 0 1px rgba(0,201,167,.08) inset;
}
.cta-avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00f0c8;
  flex-shrink: 0;
  animation: pulseHero 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(0,240,200,.2);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Mini stat cards */
.cta-mini-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-mini-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: rgba(0,201,167,.05);
  border: 1px solid rgba(0,201,167,.15);
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 82px;
  transition: background .25s, border-color .25s, transform .25s;
  cursor: default;
}
.cta-mini-stat:hover { background: rgba(0,201,167,.1); border-color: rgba(0,201,167,.32); transform: translateY(-2px); }
.cta-mini-stat-num {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em; line-height: 1;
  text-shadow: 0 0 20px rgba(0,201,167,.3);
}
.cta-mini-stat-label { font-size: 10px; color: var(--grey); letter-spacing: .04em; font-weight: 500; text-align: center; line-height: 1.3; }

/* Right */
.cta-right { position: relative; z-index: 1; min-width: 0; }

.cta-card {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(0,201,167,.16);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.03) inset;
}

/* Primary hire button */
.cta-hire-primary {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 700; font-family: var(--font-sans); letter-spacing: .01em;
  color: #042018;
  background: linear-gradient(135deg, #00e8c2 0%, #00c9a7 55%, #00b0f0 100%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 11px;
  padding: 15px 22px;
  text-decoration: none; cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  box-shadow: 0 12px 32px rgba(0,201,167,.42), 0 0 0 1px rgba(255,255,255,.08) inset;
  animation: ctaGlow 2.4s ease-in-out infinite;
  overflow: hidden;
}
/* Shimmer sweep */
.cta-hire-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.cta-hire-primary:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 20px 48px rgba(0,201,167,.55), 0 0 30px rgba(0,201,167,.2), 0 0 0 1px rgba(255,255,255,.12) inset; animation: none; }
.cta-hire-primary:hover::after { left: 140%; }
.cta-hire-primary svg { flex-shrink: 0; opacity: .85; }
.cta-hire-arrow { margin-left: auto; font-size: 16px; line-height: 1; transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.cta-hire-primary:hover .cta-hire-arrow { transform: translateX(5px); }

/* Divider */
.cta-divider { display: flex; align-items: center; gap: 10px; font-size: 10px; color: rgba(122,143,166,.5); letter-spacing: .08em; text-transform: uppercase; }
.cta-divider::before, .cta-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07); }

/* Social column inside cta-card */
.cta-social-grid { display: flex; flex-direction: column; gap: 8px; }
.cta-social-grid .link-btn { width: 100%; justify-content: center; padding: 10px 16px; font-size: 13px; border-radius: 9px; }

/* Response note */
.cta-response-note { font-size: 11px; color: rgba(122,143,166,.5); text-align: center; letter-spacing: .02em; }

/* FOOTER */
footer { border-top: 1px solid var(--teal-border); padding: 28px 0; text-align: center; }
footer p { font-size: 12px; color: var(--grey); }
footer span { color: var(--teal); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: var(--navy2); border: 1px solid var(--teal-border); border-radius: 16px; padding: 36px; max-width: 420px; width: 90%; position: relative; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity:0; transform:scale(.95) translateY(10px); } to { opacity:1; transform:scale(1) translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--grey); font-size: 20px; cursor: pointer; line-height: 1; font-family: inherit; }
.modal-close:hover { color: var(--white); }
.modal h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.modal-sub { font-size: 13px; color: var(--grey); margin-bottom: 24px; }
.cred-box { background: rgba(0,201,167,.06); border: 1px solid var(--teal-border); border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; }
.cred-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 13px; }
.cred-row:last-child { border-bottom: none; }
.cred-label { color: var(--grey); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; font-weight: 500; }
.cred-value { font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace; font-size: 13px; color: var(--teal); letter-spacing: .3px; }
.modal-note { font-size: 11px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.modal-note strong { color: rgba(255,165,0,.9); }
.btn-go { width: 100%; padding: 12px; background: var(--teal); color: #0c1827; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; text-decoration: none; display: block; text-align: center; transition: opacity .2s; }
.btn-go:hover { opacity: .88; }
.resume-modal { max-width: 920px; width: min(95vw, 920px); padding: 28px; }
.resume-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.resume-badge { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--teal-border); background: var(--teal-glow); padding: 6px 10px; border-radius: 999px; white-space: nowrap; }
.resume-modal .modal-sub { margin-bottom: 0; }
.resume-frame { width: 100%; height: min(75vh, 760px); border: 1px solid var(--teal-border); border-radius: 10px; background: #0b1220; }
.resume-mobile-panel { margin-top: 8px; }
.resume-mobile-hint { font-size: 13px; color: var(--grey); line-height: 1.55; margin-bottom: 16px; text-align: center; }
.resume-mobile-open { text-align: center; }
@media (max-width: 1024px) {
  #resumeModal .resume-frame[hidden] { display: none !important; }
  #resumeModal .resume-mobile-panel:not([hidden]) { display: block; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@media (max-width:900px) {
  .cta-section { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  header .wrap { gap: 12px; }

  /* Show hamburger */
  .nav-toggle { display: flex; }

  /* Drawer: hidden by default, shown as a right-side panel when .open */
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(9,17,30,.98);
    border-left: 1px solid var(--teal-border);
    box-shadow: -10px 0 50px rgba(0,0,0,.55);
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow-y: auto;
    animation: nav-slide-in .35s cubic-bezier(.4,0,.2,1) both;
  }

  /* Show drawer branding row on mobile */
  .nav-drawer-head { display: flex; }

  .nav-link {
    padding: 15px 22px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: var(--grey);
    white-space: normal;
  }
  .nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
  .nav-link-kit {
    margin: 12px 20px 20px;
    border-radius: 10px;
    border: 1px solid var(--teal-border);
    border-bottom: 1px solid var(--teal-border);
    background: var(--teal-glow);
    color: var(--teal);
    text-align: center;
    padding: 13px 20px;
  }
  .nav-link-kit:hover { background: rgba(0,201,167,.18); color: var(--teal); }
  .hero-layout { grid-template-columns: 1fr; gap: 22px; }
  .hero-content { text-align: center; }
  .hero-intro { align-items: center; }
  .hero-availability { margin-left: auto; margin-right: auto; }
  h1 { letter-spacing: -0.02em; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }
  .btn-hero-hire {
    width: auto;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0,201,167,.28), 0 0 0 1px rgba(255,255,255,.08) inset;
    border: 1px solid rgba(255,255,255,.24);
    background: linear-gradient(135deg, #00e0ba, #00c9a7);
    color: #052118;
    text-align: center;
    justify-content: center;
    line-height: 1.3;
    white-space: nowrap;
    animation: none;
  }
  .hero-cta-meta {
    display: contents;
    justify-content: center;
    gap: 8px 10px;
  }
  .stats { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-photo-card { max-width: 100%; width: 100%; margin-left: auto; margin-right: auto; }
  .projects { grid-template-columns: 1fr; }
  .header-right .status-dot { display: none; }
  /* CTA section mobile */
  .cta-section { grid-template-columns: 1fr; gap: 28px; }
  .cta-left { text-align: center; }
  .cta-avail-badge { margin: 0 auto 24px; }
  .cta-desc { margin-left: auto; margin-right: auto; }
  .cta-mini-stats { justify-content: center; }
  .cta-right { width: 100%; }
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  animation: fadeUp .7s .1s ease both;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--teal-border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #00a8ff);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,201,167,.5);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(0,201,167,.15);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(0,201,167,.2);
  border-color: rgba(0,201,167,.45);
  box-shadow: 0 0 20px rgba(0,201,167,.18);
}
.service-icon-wrap svg { display: block; }
.service-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
}
.service-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}
.service-desc strong { color: var(--white); font-weight: 600; }
.services-cta-wrap { text-align: center; padding-bottom: 80px; }
.services-cta-btn { font-size: 15px; padding: 14px 36px; }

/* ================================================================
   SITE FOOTER — Premium 4-Column Layout
   ================================================================ */
.site-footer {
  border-top: 1px solid var(--teal-border);
  background: linear-gradient(180deg, rgba(17,32,56,.5) 0%, rgba(7,14,26,.98) 100%);
  position: relative; z-index: 1;
  padding: 0;       /* override generic footer { padding: 28px 0 } */
  text-align: left; /* override generic footer { text-align: center } */
}
.site-footer p { font-size: 13px; color: var(--grey); } /* override footer p { font-size:12px } */
.footer-main { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-start;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1.2;
}
.footer-logo span { color: var(--teal); }
.footer-brand-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 9px;
  text-decoration: none; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s, background .2s, opacity .2s;
}
.footer-social-btn:hover { transform: translateY(-3px); }
.footer-social-btn svg { width: 18px; height: 18px; display: block; }
.footer-social-btn span { color: inherit; } /* override generic footer span { color: teal } */
.footer-social-btn.fs-linkedin { background: #0077b5; color: #fff; }
.footer-social-btn.fs-linkedin:hover { box-shadow: 0 8px 24px rgba(0,119,181,.4); }
.footer-social-btn.fs-github { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.footer-social-btn.fs-github:hover { background: rgba(255,255,255,.14); box-shadow: 0 8px 24px rgba(255,255,255,.08); }
.footer-social-btn.fs-whatsapp { background: #25d366; color: #fff; }
.footer-social-btn.fs-whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.footer-social-btn.fs-email { background: var(--teal); color: #0c1827; }
.footer-social-btn.fs-email:hover { box-shadow: 0 8px 24px rgba(0,201,167,.4); }
.footer-social-btn.fs-other { background: rgba(255,255,255,.07); color: var(--white); border: 1px solid rgba(255,255,255,.1); }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13px;
  color: var(--grey);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .2s, padding-left .2s;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a svg { flex-shrink: 0; opacity: .7; transition: opacity .2s; color: var(--teal); }
.footer-links a:hover svg { opacity: 1; }
.footer-avail-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: #c8fff3;
  border: 1px solid rgba(0,201,167,.35);
  background: rgba(0,201,167,.1);
  padding: 7px 14px; border-radius: 999px;
  margin-top: 20px;
}
.footer-avail-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00f0c8;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.footer-response-time {
  font-size: 11px;
  color: rgba(122,143,166,.55);
  margin-top: 10px;
  letter-spacing: .02em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom-inner > p { font-size: 12px; color: var(--grey); margin: 0; }
.footer-bottom-inner span { color: var(--teal); }
.back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(0,201,167,.1);
  border: 1px solid rgba(0,201,167,.22);
  color: var(--teal); text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.back-to-top:hover {
  background: rgba(0,201,167,.2);
  box-shadow: 0 6px 20px rgba(0,201,167,.22);
  transform: translateY(-2px);
}

/* Responsive — Services + Footer */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: auto; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .back-to-top { margin: 0 auto; }
}

/* Mobile button font-size fixes */
@media (max-width: 768px) {
  /* Navbar "Discuss Your Project" button */
  .btn-contact.btn-quote { font-size: 10px; padding: 7px 10px; }
  /* Hero CTA buttons */
  .btn-kit  { font-size: 13px !important; padding: 11px 18px !important; }
  .btn-hire-ghost { font-size: 13px; padding: 11px 18px; }
}

/* ================================================================
   OWL CAROUSEL — Testimonials (theme override, no design change)
   ================================================================ */

/* Preserve bottom spacing; block prevents FOUC flash */
.testimonial-carousel.owl-carousel { display: block; margin-bottom: 80px; }

/* Equal-height cards */
.testimonial-carousel .owl-stage { display: flex !important; }
.testimonial-carousel .owl-item { display: flex; height: auto; }
.testimonial-carousel .owl-item .testimonial-card { flex: 1; }

/* Full-width single card */
.testimonial-carousel .owl-stage-outer { overflow: visible; padding-bottom: 12px; }
.testimonial-carousel { width: 100%; }

/* Nav arrows — neon/cyan themed */
.testimonial-carousel .owl-nav {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testimonial-carousel .owl-nav button {
  width: 40px !important; height: 40px !important;
  border-radius: 10px !important;
  background: rgba(17,32,56,.9) !important;
  border: 1px solid rgba(0,201,167,.28) !important;
  color: var(--teal) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s !important;
  outline: none !important;
  line-height: 1 !important;
}
.testimonial-carousel .owl-nav button:hover {
  background: rgba(0,201,167,.14) !important;
  border-color: rgba(0,201,167,.65) !important;
  box-shadow: 0 0 22px rgba(0,201,167,.22) !important;
  transform: translateY(-2px);
}
.testimonial-carousel .owl-nav button.disabled {
  opacity: .35 !important;
  pointer-events: none;
}
.testimonial-carousel .owl-nav button span {
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0; /* hide default ‹ › text */
}
.testimonial-carousel .owl-nav button svg { display: block; color: var(--teal); }

/* Dot navigation */
.testimonial-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.testimonial-carousel .owl-dot span {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  background: rgba(0,201,167,.18) !important;
  border: 1px solid rgba(0,201,167,.3) !important;
  margin: 0 !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  display: block;
}
.testimonial-carousel .owl-dot.active span,
.testimonial-carousel .owl-dot:hover span {
  background: var(--teal) !important;
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(0,201,167,.45);
}
