:root {
  --bg: #0b0a10;
  --surface: #131225;
  --brand: #b84aff;
  --accent: #00ff88;
  --btn-gradient: linear-gradient(90deg, var(--accent) 0%, var(--brand) 100%);
  --btn-shadow: 0 0 16px var(--accent), 0 0 24px var(--brand);
  --pulse-speed: 2.8s; /* Sync pulse speed for all pulsing elements */
  --text: #eaeaf2;
  --muted: #a3a3b2;
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --sp: clamp(16px, 1.5vw, 22px);
}

/* Global Reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% 10%, #1a1631 0%, transparent 60%),
    radial-gradient(900px 600px at 90% 0%, #0e2a1e 0%, transparent 55%),
    var(--bg);
  padding-top: 74px; /* Adjust to match your header height */
}

/* --- NAV STATIC COLOR --- */
.nav a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  background: #18172c; /* Static dark background */
  box-shadow: none;
  transition: color 0.2s, background 0.2s;
  font-size: 1.08rem;
}

.nav a:hover,
.nav a:focus {
  background: #00ff88; /* Neon green on hover */
  color: #18172c;
}

/* --- HERO PARAGRAPH WHITE GLOW --- */
.hero p {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 0 18px #fff, 0 0 32px #fff;
  margin-bottom: 32px;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

/* --- HERO HEADER CYBERPUNK ANIMATION & FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&display=swap');

.hero h1 {
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #00ff88;
  text-shadow:
    0 0 24px #00ff88,
    0 0 48px #b84aff,
    0 0 2px #fff;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #00ff88 0%, #b84aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cyberScan 2.8s cubic-bezier(.7,0,.3,1) infinite;
  position: relative;
  z-index: 1;
}

@keyframes cyberScan {
  0%, 100% {
    filter: drop-shadow(0 0 12px #00ff88) drop-shadow(0 0 24px #b84aff);
    letter-spacing: 3px;
    opacity: 1;
  }
  10% {
    filter: drop-shadow(0 0 24px #b84aff) drop-shadow(0 0 32px #00ff88);
    letter-spacing: 4px;
    opacity: 0.92;
  }
  50% {
    filter: drop-shadow(0 0 32px #b84aff) drop-shadow(0 0 48px #00ff88);
    letter-spacing: 6px;
    opacity: 1;
  }
  90% {
    filter: drop-shadow(0 0 24px #00ff88) drop-shadow(0 0 32px #b84aff);
    letter-spacing: 4px;
    opacity: 0.96;
  }
}

/* --- Responsive tweaks --- */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: 2px;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* --- Universal Mobile Compatibility Fixes --- */

/* Prevent horizontal scroll everywhere */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Responsive sections and containers */
.section,
.section.alt,
.hero,
.footer-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 700px) {
  .section,
  .section.alt,
  .hero,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Responsive grids */
.projects-grid,
.reviews-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .projects-grid,
  .reviews-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Responsive cards */
.card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding: 16px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .card {
    padding: 18px 14px;
    margin-bottom: 22px;
  }
}

/* --- CYBERPUNK HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: linear-gradient(to right, rgba(10,9,15,0.95), rgba(184,74,255,0.12));
  border-bottom: 2px solid var(--brand);
  box-shadow: 0 2px 24px rgba(184,74,255,0.12), 0 0 0 2px var(--accent) inset;
  backdrop-filter: blur(8px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  min-height: 72px;
  animation: headerPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes headerPulse {
  0%, 100% {
    box-shadow: 0 2px 24px var(--brand), 0 0 0 2px var(--accent) inset;
    border-bottom: 2px solid var(--brand);
  }
  50% {
    box-shadow: 0 2px 32px var(--accent), 0 0 0 2px var(--brand) inset;
    border-bottom: 2px solid var(--accent);
  }
}

.logo {
  font-family: 'Orbitron', 'Inter', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent), 0 0 24px var(--brand);
  transition: color 0.2s;
  margin-right: 24px;
  animation: logoPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

.logo span {
  color: var(--brand);
  text-shadow: 0 0 8px var(--brand), 0 0 24px var(--accent);
}

@keyframes logoPulse {
  0%, 100% {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent), 0 0 24px var(--brand);
  }
  50% {
    color: var(--brand);
    text-shadow: 0 0 24px var(--accent), 0 0 8px var(--brand);
  }
}



/* --- CYBERPUNK HERO --- */
.hero {
  padding: 100px 20px 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #00ff88;
  text-shadow:
    0 0 24px #00ff88,
    0 0 48px #b84aff,
    0 0 2px #fff;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #00ff88 0%, #b84aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cyberScan 2.8s cubic-bezier(.7,0,.3,1) infinite;
  position: relative;
  z-index: 1;
}

@keyframes cyberScan {
  0%, 100% {
    filter: drop-shadow(0 0 12px #00ff88) drop-shadow(0 0 24px #b84aff);
    letter-spacing: 3px;
    opacity: 1;
  }
  10% {
    filter: drop-shadow(0 0 24px #b84aff) drop-shadow(0 0 32px #00ff88);
    letter-spacing: 4px;
    opacity: 0.92;
  }
  50% {
    filter: drop-shadow(0 0 32px #b84aff) drop-shadow(0 0 48px #00ff88);
    letter-spacing: 6px;
    opacity: 1;
  }
  90% {
    filter: drop-shadow(0 0 24px #00ff88) drop-shadow(0 0 32px #b84aff);
    letter-spacing: 4px;
    opacity: 0.96;
  }
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 0 18px #fff, 0 0 32px #fff;
  margin-bottom: 32px;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 32px;
  box-shadow: 0 0 12px var(--brand) inset;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  animation: neonPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 12px var(--brand) inset, 0 0 16px var(--accent);
    border-color: var(--accent);
  }
  50% {
    box-shadow: 0 0 24px var(--accent) inset, 0 0 32px var(--brand);
    border-color: var(--brand);
  }
}

/* Responsive sections and containers */
.section,
.section.alt,
.hero,
.footer-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 700px) {
  .section,
  .section.alt,
  .hero,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Responsive grids */
.projects-grid,
.reviews-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .projects-grid,
  .reviews-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Responsive cards */
.card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding: 16px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .card {
    padding: 18px 14px;
    margin-bottom: 22px;
  }
}

/* --- CYBERPUNK HERO --- */
.hero {
  padding: 100px 20px 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #00ff88;
  text-shadow:
    0 0 24px #00ff88,
    0 0 48px #b84aff,
    0 0 2px #fff;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #00ff88 0%, #b84aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cyberScan 2.8s cubic-bezier(.7,0,.3,1) infinite;
  position: relative;
  z-index: 1;
}

@keyframes cyberScan {
  0%, 100% {
    filter: drop-shadow(0 0 12px #00ff88) drop-shadow(0 0 24px #b84aff);
    letter-spacing: 3px;
    opacity: 1;
  }
  10% {
    filter: drop-shadow(0 0 24px #b84aff) drop-shadow(0 0 32px #00ff88);
    letter-spacing: 4px;
    opacity: 0.92;
  }
  50% {
    filter: drop-shadow(0 0 32px #b84aff) drop-shadow(0 0 48px #00ff88);
    letter-spacing: 6px;
    opacity: 1;
  }
  90% {
    filter: drop-shadow(0 0 24px #00ff88) drop-shadow(0 0 32px #b84aff);
    letter-spacing: 4px;
    opacity: 0.96;
  }
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 0 18px #fff, 0 0 32px #fff;
  margin-bottom: 32px;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 32px;
  box-shadow: 0 0 12px var(--brand) inset;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  animation: neonPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 12px var(--brand) inset, 0 0 16px var(--accent);
    border-color: var(--accent);
  }
  50% {
    box-shadow: 0 0 24px var(--accent) inset, 0 0 32px var(--brand);
    border-color: var(--brand);
  }
}

/* Sleek cyberpunk Dr Q input box */
#drq-input {
  flex: 1;
  font-size: 1.08rem;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(90deg, #23213a 80%, #00ff88 100%);
  color: #fff;
  outline: none;
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--brand);
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

#drq-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 24px var(--brand), 0 0 32px var(--accent);
  background: linear-gradient(90deg, #23213a 60%, #b84aff 100%);
}

/* Responsive sections and containers */
.section,
.section.alt,
.hero,
.footer-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 700px) {
  .section,
  .section.alt,
  .hero,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Responsive grids */
.projects-grid,
.reviews-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .projects-grid,
  .reviews-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Responsive cards */
.card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding: 16px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .card {
    padding: 18px 14px;
    margin-bottom: 22px;
  }
}


/* --- CYBERPUNK HERO --- */
.hero {
  padding: 100px 20px 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #00ff88;
  text-shadow:
    0 0 24px #00ff88,
    0 0 48px #b84aff,
    0 0 2px #fff;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #00ff88 0%, #b84aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cyberScan 2.8s cubic-bezier(.7,0,.3,1) infinite;
  position: relative;
  z-index: 1;
}

@keyframes cyberScan {
  0%, 100% {
    filter: drop-shadow(0 0 12px #00ff88) drop-shadow(0 0 24px #b84aff);
    letter-spacing: 3px;
    opacity: 1;
  }
  10% {
    filter: drop-shadow(0 0 24px #b84aff) drop-shadow(0 0 32px #00ff88);
    letter-spacing: 4px;
    opacity: 0.92;
  }
  50% {
    filter: drop-shadow(0 0 32px #b84aff) drop-shadow(0 0 48px #00ff88);
    letter-spacing: 6px;
    opacity: 1;
  }
  90% {
    filter: drop-shadow(0 0 24px #00ff88) drop-shadow(0 0 32px #b84aff);
    letter-spacing: 4px;
    opacity: 0.96;
  }
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 0 18px #fff, 0 0 32px #fff;
  margin-bottom: 32px;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 32px;
  box-shadow: 0 0 12px var(--brand) inset;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  animation: neonPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 12px var(--brand) inset, 0 0 16px var(--accent);
    border-color: var(--accent);
  }
  50% {
    box-shadow: 0 0 24px var(--accent) inset, 0 0 32px var(--brand);
    border-color: var(--brand);
  }
}

/* Sleek cyberpunk Dr Q input box */
#drq-input {
  flex: 1;
  font-size: 1.08rem;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(90deg, #23213a 80%, #00ff88 100%);
  color: #fff;
  outline: none;
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--brand);
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

#drq-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 24px var(--brand), 0 0 32px var(--accent);
  background: linear-gradient(90deg, #23213a 60%, #b84aff 100%);
}

/* Responsive sections and containers */
.section,
.section.alt,
.hero,
.footer-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 700px) {
  .section,
  .section.alt,
  .hero,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Responsive grids */
.projects-grid,
.reviews-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .projects-grid,
  .reviews-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Responsive cards */
.card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding: 16px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .card {
    padding: 18px 14px;
    margin-bottom: 22px;
  }
}

/* --- CYBERPUNK HERO --- */
.hero {
  padding: 100px 20px 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #00ff88;
  text-shadow:
    0 0 24px #00ff88,
    0 0 48px #b84aff,
    0 0 2px #fff;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #00ff88 0%, #b84aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cyberScan 2.8s cubic-bezier(.7,0,.3,1) infinite;
  position: relative;
  z-index: 1;
}

@keyframes cyberScan {
  0%, 100% {
    filter: drop-shadow(0 0 12px #00ff88) drop-shadow(0 0 24px #b84aff);
    letter-spacing: 3px;
    opacity: 1;
  }
  10% {
    filter: drop-shadow(0 0 24px #b84aff) drop-shadow(0 0 32px #00ff88);
    letter-spacing: 4px;
    opacity: 0.92;
  }
  50% {
    filter: drop-shadow(0 0 32px #b84aff) drop-shadow(0 0 48px #00ff88);
    letter-spacing: 6px;
    opacity: 1;
  }
  90% {
    filter: drop-shadow(0 0 24px #00ff88) drop-shadow(0 0 32px #b84aff);
    letter-spacing: 4px;
    opacity: 0.96;
  }
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 0 18px #fff, 0 0 32px #fff;
  margin-bottom: 32px;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 32px;
  box-shadow: 0 0 12px var(--brand) inset;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  animation: neonPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 12px var(--brand) inset, 0 0 16px var(--accent);
    border-color: var(--accent);
  }
  50% {
    box-shadow: 0 0 24px var(--accent) inset, 0 0 32px var(--brand);
    border-color: var(--brand);
  }
}

/* Sleek cyberpunk Dr Q input box */
#drq-input {
  flex: 1;
  font-size: 1.08rem;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(90deg, #23213a 80%, #00ff88 100%);
  color: #fff;
  outline: none;
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--brand);
  font-family: 'Orbitron', 'Inter', 'Montserrat', Arial, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

#drq-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 24px var(--brand), 0 0 32px var(--accent);
  background: linear-gradient(90deg, #23213a 60%, #b84aff 100%);
}

/* Responsive sections and containers */
.section,
.section.alt,
.hero,
.footer-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 700px) {
  .section,
  .section.alt,
  .hero,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Responsive grids */
.projects-grid,
.reviews-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .projects-grid,
  .reviews-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Responsive cards */
.card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding: 16px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .card {
    padding: 18px 14px;
    margin-bottom: 22px;
  }
}

/* Hamburger button for mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.7,0,.3,1);
}
.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;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav styles */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    background: linear-gradient(120deg, rgba(19,18,37,0.98) 80%, rgba(184,74,255,0.09) 100%);
    border: 1.5px solid var(--brand);
    box-shadow: 0 8px 32px rgba(184,74,255,0.18), 0 2px 16px rgba(0,255,136,0.10);
    backdrop-filter: blur(12px) saturate(1.2);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    z-index: 10000;
    min-width: 200px;
    align-items: flex-end;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px) scale(0.98);
  }
  .nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    background: rgba(11,10,16,0.7);
    box-shadow: 0 2px 8px rgba(184,74,255,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .nav a:hover,
  .nav a:focus {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 0 12px var(--brand), 0 0 24px var(--accent);
  }
}

/* --- Mobile Compatibility --- */
@media (max-width: 700px) {
  .section,
  .section.alt,
  .footer-inner,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 32px;
  }
}

/* Responsive header and nav */
@media (max-width: 900px) {
  .site-header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 8px;
    min-height: 56px;
  }
  .logo {
    font-size: 1.1rem;
    padding-right: 8px;
  }
  .nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    border-radius: 18px;
    align-items: stretch;
    box-sizing: border-box;
    padding: 1.2rem 1rem;
    z-index: 1000;
  }
  .nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}



/* Make nav dropdown even more compact on very small screens */
@media (max-width: 500px) {
  .nav {
    left: 0;
    right: 0;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    font-size: 1rem;
  }
}

/* Responsive hero text */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}

/* Responsive about photo */
@media (max-width: 700px) {
  .about-photo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 22px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-photo img,
  .profile-pic {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .about-grid {
    flex-direction: column;
    gap: 0;
  }
}

/* Responsive Dr Q widget */
@media (max-width: 600px) {
  .drq-widget {
    position: fixed;
    bottom: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 56px;
    height: 56px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    max-width: 100vw;
  }
  .drq-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
    border-radius: 50%;
    background: var(--brand, #00c47a);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .drq-window {
    position: fixed;
    left: 2vw;
    right: 2vw;
    bottom: 80px;
    width: 96vw;
    max-width: 96vw;
    min-width: 0;
    border-radius: 14px;
    font-size: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: rgba(19,18,37,0.98);
    color: #fff;
    z-index: 10000;
    overflow: hidden;
    max-height: 70vh;
    display: none; /* JS should toggle this */
  }
  .drq-window.open {
    display: block;
  }
}

/* Ensure .drq-widget and .drq-window are always above other content */
.drq-widget,
.drq-window {
  z-index: 10000;
}

/* Hero */
.hero {
  padding: 80px 20px 60px;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin: 0 0 12px;
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0 0 8px;
}

p {
  line-height: 1.6;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* Buttons: unified filter style */
.btn,
button,
input[type="button"],
input[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #0a0a0a;
  color: #b84aff;
  border: 1px solid #b84aff;
  border-radius: var(--radius-sm);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.15s ease;
  box-shadow: var(--shadow);
}

.btn::before,
button::before,
input[type="button"]::before,
input[type="submit"]::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00ff88 10%, transparent 70%);
  transform: scale(0);
  opacity: 0.4;
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn:hover::before,
button:hover::before,
input[type="button"]:hover::before,
input[type="submit"]:hover::before {
  transform: scale(1);
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: #00ff88;
  color: #0a0a0a;
  box-shadow:
    0 0 10px #00ff88,
    0 0 20px #00ff88;
  transform: translateY(-2px);
}

.btn.active,
button.active,
input[type="button"].active,
input[type="submit"].active {
  animation: glitch 0.8s infinite;
  background: #b84aff;
  color: #0a0a0a;
  box-shadow:
    0 0 10px #b84aff,
    0 0 20px #b84aff;
}

/* Sections */
.section {
  padding: 64px 20px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.section-head {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

/* Cards */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card:hover {
  border-color: rgba(255,255,255,0.2);
}



/* Filter Buttons (container & variant) */
.filter-buttons {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  position: relative;
  padding: 0.6rem 1.2rem;
  background: #0a0a0a;
  color: #b84aff;
  border: 1px solid #b84aff;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00ff88 10%, transparent 70%);
  transform: scale(0);
  opacity: 0.4;
  transition: transform 0.4s ease;
  z-index: 0;
}

.filter-btn:hover::before {
  transform: scale(1);
}

.filter-btn:hover {
  background: #00ff88;
  color: #0a0a0a;
  box-shadow:
    0 0 10px #00ff88,
    0 0 20px #00ff88;
}

.filter-btn.active {
  animation: glitch 0.8s infinite;
  background: #b84aff;
  color: #0a0a0a;
  box-shadow:
    0 0 10px #b84aff,
    0 0 20px #b84aff;
}

/* Glitch Keyframes */
@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}

/* About Section */
.about-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.about-photo img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b84aff;
  box-shadow: 0 0 20px #b84aff;
  animation: neonPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes borderPulse {
  0% {
    border-color: #b84aff;
    box-shadow: 0 0 20px #b84aff;
    transform: scale(1);
  }
  25% {
    border-color: #00ff88;
    box-shadow: 0 0 25px #00ff88;
    transform: scale(1.02);
  }
  50% {
    border-color: #b84aff;
    box-shadow: 0 0 30px #b84aff;
    transform: scale(1.01);
  }
  75% {
    border-color: #00ff88;
    box-shadow: 0 0 25px #00ff88;
    transform: scale(1.02);
  }
  100% {
    border-color: #b84aff;
    box-shadow: 0 0 20px #b84aff;
    transform: scale(1);
  }
}

/* Tabs & Skills */


.tab-panels .tab-panel {
  display: none;
}

.tab-panels .tab-panel.active {
  display: block;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 12px 0;
}

.chips li {
  list-style: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--glass);
  color: var(--text);
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px; /* Increased gap for desktop */
}

.skill-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 18px; /* Increased gap for desktop */
}

/* Add spacing above skill meters in the skills tab */
#tab-skills {
  margin-top: 28px;
}

.skill-list {
  margin-top: 0;
  margin-bottom: 0;
}

/* Optional: add more space between each skill item */
.skill-list li {
  margin-bottom: 16px;
}

.meter {
  height: 10px;
  background: #211f36;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.meter::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

/* Proficiency Radials */
.radials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.radials > div {
  text-align: center;
}

.radial {
  --size: 84px;
  --track: rgba(229, 229, 229, 0.25);
  --fill: var(--brand, #00c47a);
  --bg: #15141f;
  --percent: 0;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(var(--fill) calc(var(--percent) * 1turn), var(--track) 0);
  position: relative;
  box-shadow:
    0 0 10px rgba(0, 196, 122, 0.2),
    inset 0 0 6px rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--fill);
  transition: --percent 1s ease-out, background 1s ease-out;
}

.radial::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.5);
}

.radial span {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}

.radial-label {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #ccc;
}

/* Projects */
.projects-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card img,
.card .media video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.card-body {
  padding-top: 12px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.tags span {
  font-size: .8rem;
  background: var(--glass);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 8px;
}

/* Forms */
.form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.form input,
.form textarea,
.form select {
  background: #191834;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  transition: border-color .2s, transform .1s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,196,122,0.2);
}

.form-note {
  font-size: .9rem;
}

.hidden {
  position: absolute;
  left: -9999px;
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.reviews-list .empty {
  color: var(--muted);
}

.review-item {
  padding: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.review-item:last-child {
  border-bottom: 0;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.stars {
  color: #ffd76b;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0a0913;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-nav a,
.socials a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin: 6px 0;
}

.footer-nav a:hover,
.socials a:hover {
  color: var(--text);
}

.legal {
  text-align: center;
  color: var(--muted);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  padding: 10px 0;
  width: 100%;
  max-width: 100vw;
}

/* Chatbot Palette */
:root {
  --cp-bg: #0f0f0f;
  --cp-dark-green: #0b2611;
  --cp-deep-green: #143b1b;
  --cp-neon-green: #00ff66;
  --cp-accent-green: #33ff88;
  --cp-dark-purple: #1b001f;
  --cp-deep-purple: #2e003e;
  --cp-neon-purple: #cc00ff;
  --cp-text: #e0e0e0;
  --cp-accent-yellow: #ffd500;
}

.drq-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(.7,0,.3,1);
}

.drq-toggle {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--cp-neon-green), var(--cp-neon-purple));
  box-shadow:
    0 0 12px var(--cp-neon-green),
    0 0 24px var(--cp-neon-purple);
  color: var(--cp-text);
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: 200% 200%;
  animation: neonPulse var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

.drq-toggle:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 20px var(--cp-accent-green),
    0 0 40px var(--cp-accent-purple);
}

.drq-window {
  display: none;
  flex-direction: column;
  width: 320px;
  max-height: 420px;
  background: var(--cp-bg);
  color: var(--cp-text);
  border: 1px solid var(--cp-deep-purple);
  box-shadow:
    0 0 20px var(--cp-neon-purple),
    0 0 30px var(--cp-neon-green);
  border-radius: 8px;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
}

.drq-window.open {
  display: flex;
}

.drq-header {
  background: var(--cp-deep-purple);
  color: var(--cp-text);
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  border-bottom: 2px solid var(--cp-accent-green);
}

.drq-body {
  flex: 1;
  padding: 0.75rem;
  overflow-y: auto;
  font-size: 0.9rem;
}

.drq-body .msg {
  margin-bottom: 0.5rem;
  position: relative;
}

.drq-body .user {
  text-align: right;
  color: var(--cp-neon-purple);
}

.drq-body .bot {
  text-align: left;
  color: var(--cp-neon-green);
}

#drq-form {
  display: flex;
  border-top: 1px solid var(--cp-dark-purple);
}

/* Pulsing gradient on toggle */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--brand), 0 0 8px var(--accent);
    border-color: var(--brand);
  }
  50% {
    box-shadow: 0 0 32px var(--accent), 0 0 24px var(--brand);
    border-color: var(--accent);
  }
}

/* Glitch effect for messages */
@keyframes glitch {
  0% {
    clip: rect(10px, 9999px, 80px, 0);
    transform: translate(0);
  }
  20% {
    clip: rect(60px, 9999px, 90px, 0);
    transform: translate(-2px, -2px);
  }
  40% {
    clip: rect(30px, 9999px, 50px, 0);
    transform: translate(2px, 2px);
  }
  60% {
    clip: rect(50px, 9999px, 70px, 0);
    transform: translate(-1px, 1px);
  }
  80% {
    clip: rect(20px, 9999px, 40px, 0);
    transform: translate(1px, -1px);
  }
  100% {
    clip: rect(10px, 9999px, 80px, 0);
    transform: translate(0);
  }
}

.drq-body .bot.glitch,
.drq-body .user.glitch {
  animation: glitch 1s infinite;
}

@media (max-width: 700px) {
  body {
    font-size: 1.08rem;
    line-height: 1.7;
    padding: 0;
  }
  .section,
  .section.alt,
  .footer-inner,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .section-head h2,
  .section-head p {
    margin-bottom: 18px;
  }
  .card,
  .form {
    padding: 18px 14px;
    margin-bottom: 22px;
    border-radius: 14px;
  }
  .projects-grid,
  .reviews-grid {
    gap: 22px;
  }
  .about-grid {
    flex-direction: column;
    gap: 0;
  }
  .about-photo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 22px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-photo img,
  .profile-pic {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .tabs {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    justify-content: flex-start;
  }
  .tab {
    padding: 12px 18px;
    font-size: 1rem;
    margin-bottom: 6px;
    border-radius: 8px;
  }
  .tab-panels {
    margin-bottom: 22px;
  }
  .skill-list {
    gap: 18px;
    margin-top: 18px;
  }
  .skill-list li {
    margin-bottom: 12px;
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }
  .radials {
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .radial {
    --size: 60px;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  .radial-label {
    margin-top: 8px;
    font-size: 1rem;
    text-align: center;
  }
  .hero-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
  .hero-cta {
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
  }
  .btn.ghost {
    padding: 12px 0;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
  .footer-inner {
    gap: 18px;
    padding: 24px 8px;
  }
  .legal {
    font-size: 0.95rem;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
  }
}

/* --- BUTTONS --- */
.tab,
.filter-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.tab:hover,
.tab:focus,
.tab.active,
.filter-btn:hover,
.filter-btn:focus,
.filter-btn.active {
  background: var(--btn-gradient);
  color: #18172c;
  box-shadow: var(--btn-shadow);
  animation: btnShake var(--pulse-speed) cubic-bezier(.7,0,.3,1) infinite;
}

/* --- SLOWER SHAKE ANIMATION --- */
@keyframes btnShake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  10% { transform: translateX(-2px) rotate(-2deg); }
  20% { transform: translateX(2px) rotate(2deg); }
  30% { transform: translateX(-2px) rotate(-2deg); }
  40% { transform: translateX(2px) rotate(2deg); }
  50% { transform: translateX(0) rotate(0deg); }
}
