/* ============================================
   PORTFOLIO — Viral Template Style
   Edit colors, fonts, and sections freely!
   ============================================ */

/* ---------- CSS VARIABLES (Edit these!) ---------- */
:root {
  --bg:          #0c0c0c;
  --bg-2:        #111111;
  --bg-card:     #161616;
  --border:      #252525;
  --text:        #f0f0f0;
  --text-muted:  #888888;
  --accent:      #1077ca;       /* ← Main accent color */
  --accent-2:    #ffc400;       /* ← Secondary accent (lime) */
  --accent-3:    #da1446;       /* ← Tertiary accent (purple) */
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --max-w:       1200px;
  --radius:      16px;
  --nav-h:       72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }
input, textarea { font-family: var(--font-body); }

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  width: 36px; height: 36px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, border-color 0.2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
body:hover .cursor { opacity: 1; }

/* ---------- SCROLL ANIMATION ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  display: grid;
  grid-template-columns: auto 1fr auto; /* 🔥 key fix */
  align-items: center;

  padding: 0 48px;
  height: var(--nav-h);

  background: transparent;
  transition: background 0.3s, border-bottom 0.3s;
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex: 0 0 auto;
}

.nav-logo .dot {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex: 0 0 auto;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #0d1be0;
  transform: scale(1.04);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg-card) 55%, transparent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
  background: color-mix(in srgb, var(--bg-card) 72%, transparent);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-icon {
  font-size: 17px;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 10px;
  flex: 0 0 auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.theme-icon {
  font-size: 18px;
  line-height: 1;
}

.service-item:hover,
.contact-method:hover {
  background: color-mix(in srgb, var(--bg-card) 85%, var(--text) 5%);
}


/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 40px; font-weight: 800;
  padding: 16px 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ---------- SECTION COMMON ---------- */
.section { padding: 120px 48px; max-width: var(--max-w); margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 100px;
  padding: 6px 16px; margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-header { margin-bottom: 0; }
.centered { text-align: center; display: block; }
.section-title.centered { text-align: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  z-index: 0;

  min-height: 100vh;
   width: 100%;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ===== HERO BACKGROUND IMAGE ===== */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./images/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  filter: blur(1px) contrast(1.04);
  z-index: 0;
  pointer-events: none;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero::after {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.8) 60%,
    rgba(0,0,0,0.95) 100%
  ),
  linear-gradient(
    90deg,
    rgba(0,0,0,0.6) 0%,
    transparent 20%,
    transparent 80%,
    rgba(0,0,0,0.6) 100%
  );
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--accent-2); border: 1px solid var(--accent-2);
  border-radius: 100px; padding: 8px 18px;
  margin-bottom: 36px; width: fit-content;
  animation: pulse-border 2s ease infinite;
}
@keyframes pulse-border {
  0%, 100% { 
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-2) 40%, transparent); 
  }
  50% { 
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent-2) 0%, transparent); 
  }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 32px;
}
.hero-headline .line { display: block; }
.hero-headline .accent-line {
  color: var(--accent);
  display: flex; align-items: center; gap: 16px;
}
.star-icon {
  font-style: normal;
  font-size: 0.5em;
  color: var(--accent-2);
  animation: spin 8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-sub {
  max-width: 560px;
  font-size: 18px; color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  border: none;
}
.btn:hover { transform: scale(1.04); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #1077ca; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }
.hero-stats {
  display: flex; gap: 40px; align-items: center;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 48px;
  font-size: 12px; color: var(--text-muted);
  writing-mode: vertical-rl; letter-spacing: 0.1em;
  animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---------- TICKER ---------- */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  background: var(--accent);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker {
  display: flex;
  width: max-content;
  animation: tickerLoop 28s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  padding-right: 28px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.ticker-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.sep {
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

@keyframes tickerLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- WORK ---------- */
#work.section { padding-top: 140px; }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: none;
}
.project-card:hover {
  border-color: var(--card-accent, var(--accent));
  transform: translateY(-4px);
}
.project-large { grid-column: span 2; }

.project-img {
  aspect-ratio: 16/9;
  position: relative; overflow: hidden;
}
.project-large .project-img { aspect-ratio: 21/9; }
.project-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  /* Remove this div and use <img> instead */
}
.proj-num {
  font-family: var(--font-head);
  font-size: 80px; font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -3px;
}
.project-info { padding: 28px 32px 32px; }
.project-meta { display: flex; gap: 8px; margin-bottom: 12px; }
.project-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 4px 12px;
}
.project-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800; letter-spacing: -0.5px;
  line-height: 1.15; margin-bottom: 20px;
}
.project-link {
  font-size: 14px; font-weight: 600; color: var(--accent);
  transition: letter-spacing 0.2s;
}
.project-link:hover { letter-spacing: 0.05em; }

/* ---------- ABOUT ---------- */
#about { background: var(--bg-2); border-radius: 28px; max-width: 100%; }
#about .about-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-left .section-title { margin-bottom: 24px; }
.about-body {
  color: var(--text-muted); font-size: 16px; line-height: 1.8;
  margin-bottom: 16px;
}
.about-body strong { color: var(--text); }
.about-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 36px; }
.social-link {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  transition: color 0.2s;
}
.social-link:hover { color: var(--text); }
.about-img-wrap { position: relative; margin-bottom: 24px; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  /* Remove and replace with <img> tag */
}
.about-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
}
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 20px;
  display: flex; flex-direction: column; gap: 2px;
  backdrop-filter: blur(10px);
}
.badge-text { font-size: 11px; color: var(--text-muted); }
.badge-strong { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--accent-2); }
.about-skills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.skill-pill {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 18px;
  transition: border-color 0.2s, color 0.2s;
}
.skill-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- SERVICES ---------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  background: var(--bg-card);
  padding: 48px 44px;
  border: 1px solid var(--border);
  transition: background 0.3s;
}
.service-item:hover { background: #1c1c1c; }
.service-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.service-num {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.08em;
}
.service-icon {
  font-size: 28px; color: var(--accent);
  line-height: 1;
}
.service-name {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tags span {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 4px 12px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials.section { max-width: 100%; padding: 120px 48px; background: var(--bg); }
.testimonials .section-tag.centered { margin: 0 auto 16px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--text);
}

.testimonial-highlight {
  background: var(--accent);
  border-color: var(--accent);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Highlight card text in dark mode */
[data-theme="dark"] .testimonial-highlight .testimonial-text,
[data-theme="dark"] .testimonial-highlight .testimonial-author strong {
  color: #fff;
}

[data-theme="dark"] .testimonial-highlight .testimonial-author span {
  color: rgba(255,255,255,0.75);
}

/* Highlight card text in light mode */
[data-theme="light"] .testimonial-highlight .testimonial-text,
[data-theme="light"] .testimonial-highlight .testimonial-author strong {
  color: #111;
}

[data-theme="light"] .testimonial-highlight .testimonial-author span {
  color: rgba(0,0,0,0.65);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }
.testimonial-highlight .testimonial-author span { color: rgba(255,255,255,0.6); }

/* ---------- CONTACT ---------- */
#contact.section { max-width: 800px; }
.contact-inner { max-width: 100%; }
.contact-headline {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1.05; margin-bottom: 20px;
}
.contact-headline em { color: var(--accent); font-style: italic; }
.contact-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 48px; }
.contact-methods {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 56px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.contact-method {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.contact-method:last-child { border-bottom: none; }
.contact-method:hover { background: #1c1c1c; }
.cm-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.cm-value { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.form-note { font-size: 14px; color: var(--accent-2); text-align: center; min-height: 20px; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
  max-width: var(--max-w); margin: 0 auto;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 48px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; line-height: 1.7; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 24px;
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 10px;
  }

  .nav-cta {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 80px 24px;
  }

  .hero {
    padding: calc(var(--nav-h) + 40px) 24px 80px;
  }

  .hero-headline {
    font-size: clamp(48px, 12vw, 80px);
    letter-spacing: -2px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-column: span 1;
  }

  #about .about-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(40px, 13vw, 64px); letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer { padding: 48px 24px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .service-item { padding: 32px 28px; }
  .testimonials.section { padding: 80px 24px; }
}

[data-theme="light"] {
  --bg:          #f7f7f5;
  --bg-2:        #efeee9;
  --bg-card:     #ffffff;
  --border:      #d9d9d4;
  --text:        #352e2e;
  --text-muted:  #5f5f5f;
  --accent:      #be6822;
  --accent-2:    #a80000;
  --accent-3:    #7c4dcb;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(1.2);
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.experience-list {
  max-width: 900px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.experience-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.experience-year {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.experience-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.experience-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .experience-item {
    grid-template-columns: 1fr;
  }
/*-------------tesitonimal colors-------------*/

}
.card-blue {
  background: #b60707;
  border-color: #e0ce3000;
}

.card-green {
  background: hsl(180, 76%, 29%);
  border-color: #000000;
}

.card-purple {
  background: #8d7d7de5;
  border-color: #1e0f2ca6;
}
[data-theme="dark"] .testimonial-card[style] .testimonial-text,
[data-theme="dark"] .testimonial-card[style] .testimonial-author strong {
  color: rgba(255,255,255,0.92);
}

[data-theme="dark"] .testimonial-card[style] .testimonial-author span {
  color: rgba(255,255,255,0.75);
}

[data-theme="light"] .testimonial-card[style] .testimonial-text,
[data-theme="light"] .testimonial-card[style] .testimonial-author strong {
  color: #111;
}

[data-theme="light"] .testimonial-card[style] .testimonial-author span {
  color: rgba(0,0,0,0.65);
}
.current-role {
  border: 1px solid var(--accent);
  box-shadow: 
    0 0 10px color-mix(in srgb, var(--accent) 40%, transparent),
    0 0 25px color-mix(in srgb, var(--accent) 25%, transparent);
}
.current-badge {
  --badge-color: var(--accent);

  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;

  background: color-mix(in srgb, var(--badge-color) 15%, transparent);
  color: var(--badge-color);
  border: 1px solid var(--badge-color);

  margin-bottom: 10px;

  /* ✨ Glow animation */
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    box-shadow: 
      0 0 0 0 color-mix(in srgb, var(--badge-color) 40%, transparent);
  }
  70% {
    box-shadow: 
      0 0 0 10px color-mix(in srgb, var(--badge-color) 0%, transparent);
  }
  100% {
    box-shadow: 
      0 0 0 0 color-mix(in srgb, var(--badge-color) 0%, transparent);
  }
}

[data-theme="light"] .hero::after {
  background: linear-gradient(
    180deg,
    rgba(40, 30, 20, 0.35),
    rgba(40, 30, 20, 0.5),
    rgba(40, 30, 20, 0.65)
  );
}

[data-theme="light"] .hero::before {
  opacity: 0.75;
  filter: blur(2px) contrast(1.1) brightness(0.85);
}
[data-theme="light"] {
  --accent-2: #c5133a; /* or your red/orange tone */
}

[data-theme="light"] .nav.scrolled {
  background: color-mix(in srgb, rgba(255, 255, 255, 0.658) 80%, var(--accent) 5%);
  backdrop-filter: blur(16px);
}