/* CSS Variables for premium theme */
:root {
  --primary: #d4af37; /* Gold */
  --primary-dark: #b7950b;
  --primary-light: rgba(212, 175, 55, 0.1);
  --secondary: #111111;
  --dark: #222222;
  --light: #f8f8f8; /* Off-white */
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --black: #111111;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Premium Preloader Animation */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.preloader-content {
  text-align: center;
  z-index: 2;
}

.preloader-text {
  font-size: 6rem;
  font-weight: 800;
  color: var(--light);
  text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
  letter-spacing: 5px;
  animation: glow 2s ease-in-out infinite alternate,
    zoomIn 1.5s ease-out forwards;
  opacity: 0;
}

.preloader-subtext {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 1s 1s ease-out forwards;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
  }
  to {
    text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary),
      0 0 45px var(--primary);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  background-color: rgba(248, 248, 248, 0.98);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 15px;
  margin-left: 10px;
}

.login-button,
.signup-button {
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
}

.login-button {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--primary);
}

.login-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.signup-button {
  background-color: var(--primary);
  color: var(--black);
  border: 2px solid var(--primary);
}

.signup-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu .bar {
  width: 25px;
  height: 2px;
  background-color: var(--black);
  transition: var(--transition);
}

.mobile-menu.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1000;
  padding: 100px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.mobile-cta {
  margin-top: 30px;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/cafe.webp") no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.primary-button,
.secondary-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.primary-button {
  background-color: var(--primary);
  color: var(--black);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.primary-button:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.secondary-button {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.secondary-button:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  color: var(--white);
  z-index: 2;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

/* Stats Bar Section */
.stats-bar {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 5px;
  color: var(--primary);
  transition: all 1s ease-out;
}

.stat-item p {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 15px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.learn-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.learn-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.learn-more:hover::after {
  width: 100%;
}

/* Internship Program Section */
.internship-program {
  background-color: var(--light);
}

.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.internship-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.internship-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.internship-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.internship-card:hover .internship-icon {
  transform: rotate(10deg) scale(1.2);
}

.internship-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.internship-details i {
  margin-right: 5px;
  color: var(--primary);
}

.apply-button-container {
  margin-top: auto;
  padding-top: 20px;
}

/* Workshop Section */
.workshops {
  background-color: var(--light);
}

.workshop-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.workshop-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.workshop-date {
  background-color: var(--primary);
  color: var(--black);
  padding: 20px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.date-day {
  font-size: 2rem;
  line-height: 1;
}

.date-month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.workshop-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workshop-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.workshop-meta i {
  color: var(--primary);
}

.workshop-info p {
  margin: 15px 0;
  flex: 1;
}

/* Contact/CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--black);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.8);
}

.application-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.application-form input,
.application-form select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.application-form input:focus,
.application-form select:focus {
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.application-form button {
  grid-column: 1 / -1;
  margin-top: 10px;
  border: 2px solid var(--black);
}

.application-form button:hover {
  background-color: var(--black);
  color: var(--primary);
}

/* Footer Section */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-about p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0.7;
}

.footer-contact i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a:hover {
  color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
  }

  .stats-bar .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .services-grid,
  .internship-grid,
  .workshop-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.scale-up {
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* === Mobile Navigation Panel === */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

/* === Navigation Links === */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
}

.mobile-nav-links a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: #d4af37; /* gold hover */
}

/* === CTA Buttons (Sign In / Register) === */
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.login-button,
.signup-button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.login-button {
  background-color: #f0f0f0;
  color: #333;
}

.signup-button {
  background-color: #d4af37;
  color: white;
}

.signup-button:hover {
  background-color: #c49d2f;
}

.login-button:hover {
  background-color: #ddd;
}

/* === Close Button (top right inside panel) === */
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 2px;
  cursor: pointer;
}

.mobile-menu-close img {
  width: 28px;
  height: 28px;
}

/* === Disable scroll on body when menu open === */
.no-scroll {
  overflow: hidden;
}


 /* Common styles for testimonial cards */
  .testimonial-card {
    flex: 1;
    background-color: white;
    border: 1px solid #fbd38d; /* yellow-400 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    transition: box-shadow 0.3s ease-in-out; /* transition-shadow duration-300 */
    padding: 1rem 1.5rem; /* Reduced internal padding */

    /* ----- IMPORTANT FOR MOBILE RESPONSIVENESS & HORIZONTAL MARGINS ----- */
    max-width: 480px; /* Limit the max width of each card */
    width: calc(100% - 2rem); /* Take full width minus 1rem on each side (total 2rem) */
    margin-left: 1rem; /* Add horizontal margin on the left */
    margin-right: 1rem; /* Add horizontal margin on the right */
  }

  /* On medium screens and up, reset horizontal margins for flex gap to work correctly */
  @media (min-width: 768px) { /* md breakpoint in Tailwind */
    .testimonial-card {
      margin-left: 0;
      margin-right: 0;
      width: auto; /* Reset width so flex: 1 can manage it */
    }
  }

  .testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* hover:shadow-xl */
  }

  /* Common styles for testimonial quotes */
  .testimonial-quote {
    font-size: 5rem; /* Reduced from 6rem */
    color: #fbd38d; /* yellow-400 */
    opacity: 0.2;
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  /* Text alignment within the cards should generally be left for readability */
  .testimonial-card p,
  .testimonial-card h4,
  .testimonial-card div:last-child p {
    text-align: left;
  }