/* ===== Updated site styles (use to replace your current CSS) ===== */

/* Reset & base */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  background: rgb(16, 16, 16);
  overflow-x: hidden;
  color: #111;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Inter';
  letter-spacing: 1px;
}

/* Container helper */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;             /* fills most of viewport */
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  margin: 2vh auto 3vh;
  background-image: url("maps/gojo_upscaled_4k.png"); /* replace path if needed */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Bottom fade */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 16, 16, 0) 60%,
    rgba(16, 16, 16, 0.6) 85%,
    rgba(16, 16, 16, 1) 100%
  );
  pointer-events: none;
}

/* subtle overlay so text stays readable on any image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

/* content wrapper sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  width: min(1100px, 92%);
  padding: clamp(28px, 6vh, 64px);
  color: rgb(16, 16, 16);
}

/* headline */
.intro-text {
  margin: 0;
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: clamp(32px, 7vw, 72px);
  letter-spacing: 1px;
  color: #fff;
  line-height: 0.98;
}

/* underline */
.text-underline {
  display: flex;
  width: 72px;
  height: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-top: 12px;
  vertical-align: bottom;
}

/* subtitle badge */
.description-text {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: clamp(12px, 2.4vw, 18px);
  box-shadow: 0px 2px 8px rgba(255, 255, 255, 0.6)
}

/* buttons */
.info-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* shared button style */
.scroll-button {
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  letter-spacing: 0.6px;
  transition: transform .14s ease, box-shadow .14s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* primary / secondary */
.work-scroll-button {
  background: rgba(255,194,103,1);
  color: #0a0a0a;
  min-width: 220px;
  font-size: clamp(14px, 2.4vw, 20px);
  font-family: 'Poppins',
}

.contact-scroll-button {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.12);
  min-width: 180px;
  font-size: clamp(13px, 2.2vw, 18px);
  font-family: 'Poppins',
}

.work-scroll-button:hover,
.contact-scroll-button:hover {
  background-color: #465AA0;
  transform: scale(1.03);
}

/* Buttons inside header */
.info-buttons { width: 100%; display:flex; gap:12px; margin-top:12px; flex-wrap:wrap; }
.scroll-button {
  background-color: rgb(255, 255, 255);
  color: #000;
  font-weight: 700;
  font-size: clamp(12px, 2.4vw, 20px);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 8px rgba(255, 255, 255, 0.6)
}

#section-games {
  padding: 80px 60px;
  background: #101010;
  color: #fff;
}

#section-testimonials {
  position: relative;
  padding: 100px 0;
  background-image: url("icons/shapes.png"); /* your blue abstract image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  
}

#section-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(16, 16, 16);
  opacity: 0.95;
  z-index: 0;

  animation: bgPulse 6s ease-in-out infinite;
  will-change: opacity;
}


@keyframes bgPulse {
  0% {
    opacity: 0.95;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.95;
  }
}



#section-testimonials > * {
  position: relative;
  z-index: 1;
}

.games-header {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #00d2ff;
}

.stat-label {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.games-track {
  display: flex;
  gap: 30px;
  overflow-x: hidden;
  padding-bottom: 20px;
}

.game-card {
  min-width: 420px;
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
}

.game-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-info {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.game-title {
  font-size: 15px;
  font-weight: 600;
}

.game-meta {
  font-size: 13px;
  opacity: 0.8;
}

.game-meta .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 6px;
}

.games-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}


/*background: linear-gradient(180deg, #fbb03b 0%, #f9a825 100%);
/* === About section layout fixes === */
.about-me { width: 100%; background: linear-gradient(180deg, #101010 0%, #101010 100%);; padding: 36px 0; box-sizing: border-box; align-content: center;}
.what-i-do { width: 100%;  display:flex; gap: 18px; flex-wrap:wrap; justify-content: center; align-items: center; margin-top: 30px;}


.section-text-side { font-family: 'Poppins', 'Montserrat'; font-size: 2rem; font-weight: 700; margin-left: 15px; margin: auto; text-align: center; color: white;}
.about-me-depth-text { font-family: 'Inter'; font-size: 1.6rem; margin-left: 15px; font-weight: 100; max-width: 900px; margin: auto; text-align: center; color: white;}
.fun-facts-text { font-family: 'Inter'; text-align: center; color: white; margin-top: 80px;}

/* Process block: make the images small and consistent and text beside them */
.process {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 360px;

  min-height: 210px;
  max-height: 210px;

  background: linear-gradient(145deg, #4b4b4b, #0f0f0f);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.2s ease;
}

.process:hover {
  transform: translateY(-5px);
}

.process-pic {
  width: 135px;
  height: 135px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 96px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  color: #00d2ff;
}
.process-info-text { display:flex; flex-direction:column; align-items: flex-start; gap:8px; }
.process-headline { font-family: Arial, Helvetica, sans-serif; color: #00d2ff; font-weight:800; margin:0; font-size: clamp(16px, 2.2vw, 20px); }
.process-text { margin:0; font-size: 0.9rem; color: #ffffff; font-weight: 400; }

/* Fun facts: keep as is but ensure badge sizing is responsive */
.fun-facts { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; width: 90%; margin: 15px auto; }
.programs-used { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; width: 90%; margin: 15px auto; }
.fun-fact {
  width: clamp(80px, 16vw, 140px);
  height: clamp(80px, 16vw, 140px);
  border-radius:50%;
  background: linear-gradient(145deg, #4b4b4b, #0f0f0f);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.60);
}

.program-used {
  width: clamp(80px, 16vw, 90px);
  height: clamp(80px, 16vw, 90px);
  border-radius:50%;
  background: linear-gradient(145deg, #4b4b4b, #0f0f0f);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.60);
}

.blender-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display:block;

  margin-top: 5px;
  color: #F5792A;
}

.studio-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display:block;

  margin-top: 5px;
  color: #00A2FF;
}

.lua-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display:block;

  margin-top: 5px;
  color: #000080;
}

.js-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display:block;

  margin-top: 5px;
  color: #EFD81D;
}



/* badge number/label */
.badge-number { font-weight:800; font-size: clamp(14px, 4.5vw, 28px); color: #00d2ff;; line-height:1; text-align:center; }
.badge-label { font-size: clamp(8px, 1.6vw, 12px); color:#fff; font-weight:700; text-align:center; margin-top:6px; }

/* === Portfolio gallery: grid 2 rows x 4 columns on wide screens === */
.portfolio { width: 100%; background-color: #101010; padding: 36px 0; box-sizing: border-box; }
.section-section { width: 90%; max-width: 1100px; margin: 0 auto 12px; display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
.examples-button { border: 2px solid #ffffff; color: #ffffff; background: transparent; border-radius: 8px; padding: 10px 20px; transition: 0.2s;}
.examples-button:hover { border: 2px solid #5bc0ff; background: #5bc0ff; color: rgb(0, 0, 0); cursor: pointer;}

/* Portfolio grid: use CSS Grid for exact 4 columns on desktop, 2 columns on tablet, 1 on mobile */
.portfolio-examples {
  width: 75%;
  max-width: 1700px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
  
  align-content: center;
  box-sizing: border-box;
}
.map-example-pic {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 2px black;
  display:block;
}

.map-example-pic:hover {
  transform: scale(1.01); opacity: 0.95;
}

/* tablet -> 2 cols, mobile -> 1 col */
@media (max-width: 1000px) {
  .portfolio-examples { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .portfolio-examples { grid-template-columns: 1fr; }
  .section-section { justify-content:center; gap:8px; }
}

/* === Testimonials: consistent card sizes and grid layout === */
.testimonials {text-align: center; background-color: none; padding: 36px 0; box-sizing: border-box; }
.testimonial-examples {
  width: 95%;
  max-width: 1200px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: start;
  justify-items: center;
}
.testimonial-background {
  width: 100%;
  max-width: 220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  background: linear-gradient(145deg, #4b4b4b, #0f0f0f);
  border-radius: 15px;

  margin-top: auto;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4)
}

.testimonial-background:hover {
  transform: translateY(-5px);
}

.testimonial-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display:block;
  box-shadow: 0 3px 8px rgba(255, 255, 255, 0.4);
  background-color: rgba(24,24,24,0.95);

  margin-top: 5px;
}

.testimonial-headline { font-family: 'Inter'; font-size: 16px; text-align:center; color: rgb(255, 255, 255); }

.contact-headline { font-family: 'Inter'; font-size: 16px; text-align:center; color: rgb(255, 255, 255); }

/* === Contact area adjustments === */
.contact-me { width:100%; background-color:#101010; padding: 36px 0; box-sizing: border-box; text-align: center; }
.contact-ways {
  width: 95%;
  max-width: 1000px;
  margin: 15px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 5px;
  align-items:center;
  justify-items:center;

  margin-top: 70px;
}
.contact-background {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  width: 100%;
  max-width: 200px;
  padding: 8px;
  box-sizing: border-box;
}

.contact-background:hover {
  transform: translateY(-5px);
}

.contact-background .testimonial-pic {
  width: 150px;
  height: 150px;

  box-shadow: 0 3px 8px rgba(255, 255, 255, 0.4)
}

:root{
  --timeline-width:64px;
  --dot-size:48px;
  --gap:20px;
  --btn-active:#ffd08a;
  --btn-bg:#000;
  --btn-icon:#fff;
}

/* Base: vertical right bar for desktop / large screens */
.timeline {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: var(--timeline-width);
  z-index: 60;
  pointer-events: auto;
}
.timeline ul {
  list-style: none;
  margin: 0;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
  position: relative;
  max-height: calc(100vh - 40px);
  overflow: visible;
  -webkit-overflow-scrolling: touch;
}
.timeline ul::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(#111,#222);
  z-index: 0;
}

/* Button */
.timeline-btn {
  all: unset;
  cursor: pointer;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--btn-bg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  border: 3px solid rgba(255,255,255,0.03);
}
.timeline-btn .icon { width: 20px; height: 20px; fill: var(--btn-icon); }
.timeline-btn.active { background: var(--btn-active); }

/* focus */
.timeline-btn:focus { transform: translateY(-4px) scale(1.02); outline: none; }

/* ===== Mobile portrait: bottom compact bar (show instead of hiding) ===== */
@media (max-width: 720px) and (orientation: portrait) {
  :root { --dot-size:44px; --gap:12px; --timeline-width:100%; }

  .timeline {
    right: 12px;
    left: 12px;
    top: auto;
    bottom: 12px;
    transform: none;
    width: calc(100% - 24px);
    height: calc(var(--dot-size) + 28px);
    border-radius: 999px;
    background: rgba(255,255,255,0.02); /* subtle backdrop if wanted */
    display: block;
    pointer-events: auto;
  }

  .timeline ul {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    gap: 12px;
    max-width: 100%;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
  }

  .timeline ul::before { display: none; }

  .timeline-btn {
    width: var(--dot-size);
    height: var(--dot-size);
    border-width: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
    flex: 0 0 auto;
  }

  /* avoid clipping: let the horizontal list scroll if there are many buttons */
  .timeline ul::-webkit-scrollbar { height: 8px; }
  .timeline ul::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 8px; }
}

.image-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-overlay-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  cursor: default;
}


/* ===== Mobile landscape / small landscape screens: vertical but shrink dots ===== */
@media (max-width: 720px) and (orientation: landscape) {
  :root { --dot-size:40px; --gap:10px; --timeline-width:56px; }

  .timeline {
    right: 8px;
    width: var(--timeline-width);
    top: 50%;
    transform: translateY(-50%);
  }
  .timeline ul { gap: var(--gap); padding: 8px 6px; max-height: calc(100vh - 24px); }
  .timeline-btn { width: var(--dot-size); height: var(--dot-size); border-width:2px; }
  .timeline ul::before { top: 6px; bottom: 6px; }
}

/* Ensure icons scale down gracefully */
.timeline-btn .icon { width: 60%; height: 60%; }

/* Safety: if user rotates quickly, small transitions keep it tidy */
@media (prefers-reduced-motion: reduce) {
  .timeline-btn { transition: none; }
}

/* Accessibility focus */
.scroll-button:focus, .examples-button:focus, .timeline-btn:focus {
  outline: 3px solid rgba(255,194,103,0.6);
  outline-offset: 3px;
}

/* Small tweaks for very small screens */
@media (max-width: 420px) {
  
  .intro-text { font-size: clamp(18px, 6.5vw, 30px); }
  .process-pic { width: 80px; height: 80px; }
  .testimonial-pic { width: 110px; height: 110px; }
  .contact-background .testimonial-pic { width: 80px; height: 80px; }
}

@media (max-width: 720px) {
  .main-header {
    min-height: 56vh; /* smaller on phones so users don't have to scroll too far */
    padding: 28px 5%;
    border-radius: 12px;
    margin: 3vh 8px;
  }

 

  /* make the buttons smaller/flexible on mobile */
  .scroll-button {
    min-width: 120px;
    width: auto;
    padding: 10px 14px;
    font-size: 15px;
  }

  .header-text-info { flex: 1 1 100%; min-width: 0; }
}

@media (max-width: 768px) {
  .work-scroll-button,
  .about-scroll-button {
    width: 45%;
    font-size: 1.5rem;
    border-radius: 40px;
    margin: 0.5rem auto;
    display: block;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero { min-height: 64vh; border-radius: 10px; }
  .hero-content { align-items: center; text-align: center; padding: 28px 18px; }

  .intro-text { font-size: clamp(22px, 9vw, 40px); }

  .info-buttons { width: 100%; flex-direction: column; gap: 12px; margin-top: 16px; }
  .work-scroll-button, .contact-scroll-button {
    width: 100%;
    min-width: unset;
    padding: 14px 18px;
    font-size: 1.05rem;
  }
  .description-text { display: block; padding: 8px 12px; }
}

/* smaller screens landscape */
@media (max-height: 420px) and (orientation: landscape) {
  .hero { min-height: 50vh; }
  .hero-content { padding: 18px; }
  .intro-text { font-size: clamp(20px, 5.5vw, 36px); }
}

/* about me stuff */

.section-about {
  padding: 120px 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: white;
}

.about-header p {
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

/* Services */
.about-services {
  width: 100%;
  display: flex;
  gap: 18px;
  margin-bottom: 100px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.service {
  padding: 32px;
  background: #0f0f0f;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;

  min-width: 330px;
  max-width: 330px;

  min-height: 210px;
  max-height: 210px;
}

.service:hover {
  transform: translateY(-6px);
  border-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 10px 40px rgba(0, 210, 255, 0.25);
}


.service h3 {
  color: #00d2ff;
  margin-bottom: 10px;
}

.service p {
  opacity: 0.8;
  line-height: 1.5;
  color: white
}

/* Experience */
.about-experience {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 80px;
  text-align: center;
}

.exp-item strong {
  display: block;
  font-size: 24px;
  color: #00d2ff;
  text-shadow:
    0 0 25px rgba(0, 210, 255, 0.35),
    0 0 35px rgba(0, 210, 255, 0.2);
}


.exp-item span {
  font-size: 14px;
  opacity: 0.7;
  color: white;
}

/* Tools */
.about-tools {
  text-align: center;
}

.tools-label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  color: white
}

.tools-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  
  border-radius: 10px;
}

.tools-icons img {
  width: 36px;
  color: white
}

.section-testimonials {
  padding: 120px 0;
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 80px;
  color: white;
}

/* Split layout */
.testimonials-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr; /* HARD SPLIT */
  align-items: start;
  gap: 0;
  height: 100%;
  width: 100%;
}

/* Divider */
.split-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  height: 100%;
}

/* Columns */
.testimonial-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.column-title {
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  color: #00d2ff;
}

/* Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 120px);
  justify-content: center;
  gap: 10px;
  width: 100%;
}


.testimonial-card {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

.testimonial-card span {
  font-size: 14px;
  opacity: 0.85;
  color:white
}
