/* ===========================
   CSS Variables
   =========================== */

:root {
  --accent: #e63946; /* bold red accent credit php agency */
  --muted: #6b7280;
  --max-width: 1200px;
  --bg-primary: #fff;
  --bg-secondary: #fafafa;
  --text-primary: #111;
  --text-secondary: #6b7280;
  --border-color: #eee;
  --card-bg: #fff;
  --header-bg: #fff;
  --modal-bg: #fff;
}

body.dark-mode {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --text-primary: #e5e5e5;
  --text-secondary: #a0a0a0;
  --border-color: #333;
  --card-bg: #1f1f1f;
  --header-bg: #141414;
  --modal-bg: #1f1f1f;
}

/* ===========================
   Base Styles
   =========================== */

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background 0.3s ease, color 0.3s ease;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

/* ===========================
   Header
   =========================== */

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text-primary);
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-text {
  background: linear-gradient(135deg, var(--accent) 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand-logo {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: rotate(5deg);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  font-weight: 600;
  transition: color 0.2s;
}

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

/* Google Search Form styling */
.main-nav .form-inline {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0;
}

.main-nav .form-control {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e6e7eb;
  border-radius: 8px;
  font-size: 14px;
  width: 180px;
  outline: none;
}

.main-nav .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.main-nav .btn {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.main-nav .btn:hover {
  background: #d32f3f;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 1.3rem;
  position: relative;
}

.dark-mode-toggle:hover {
  background: var(--border-color);
}

.dark-mode-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  right: 0;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode-toggle:hover::after {
  opacity: 1;
}

.dark-mode-toggle .icon-sun {
  display: inline;
}

.dark-mode-toggle .icon-moon {
  display: none;
}

body.dark-mode .dark-mode-toggle .icon-sun {
  display: none;
}

body.dark-mode .dark-mode-toggle .icon-moon {
  display: inline;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  position: relative;
  margin-top: 58px;
}

.hero--large .hero-media-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.9) saturate(0.9);
}

.hero--large .hero-media-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.15) 50%, rgba(240, 147, 251, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72vh;
}

.hero-content {
  z-index: 2;
  color: #fff;
  padding: 6rem 1rem;
  max-width: 820px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.02;
  margin: 0 0 0.7rem;
  font-weight: 800;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
}

.hero-ctas {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-ghost {
  background: rgb(106, 106, 241);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.trusted-logos {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  align-items: center;
}

.trusted-logos img {
  width: 90px;
  opacity: 0.95;
  filter: brightness(2);
}

/* ===========================
   Sections
   =========================== */

.section {
  padding: 4.5rem 0;
  scroll-margin-top: 80px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: var(--card-bg);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card h3 {
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.service-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* ===========================
   Jobs List
   =========================== */

.section--wide {
  background: var(--bg-secondary);
  transition: background 0.3s ease;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.select select {
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-primary);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.job-left h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.muted {
  color: var(--text-secondary);
}

.button.small {
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
}

/* Pagination controls */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.pagination-btn {
  background: var(--accent);
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  color: #fff;
  font-size: 0.95rem;
}

.pagination-btn:hover:not(:disabled) {
  background: #d32f3f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.pagination-info {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ===========================
   About Section
   =========================== */

.about-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.about-copy {
  flex: 1;
}

.about-media img {
  width: 420px;
  height: 540px;
  object-fit: cover;
  border-radius: 12px;
}

.stats {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}

.stats div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stats strong {
  font-size: 1.4rem;
}

.stats span {
  color: var(--muted);
}

/* ===========================
   Testimonials
   =========================== */

.testimonials {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-primary);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 24px;
  font-style: italic;
}

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

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ===========================
   Contact Section
   =========================== */

.contact-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.form-row {
  display: flex;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-primary);
}

/* Prevent horizontal resizing of textarea to maintain layout */
.contact-form textarea {
  resize: vertical;
  min-height: 120px; /* Ensures minimum height for usability */
}

.contact-aside {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* ===========================
   Footer
   =========================== */

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 32px 0 22px;
  margin-top: 40px;
  background: var(--bg-primary);
  transition: background 0.3s ease;
}

.footer-logos {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.footer-logos-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin: 0 0 18px;
  font-weight: 600;
}

.logos-scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-scroll {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: scroll 20s linear infinite;
  width: fit-content;
}

.logos-scroll img {
  width: 100px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s;
  flex-shrink: 0;
}

body.dark-mode .logos-scroll img {
  filter: grayscale(100%) brightness(2);
}

.logos-scroll img:hover {
  opacity: 1;
  filter: grayscale(0%);
  animation-play-state: paused;
}

body.dark-mode .logos-scroll img:hover {
  filter: grayscale(0%) brightness(1.2);
}

.logos-scroll-wrapper:hover .logos-scroll {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

.footer-logos .trusted-logos {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.footer-logos .trusted-logos img {
  width: 100px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.footer-logos .trusted-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.footer-socials a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.footer-socials a:hover {
  color: var(--accent);
  background: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
}

/* ===========================
   Utility Classes
   =========================== */

img {
  display: block;
  max-width: 100%;
}

/* ===========================
   Accessibility
   =========================== */

/* Skip Link */
.skip-link {
  position: absolute;
  left: 10px;
  top: -40px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 10000;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
  top: 10px;
}

/* ===========================
   Modals
   =========================== */

/* Service Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background: var(--modal-bg);
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 1.8rem;
}

.modal-content h3 {
  color: var(--text-primary);
  margin-top: 20px;
}

.modal-content p {
  margin: 0 0 15px;
  line-height: 1.6;
  color: var(--text-primary);
}

.modal-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.modal-content li {
  margin: 8px 0;
  color: var(--text-primary);
}

.service-learn-more {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.service-learn-more:hover {
  background: var(--accent);
  color: #fff;
}

/* ===========================
   Cookie Consent Banner
   =========================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--header-bg);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  padding: 20px;
  display: none;
  transition: background 0.3s ease;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-primary);
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-size: 14px;
}

.cookie-btn:hover {
  background: #d32f3f;
}

.cookie-btn-outline {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cookie-btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===========================
   Scroll to Top Button
   =========================== */

.scroll-to-top {
  position: fixed;
  bottom: 150px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 101;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.scroll-to-top .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  pointer-events: none;
}

.scroll-to-top .progress-ring-circle {
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-to-top .progress-ring-progress {
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
}

.scroll-to-top .scroll-arrow {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top.cookie-accepted {
  bottom: 110px;
}

.scroll-to-top:hover {
  background: #d32f3f;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .about-inner {
    flex-direction: column;
  }

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

  .hero-content {
    padding: 4rem 1rem;
  }

  .about-media img {
    width: 100%;
    height: auto;
  }
}

/* Landscape tablet/iPad fix - prevent header overlap */
@media (max-width: 900px) {
  .header-inner {
    padding: 12px 1rem;
    gap: 0.8rem;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-logo {
    height: 30px;
  }

  .main-nav {
    gap: 0.9rem;
  }

  .main-nav a {
    padding: 0.45rem 0.55rem;
    font-size: 0.9rem;
  }

  .main-nav .form-control {
    width: 140px;
    padding: 0.4rem 0.6rem;
    font-size: 13px;
  }

  .main-nav .btn {
    padding: 0.4rem 0.75rem;
    font-size: 13px;
  }

  .dark-mode-toggle {
    font-size: 1.15rem;
    padding: 0.4rem;
  }
}

/* Landscape mobile fix - prevent header overlap */
@media (max-width: 900px) and (max-height: 500px) {
  .header-inner {
    padding: 10px 1rem;
    gap: 1rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .brand-logo {
    height: 28px;
  }

  .main-nav {
    gap: 0.8rem;
  }

  .main-nav a {
    padding: 0.4rem 0.5rem;
    font-size: 0.9rem;
  }

  .dark-mode-toggle {
    font-size: 1.1rem;
    padding: 0.3rem;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: flex;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .trusted-logos img {
    width: 64px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 58vh;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ===========================
   Accessibility - Reduced Motion
   =========================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .logos-scroll {
    animation: none;
  }

  .pagination-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
  }
}