@font-face {
  font-family: 'Hacen Tunisia';
  src: url('fonts/HacenTunisiaLt.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Hacen Tunisia';
  src: url('fonts/HacenTunisia.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Hacen Tunisia';
  src: url('fonts/HacenTunisia.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Hacen Tunisia';
  src: url('fonts/HacenTunisiaBd.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Hacen Tunisia';
  src: url('fonts/HacenTunisiaBd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Hacen Tunisia';
  src: url('fonts/HacenTunisiaBd.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

html.font-pending body {
  visibility: hidden;
}

:root {
  --bg: #f6f7f9;
  --bg-soft: #eef1f6;
  --surface: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --accent: #1d52bc;
  --accent-light: #3b6fd0;
  --accent-bright: #7aa0ea;
  --accent-deep: #163f94;
  --accent-dark: #102a63;
  --accent-soft: #eaf0fb;
  --accent-softer: #f4f7fc;
  --accent-glow: rgba(29, 82, 188, 0.18);
  --green: var(--accent);
  --green-deep: var(--accent-deep);
  --green-soft: var(--accent-soft);
  --green-glow: var(--accent-glow);
  --border: rgba(17, 24, 39, 0.08);
  --border-strong: rgba(17, 24, 39, 0.12);
  --shadow: 0 10px 40px rgba(17, 24, 39, 0.05);
  --shadow-hover: 0 22px 50px rgba(17, 24, 39, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --title-font: 'Hacen Tunisia', Tahoma, Arial, sans-serif;
  --ui-font: 'Hacen Tunisia', Tahoma, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ui-font);
  color: var(--text);
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 70% 46% at 78% -8%, rgba(29, 82, 188, 0.16), transparent 58%),
    radial-gradient(ellipse 48% 36% at 6% 18%, rgba(122, 160, 234, 0.18), transparent 62%),
    radial-gradient(ellipse 42% 32% at 92% 88%, rgba(29, 82, 188, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 48%, #eef2f8 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(29, 82, 188, 0.1);
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.centered-page {
  display: block;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: float-orb 22s ease-in-out infinite;
}

.orb-1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(122, 160, 234, 0.55) 0%, rgba(29, 82, 188, 0.12) 46%, transparent 72%);
  top: -280px;
  right: -80px;
}

.orb-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(29, 82, 188, 0.22) 0%, transparent 70%);
  bottom: -160px;
  left: -120px;
  animation-delay: -8s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(186, 208, 246, 0.7) 0%, transparent 72%);
  top: 42%;
  left: 38%;
  animation-delay: -14s;
}

@keyframes float-orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 14px, 0) scale(1.06); }
}

.page,
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 5.5rem max(1.4rem, env(safe-area-inset-left)) 5rem max(1.4rem, env(safe-area-inset-right));
}

.page-narrow {
  max-width: 880px;
}

.hero,
.page-header,
.title-container {
  text-align: center;
  margin-bottom: 2.4rem;
}

.hero {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1,
.page-header h1,
.title-container span,
.title-container h1 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.22;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.page-header h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
}

.modal-box h2 {
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 2rem;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.accent-line,
.header-line,
.underline {
  display: none;
}

.hero p,
.page-header p,
.lead {
  max-width: 540px;
  margin: 1.15rem auto 0;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
  font-weight: 400;
}

.disclaimer,
.bottom-note-content {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  color: #9aa3b2;
  font-size: 0.78rem;
  line-height: 1.9;
  text-align: center;
}

.cta-row,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.hero-visual + .cta-row {
  margin-top: 1.8rem;
}

.hero-visual + .cta-row .btn,
.hero-visual + .cta-row .arabic-button {
  font-size: 1.12rem;
  font-weight: 400;
}

.btn,
.arabic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 46px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary,
.arabic-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}

@media (hover: hover) {
  .btn:hover,
  .arabic-button:hover {
    transform: translateY(-2px);
    background: var(--accent-deep);
    box-shadow: 0 12px 28px rgba(29, 82, 188, 0.28);
  }

  .btn-outline:hover {
    background: #fff;
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
  }
}

.btn::after,
.arabic-button::after {
  content: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--accent);
}

.cards,
.cards-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.1rem;
  width: 100%;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  width: 100%;
}

.card,
.tcard,
.testimonial-card,
.category-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

@media (hover: hover) {
  .card:hover,
  .tcard:hover,
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(29, 82, 188, 0.18);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 0.75rem;
  padding: 1.6rem 1.45rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  animation: rise 0.8s var(--ease) both;
  min-height: 240px;
}

.category-card:nth-child(2) { animation-delay: 0.1s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }

.category-card .btn,
.category-card .card-cta {
  margin-top: auto;
  padding: 0;
  min-height: 0;
  background: none;
  color: var(--accent);
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0;
  transform: none;
}

.category-card .btn:hover,
.category-card .card-cta:hover {
  background: none;
  box-shadow: none;
  transform: none;
  color: var(--accent-deep);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.05rem;
  box-shadow: none;
}

.icon-wrap::after {
  content: none;
}

.category-card:hover .icon-wrap {
  transform: none;
}

.category-card h2,
.category-card .label {
  margin: 0.2rem 0 0;
  font-family: var(--title-font);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.35;
}

.category-card .sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.tcard,
.text-card {
  padding: 1.35rem 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: rise 0.7s var(--ease) both;
}

.tcard-header,
.card-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tcard-avatar,
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: none;
}

.tcard-name,
.name {
  font-weight: 600;
  font-size: 0.95rem;
}

.tcard-country,
.tcard-email {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tcard-country i {
  margin-left: 4px;
  color: var(--accent);
}

.tcard-topic {
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  border: 0;
}

.tcard-topic i {
  margin-left: 0.3rem;
  color: var(--accent);
}

.media-list .tcard-topic {
  font-size: 1.05rem;
  font-weight: 400;
  padding: 0.38rem 0.95rem;
}

.media-list #modalName {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.45;
}

.media-list #modalTopic {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--accent-deep);
}

.tcard-body,
.testimonial-content,
.topic {
  color: #374151;
  line-height: 1.85;
  font-size: 0.95rem;
}

.read-more-ellipsis {
  margin-left: 0.15rem;
}

.read-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.85rem;
  margin-right: 0.15rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--accent);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.read-more-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-deep);
}

.tcard-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.tcard-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.hero-visual {
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}

.carousel {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.carousel__wrapper {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: scale(0.985) translateY(10px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.testimonial-card {
  width: 100%;
  max-width: 560px;
  min-height: 220px;
  padding: 2.4rem 2.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.carousel .testimonial-card {
  height: 100%;
  min-height: 0;
  max-height: 100%;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(29, 82, 188, 0.12);
  font-family: var(--title-font), Georgia, serif;
}

.testimonial-content {
  font-family: var(--title-font);
  font-size: 1.35rem;
  line-height: 1.8;
  color: #1f2937;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.3rem;
  position: relative;
  z-index: 2;
  min-height: 18px;
}

.dot {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #d5dbe6;
  cursor: pointer;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  transition: width 0.3s var(--ease), background 0.3s ease;
}

.dot.active {
  width: 22px;
  background: var(--accent);
}

.form-card {
  padding: 2rem 1.6rem;
  animation: rise 0.7s var(--ease) both;
}

.form-group {
  margin-bottom: 1.05rem;
  text-align: right;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border-strong);
  background: #fbfcfe;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

input[type="radio"] {
  accent-color: var(--accent);
  width: 1.05rem;
  height: 1.05rem;
}

.choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text-muted);
}

.choice-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.choice-list label:hover {
  border-color: rgba(29, 82, 188, 0.22);
  background: var(--accent-softer);
}

.play-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 8px 18px var(--accent-glow);
}

.play-btn::before {
  content: none;
}

.play-btn:hover {
  transform: scale(1.06);
  background: var(--accent-deep);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open,
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.35s var(--ease);
}

#videoModal {
  padding: 0;
}

.modal-box-video {
  width: 66.666vw;
  height: 66.666vh;
  max-width: none;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 1.2rem 1rem;
}

.modal-box-text {
  width: 70vw;
  height: 70vh;
  max-width: none;
  text-align: right;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 3rem 1.8rem 1.4rem;
}

.modal-box-text .tcard-name:empty,
.modal-box-text .tcard-country:empty {
  display: none;
  margin: 0;
}

.modal-box-text .tcard-country {
  margin-bottom: 1rem;
}

.modal-text-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  text-align: right;
  line-height: 2;
  font-size: 1.05rem;
  color: #1f2937;
  padding-left: 0.35rem;
}

.modal-box-video .video-frame {
  flex: 1;
  width: 100%;
  min-height: 0;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.modal-box-video .video-frame iframe,
.modal-box-video .video-frame video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .modal-box-video {
    width: min(94vw, 100%);
    height: min(90vh, 100%);
    padding: 2.4rem 0.75rem 0.75rem;
  }

  .modal-box-text {
    width: 90vw;
    height: 90vh;
    padding: 3rem 1.1rem 1.1rem;
  }
}

.modal-overlay.open .modal-box,
.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 52px;
  margin-bottom: 1.1rem;
}

.waveform .bar {
  width: 3px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.28;
}

.waveform.playing .bar {
  opacity: 1;
  animation: wave 1.1s ease-in-out infinite;
}

.waveform.playing .bar:nth-child(2) { animation-delay: 0.1s; }
.waveform.playing .bar:nth-child(3) { animation-delay: 0.2s; }
.waveform.playing .bar:nth-child(4) { animation-delay: 0.3s; }
.waveform.playing .bar:nth-child(5) { animation-delay: 0.4s; }
.waveform.playing .bar:nth-child(6) { animation-delay: 0.3s; }
.waveform.playing .bar:nth-child(7) { animation-delay: 0.2s; }
.waveform.playing .bar:nth-child(8) { animation-delay: 0.1s; }

@keyframes wave {
  0%, 100% { height: 10px; }
  50% { height: 38px; }
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--accent-soft);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0f172a;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  background: #fff;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
}

audio {
  accent-color: var(--accent);
  width: 100%;
}

.loader-icon {
  font-size: 2rem;
  color: var(--accent);
}

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

.fade-up {
  animation: rise 0.9s var(--ease) both;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero h1,
  .page-header h1 {
    font-size: clamp(2.05rem, 9vw, 3.1rem);
  }
}

@media (max-width: 800px) {
  .carousel__wrapper {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .page,
  .container {
    padding-top: 3.2rem;
    padding-bottom: 3rem;
  }

  body {
    background-attachment: scroll;
  }

  .cta-row,
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .arabic-button {
    width: 100%;
  }

  .testimonial-card {
    padding: 1.7rem 1.2rem 1.4rem;
    min-height: 190px;
  }

  .testimonial-content {
    font-size: 1.12rem;
  }

  .form-card {
    padding: 1.35rem 1rem 1.25rem;
  }

  .tcard,
  .text-card {
    padding: 1.15rem 1.05rem;
  }

  .orb {
    opacity: 0.45;
    filter: blur(60px);
  }

  .category-card {
    min-height: 0;
  }
}

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