/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0e1a;
  --bg-card: #0f1422;
  --primary: #9b6dff;
  --accent: #0ea5e9;
  --foreground: #f0f4ff;
  --muted: #64748b;
  --border: #1e2740;
  --font: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(155,109,255,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(155,109,255,0.5); }

/* ===========================
   UTILITIES
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: rgba(155,109,255,0.02); }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: xx-large;
}

.glass-card {
  background: rgba(15,20,34,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(30,39,64,0.5);
  border-radius: var(--radius);
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(155,109,255,0.3); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--foreground);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: rgba(155,109,255,0.5); background: rgba(155,109,255,0.05); }
.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(155,109,255,0.3);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: rgba(155,109,255,0.08);
  transition: all 0.3s;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-full { width: 100%; justify-content: center; border-radius: 999px; padding: 16px; }

/* ===========================
   SECTION HEADERS
=========================== */
.section-header { margin-bottom: 64px; }
.section-tag { font-family: var(--mono); font-size: 13px; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 18px; color: var(--muted); max-width: 600px; }
.text-center .section-desc { margin: 0 auto; }
.subsection-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; }

/* ===========================ANIMATIONS
=========================== */
.fade-in { animation: fadeIn 0.8s ease forwards; }
.fade-in-delay { animation: fadeIn 0.8s 0.3s ease forwards; opacity: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.slide-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-up.visible { opacity: 1; transform: translateY(0); }

.float-up { animation: floatUp 3s ease-in-out infinite; }
.float-down { animation: floatDown 3.5s ease-in-out infinite; }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.bounce { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s;
}
.navbar.scrolled {
  background: rgba(15,20,34,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30,39,64,0.5);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.5px;
  color: var(--foreground);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover { color: var(--foreground); }
.nav-link:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
}
.hamburger { position: relative; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after { transform: translateY(7px); }

/* Mobile nav */
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 16px; right: 16px;
  background: rgba(15,20,34,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  gap: 16px;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,26,0.6) 0%, rgba(10,14,26,0.85) 60%, var(--bg) 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 400px; height: 400px; top: 20%; left: 20%; background: rgba(155,109,255,0.08); }
.hero-orb-2 { width: 300px; height: 300px; bottom: 20%; right: 20%; background: rgba(14,165,233,0.08); animation-delay: 2s; }
@keyframes pulse { from { opacity: 0.5; } to { opacity: 1; } }

.hero-content {
  position: relative;
padding-top: 96px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(155,109,255,0.1);
  border: 1px solid rgba(155,109,255,0.2);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite alternate;
}
.hero-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-social { display: flex; align-items: center; gap: 16px; }
.social-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
.social-divider { width: 32px; height: 1px; background: var(--border); }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s;
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover { color: var(--foreground); border-color: rgba(155,109,255,0.5); }

/* Hero photo */
.hero-photo { display: flex; justify-content: center; }
.hero-photo-frame {
  width: 320px; height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(155,109,255,0.2);
  box-shadow: 0 0 40px rgba(155,109,255,0.12), 0 0 80px rgba(155,109,255,0.04);
  position: relative;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo { position: relative; }
.hero-badge {
  position: absolute;
  background: rgba(15,20,34,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(30,39,64,0.7);
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 120px;
}
.hero-badge-top { top: -10px; right: -20px; box-shadow: 0 0 20px rgba(155,109,255,0.1); }
.hero-badge-bottom { bottom: -10px; left: -20px; box-shadow: 0 0 20px rgba(14,165,233,0.1); }
.badge-label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.badge-value { display: block; font-size: 18px; font-weight: 800; color: var(--foreground); }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 20px;
}

/* ===========================
   ABOUT
=========================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.highlight-card {
  padding: 24px;
  transition: all 0.5s;
}
.highlight-card:hover { border-color: rgba(155,109,255,0.3); }
.highlight-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(155,109,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.highlight-card:hover .highlight-icon { background: rgba(155,109,255,0.2); }
.highlight-icon svg { width: 20px; height: 20px; stroke: var(--primary); }
.highlight-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.highlight-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.skills-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}
.skill-item { margin-bottom: 20px; }
.skill-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; font-weight: 500; }
.skill-pct { font-family: var(--mono); color: var(--primary); }
.skill-track { height: 6px; border-radius: 999px; background: rgba(30,39,64,0.8); overflow: hidden; }
.skill-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0;
  transition: width 1.2s ease;
}

.tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-tag {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(30,39,64,0.8);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: default;
}
.tech-tag:hover { border-color: rgba(155,109,255,0.3); background: rgba(155,109,255,0.05); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(30,39,64,0.4);
}
.stat-value { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--muted); }

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,109,255,0.04), rgba(14,165,233,0.04));
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: var(--radius);
}
.service-card:hover { border-color: rgba(155,109,255,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(155,109,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(155,109,255,0.2); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.service-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; position: relative; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; position: relative; }

.card-tags { display: flex; flex-wrap: wrap; gap: 8px; position: relative; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(30,39,64,0.8);
  color: var(--muted);
}

/* ===========================
   PORTFOLIO
=========================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: rgba(30,39,64,0.8);
  color: var(--muted);
  transition: all 0.3s;
}
.filter-btn:hover { color: var(--foreground); }
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(155,109,255,0.3);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  overflow: hidden;
  transition: all 0.5s;
}
.project-card:hover { border-color: rgba(155,109,255,0.3); }
.project-card.hidden { display: none; }
.project-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.project-card:hover .project-img-wrap img { transform: scale(1.05); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  gap: 12px;
opacity: 0;
  transition: opacity 0.5s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s;
}
.project-btn:hover { transform: scale(1.1); }
.project-btn-ghost { background: rgba(30,39,64,0.9); }
.project-body { padding: 24px; }
.project-cat { font-family: var(--mono); font-size: 11px; color: var(--primary); margin-bottom: 8px; display: block; }
.project-body h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.project-body p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

/* ===========================
   TESTIMONIALS
=========================== */
/* .testimonial-slider { max-width: 800px; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slide {
  padding: 48px;
  text-align: center;
  display: none;
}
.testimonial-slide.active { display: block; animation: fadeIn 0.5s ease; }
.quote-icon { font-size: 64px; color: rgba(155,109,255,0.15); line-height: 1; margin-bottom: 24px; }
.testimonial-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
} */

/* With this: */
.testimonial-track {
  position: relative;
  min-height: 300px; /* Adjust based on your content */
}
.testimonial-slide {
  padding: 48px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.testimonial-slide.active { 
  opacity: 1;
  visibility: visible;
  position: relative;
}

.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; }
.star { color: var(--primary); font-size: 16px; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(155,109,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.author-name { font-size: 15px; font-weight: 600; }
.author-role { font-size: 13px; color: var(--muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { color: var(--foreground); border-color: rgba(155,109,255,0.5); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active { width: 32px; background: var(--primary); }
.dot:not(.active) { width: 8px; }

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(155,109,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.contact-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 500; }
.contact-cta {
  padding: 24px;
  background: linear-gradient(135deg, rgba(155,109,255,0.1), rgba(14,165,233,0.1));
  border-color: rgba(155,109,255,0.2);
}
.contact-cta h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.contact-cta p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

/* Form */
.contact-form { padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(30,39,64,0.5);
  color: var(--foreground);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-success {
  padding: 48px;
  text-align: center;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(155,109,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 24px;
}
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--muted); margin-bottom: 24px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-tagline { font-size: 13px; color: var(--muted); margin-top: 4px; }
.footer-socials { display: flex; gap: 12px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(30,39,64,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--foreground); }
.heart { color: var(--primary); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .skills-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 28px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
/* FORCE TESTIMONIALS TO SHOW */
.testimonial-slide {
  display: block !important;
  margin-bottom: 20px;
  /* border: 2px solid red; */
}

/* Hide non-active ones with a different method */
.testimonial-slide:not(.active) {
  display: none !important;
}