.header-links ul li {
  font-size: 14px;
}

.header-top-area {
  padding-top: 9px;
  padding-bottom: 9px;
}

/* ================================================================
   TM HERO — Full-Screen 3-Slide Carousel  (new classes only)
   ================================================================ */

.tm-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each slide sits absolute, full-size, fades in/out */
.tm-slide {
  position: absolute;
  inset: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
  z-index: 1;
}

.tm-slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Shared: background image layer */
.tm-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Shared: dark gradient overlay */
.tm-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Shared: content wrapper sits above bg + overlay */
.tm-slide__inner {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  /* clears fixed header */
  padding-bottom: 60px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- SLIDE 1 ---- */
.tm-s1-bg {
  background-image: url("../images/girl.jpg");
}

.tm-s1-overlay {
  background: linear-gradient(120deg,
      rgba(0, 157, 204, 0.4) 0%,
      rgba(0, 157, 204, 0.3) 50%,
      rgba(0, 157, 204, 0.2) 100%);
}

.tm-s1-row {
  min-height: calc(100vh - 170px);
}

/* Left pane – text on dark bg */
.tm-s1-left {
  padding: 2rem 0rem 2rem 7rem;
  color: #fff;
}

.tm-s1-content {
  max-width: 480px;
}

.tm-badge {
  display: inline-block;
  background: rgba(0, 181, 217, 0.2);
  border: 1px solid rgba(0, 181, 217, 0.45);
  color: var(--secondary-color-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.tm-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.tm-hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.tm-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Primary CTA */
.tm-btn-primary {
  display: inline-block;
  background: var(--primary-color-blue);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary-color-blue);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tm-btn-primary:hover {
  background: transparent;
  color: var(--primary-color-blue);
  text-decoration: none;
}

/* Outline CTA on dark */
.tm-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tm-btn-outline:hover {
  background: #fff;
  color: #103741;
  border-color: #fff;
  text-decoration: none;
}

/* Right pane – form card */
.tm-s1-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem 1rem 1.5rem;
}

.tm-hero-form {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  scroll-behavior: smooth;
}

.tm-hero-form::-webkit-scrollbar {
  width: 4px;
}

.tm-hero-form::-webkit-scrollbar-thumb {
  background: #00b5d9;
  border-radius: 4px;
}

.tm-hero-form__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #103741;
  text-align: center;
  margin-bottom: 1rem;
}

/* Anonymous button */
.tm-form-anon-row {
  margin-bottom: 1rem;
}

.tm-anon-btn {
  width: 100%;
  background: none;
  max-width: 240px;
  border: 1px solid #00b5d9;
  color: #00b5d9;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.tm-anon-btn:hover {
  background: #00b5d9;
  color: #fff;
}

/* Personal fields stack */
.tm-form-fields {
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: opacity 0.3s;
}

/* Shared input style */
.tm-input {
  width: 100%;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.tm-input:focus {
  border-color: #00b5d9;
  box-shadow: 0 0 0 3px rgba(0, 181, 217, 0.12);
}

/* Phone row */
.tm-phone-row {
  display: flex;
}

.tm-code-wrap {
  display: flex;
  align-items: center;
  border: none;
  border-right: 1px solid #ddd;
  border-radius: 30px 0 0 30px;
  padding: 0 10px;
  background: white;
  flex-shrink: 0;
}

.tm-plus {
  font-weight: 600;
  margin-right: 3px;
  color: #555;
  font-size: 14px;
}

.tm-code-inp {
  border: none;
  outline: none;
  width: 48px;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
}

.tm-phone-inp {
  border-radius: 0 30px 30px 0;
  border-left: none;
}

/* Donation amounts */
.tm-form-amounts {
  margin-bottom: 0.8rem;
}

.tm-amounts-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 0.5rem;
}

.tm-amounts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tm-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f8ff;
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2bc1ae;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 58px;
  text-align: center;
  user-select: none;
}

.tm-amount input[type="radio"] {
  display: none;
}

.tm-amount:has(input[type="radio"]:checked) {
  background: #2bc1ae;
  color: #fff;
}

/* Textarea */
.tm-textarea {
  height: 50px;
  resize: vertical;
  margin-bottom: 0.8rem;
}

/* Cover fees */
.tm-cover-wrap {}

.tm-cover-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  color: #555;
}

.tm-cover-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #00b5d9;
  flex-shrink: 0;
}

/* Total box */
.tm-total-box {
  background: #f1f7ff;
  border: 1px solid #cfe2ff;
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 0.95rem;
  color: #103741;
  text-align: center;
}

/* Submit buttons */
.tm-form-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tm-submit-btn {
  flex: 1;
  background: #00b5d9;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
  white-space: nowrap;
}

.tm-submit-btn:hover {
  background: #103741;
}

.tm-other-btn {
  flex: 1;
  display: block;
  text-align: center;
  background: #fff;
  color: #00b5d9;
  border: 2px solid #00b5d9;
  border-radius: 50px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.tm-other-btn:hover {
  background: #00b5d9;
  color: #fff;
  text-decoration: none;
}

/* ---- SLIDE 2 ---- */
.tm-s2-bg {
  background: linear-gradient(135deg,
      var(--primary-color-blue) 0%,
      #c8edf8 50%,
      var(--primary-color-blue) 100%);
}

.tm-s2-overlay {
  background: transparent;
}

.tm-s2-row {
  min-height: calc(100vh - 170px);
}

.tm-wish-photo-wrap {
  position: relative;
  display: inline-block;
  max-width: 500px;
  width: 100%;
}

.tm-wish-photo {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  display: block;
}

.tm-wish-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(43, 193, 174, 0.4);
}

/* Wish details card */
.tm-wish-card {
  background: #fff;
  border-radius: 22px;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  height: auto;
}

.tm-wish-program-tag {
  display: inline-block;
  background: var(--tertiary-color-pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.tm-wish-name {
  font-size: 2.8rem;
  font-weight: 800;
  color: #103741;
  line-height: 1;
  margin-bottom: 1rem;
}

.tm-wish-meta-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
  flex-wrap: wrap;
}

.tm-wish-meta-item {
  display: flex;
  flex-direction: column;
}

.tm-meta-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.tm-meta-val {
  font-size: 1rem;
  font-weight: 700;
  color: #103741;
}

.tm-meta-val--amount {
  font-size: 1.3rem;
  color: #00b5d9;
}

.tm-wish-quote-block {
  background: linear-gradient(135deg, #e4f5fb, #d0eef8);
  border-left: 4px solid var(--primary-color-blue);
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tm-quote-star {
  font-size: 1.2rem;
  color: #00b5d9;
  margin-top: 2px;
  flex-shrink: 0;
}

.tm-wish-quote {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: #103741;
  margin: 0;
  border: none;
  padding: 0;
}

.tm-wish-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tm-wish-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tm-btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--primary-color-green);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  border: 2px solid var(--primary-color-green);
  transition: all 0.3s;
  white-space: nowrap;
}

.tm-btn-outline-dark:hover {
  background: var(--secondary-color-green);
  border: 2px solid var(--secondary-color-green);

  color: #fff;
  text-decoration: none;
}

/* ---- SLIDE 3 ---- */
.tm-s3-bg {
  background-image: url("../images/banners/about.jpg");
  background-position: center top;
}

.tm-s3-overlay {
  /* background: linear-gradient(120deg, rgba(0, 174, 158, 0.63) 0%, rgba(0, 174, 158, 0.6) 50%, rgba(0, 174, 158, 0.30) 100%); */
  /* opacity: 0.6; */
  background: rgba(0, 0, 0, 0.5);
}

.tm-s3-row {
  min-height: calc(100vh - 170px);
}

.tm-coh {
  color: #fff;
}

.tm-coh-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color-blue);
  border: 2px solid rgba(0, 181, 217, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.tm-coh-icon {
  font-size: 2.2rem;
  color: #7ee8f5;
}

.tm-coh-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
}

.tm-coh-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 1rem;
}

.tm-coh-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.tm-coh-benefits {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tm-coh-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.tm-coh-benefit i {
  font-size: 1.6rem;
  color: var(--primary-color-blue);
}

.tm-coh-benefit span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tm-coh-cta {
  display: inline-block;
  background: var(--primary-color-blue);
  color: #fff;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 181, 217, 0.4);
}

.tm-coh-cta:hover {
  background: #fff;
  color: var(--primary-color-blue);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* ---- Prev / Next arrows ---- */
.tm-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-hero-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.tm-hero-nav--prev {
  left: 20px;
}

.tm-hero-nav--next {
  right: 20px;
}

/* ---- Dot navigation ---- */
.tm-hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.tm-dot--active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* Scroll hint (mobile slide 1) */
.tm-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0 16px;
  transition: opacity 0.4s ease;
  animation: tm-bounce 1.6s infinite;
  position: relative;
  z-index: 3;
}

.tm-scroll-hint i {
  font-size: 1.2rem;
}

.tm-scroll-hint.tm-hint-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes tm-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ================================================================
   TM HERO — Mobile / Responsive
   The carousel keeps position:absolute + opacity on ALL screen sizes.
   Only the INNER CONTENT layout changes for smaller viewports.
   ================================================================ */

/* ---------- tablet (≤ 991px) ---------- */
@media (max-width: 991px) {

  /* Section stays a fixed viewport-height "window" — slides scroll inside */
  .tm-hero-section {
    height: 60vh;
    min-height: 580px;
  }

  /* Each slide stays absolute/opacity-based.
       overflow-y:auto lets the slide scroll its own content. */
  .tm-slide {
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Slide inner: tighter top pad, allow natural height */
  .tm-slide__inner {
    padding-top: 85px;
    padding-bottom: 70px;
    /* room above dots */
    justify-content: flex-start;
  }

  /* ---- Slide 1 ---- */
  /* Bootstrap col-12 col-lg-5/7 already stacks on mobile */
  .tm-s1-row {
    min-height: unset;
  }

  .tm-s1-left {
    padding: 1.2rem 1.2rem 0.6rem;
  }

  .tm-s1-content {
    max-width: 100%;
  }

  .tm-hero-h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .tm-hero-sub {
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
  }

  .tm-s1-right {
    padding: 0 1.2rem 1.5rem;
  }

  .tm-hero-form {
    max-height: none;
    /* form grows naturally; slide scrolls */
    max-width: 100%;
    overflow-y: visible;
    border-radius: 18px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  }

  /* ---- Slide 2 ---- */
  .tm-s2-row {
    min-height: unset;
  }

  .tm-wish-photo {
    height: 260px;
  }

  .tm-wish-photo-wrap {
    max-width: 100%;
  }

  .tm-wish-card {
    padding: 1.5rem;
    margin-top: 0.5rem;
  }

  .tm-wish-name {
    font-size: 2rem;
  }

  /* ---- Slide 3 ---- */
  .tm-s3-row {
    min-height: unset;
  }

  .tm-coh {
    padding: 1rem;
  }

  .tm-coh-benefits {
    gap: 1.5rem;
  }

  /* Arrows: smaller, tucked to edges */
  .tm-hero-nav {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .tm-hero-nav--prev {
    left: 8px;
  }

  .tm-hero-nav--next {
    right: 8px;
  }
}

/* ---------- phone (≤ 576px) ---------- */
@media (max-width: 576px) {
  .tm-hero-section {
    height: 100svh;
    min-height: 560px;
  }

  .tm-slide__inner {
    padding-top: 75px;
    padding-bottom: 65px;
  }

  /* Slide 1 */
  .tm-s1-left {
    padding: 0.8rem 1rem 0.5rem;
  }

  .tm-hero-h1 {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
  }

  .tm-hero-sub {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .tm-badge {
    font-size: 0.65rem;
    padding: 4px 14px;
    margin-bottom: 0.8rem;
  }

  .tm-cta-row {
    gap: 0.6rem;
  }

  .tm-btn-primary,
  .tm-btn-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .tm-s1-right {
    padding: 0 0.8rem 1.2rem;
  }

  .tm-hero-form {
    padding: 1.2rem 1rem;
    border-radius: 14px;
  }

  .tm-hero-form__title {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
  }

  .tm-form-anon-row {
    margin-bottom: 0.8rem;
  }

  .tm-anon-btn {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  .tm-form-fields {
    gap: 7px;
  }

  .tm-input {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .tm-code-inp {
    width: 42px;
    font-size: 0.82rem;
  }

  .tm-amounts-label {
    font-size: 0.75rem;
  }

  .tm-amounts-grid {
    gap: 5px;
  }

  .tm-amount {
    padding: 6px 10px;
    font-size: 0.82rem;
    min-width: 44px;
  }

  .tm-textarea {
    rows: 1;
    font-size: 0.82rem;
    padding: 9px 14px;
  }

  .tm-cover-label {
    font-size: 0.75rem;
  }

  .tm-total-box {
    font-size: 0.88rem;
    padding: 8px 14px;
  }

  .tm-submit-btn,
  .tm-other-btn {
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  /* Slide 2 */
  .tm-wish-photo {
    height: 220px;
    border-radius: 16px;
  }

  .tm-wish-card {
    padding: 1.1rem;
  }

  .tm-wish-name {
    font-size: 1.7rem;
  }

  .tm-wish-meta-row {
    gap: 1rem;
  }

  .tm-meta-label {
    font-size: 0.6rem;
  }

  .tm-meta-val {
    font-size: 0.9rem;
  }

  .tm-meta-val--amount {
    font-size: 1.1rem;
  }

  .tm-wish-quote {
    font-size: 0.97rem;
  }

  .tm-wish-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .tm-wish-actions {
    gap: 0.6rem;
  }

  .tm-btn-outline-dark {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Slide 3 */
  .tm-coh-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }

  .tm-coh-icon {
    font-size: 1.7rem;
  }

  .tm-coh-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .tm-coh-tagline {
    font-size: 0.95rem;
  }

  .tm-coh-desc {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .tm-coh-benefits {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .tm-coh-benefit i {
    font-size: 1.3rem;
  }

  .tm-coh-benefit span {
    font-size: 0.7rem;
  }

  .tm-coh-cta {
    padding: 12px 26px;
    font-size: 0.9rem;
  }

  /* Hide arrows on phone — swipe handles navigation */
  .tm-hero-nav {
    display: none;
  }

  /* Dots closer to bottom */
  .tm-hero-dots {
    bottom: 14px;
    gap: 8px;
  }

  .tm-dot {
    width: 8px;
    height: 8px;
  }
}

.tm-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#tm-coverFees {
  accent-color: var(--primary-color-blue);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.tm-cover-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tm-cover-label span {
  transition: color 0.2s;
}

.tm-cover-label:has(input:checked) span {
  color: var(--primary-color-blue);
  font-weight: 600;
}

.main-menu>ul>li {
  padding: 20px 0;
}

button:hover {
  background-color: var(--primary-color-blue);
}

/* Equal-height slick cards — flex track */
.tm-testimony-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.tm-testimony-slider .slick-slide {
  height: auto !important;
  float: none;
}

.tm-testimony-slider .slick-slide>div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Strip any inherited background from theme */
.tm-testi-section .slick-list,
.tm-testi-section .slick-track,
.tm-testi-section .slick-slide {
  background: transparent !important;
}

.tm-testimony-card {
  margin: 0 10px;
  padding: 32px 28px;
  background: #fff !important;
  border-radius: 30px;
  border: 1px solid var(--primary-color-blue);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tm-testimony-text {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
}

.tm-testimony-author {
  font-weight: 700;
  color: var(--primary-color-blue, #00b5d9);
  font-size: 0.9rem;
}

.tm-testi-prev,
.tm-testi-next {
  position: static;
  transform: none;
  background: var(--primary-color-blue, #00b5d9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
}

.tm-testi-prev:hover,
.tm-testi-next:hover {
  background: #103741;
  transform: scale(1.08);
}

.tm-testimony-slider {
  position: relative;
}

/* ================================================================
   TM STATS MARQUEE SECTION
   ================================================================ */

/* ---------- Section wrapper ---------- */
.tm-stats-marquee-section {
  /* background-color: var(--secondary-color-green, #2bc1ae); */
  padding: 0 0 80px 0;
  overflow: hidden;
  position: relative;
}

/* ---------- Viewport — holds the edge-fade mask ---------- */
.tm-stats-marquee-vp {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%);
}

/* ---------- Scrolling track ---------- */
.tm-stats-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: tm-stats-scroll 32s linear infinite;
}

@keyframes tm-stats-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.tm-stats-track:hover {
  animation-play-state: paused;
}

/* ---------- Individual card — exactly 4 visible at a time ---------- */
.tm-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--primary-color-blue);
  border-radius: 30px;
  padding: 40px 20px;
  /* 4 cards + 3 gaps of 20px = 100vw → each card = 25vw - 15px */
  width: calc(25vw - 15px);
  min-width: 180px;
  max-width: 320px;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: default;
}

.tm-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

/* ---------- Icon box ---------- */
.tm-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

/* Color variants */
.tm-stat-card[data-color="blue"] .tm-stat-icon {
  background: white;
  color: var(--primary-color-green);
}

.tm-stat-card[data-color="green"] .tm-stat-icon {
  background: white;
  color: var(--primary-color-green);
}

.tm-stat-card[data-color="pink"] .tm-stat-icon {
  background: white;
  color: var(--primary-color-green);
}

.tm-stat-card[data-color="purple"] .tm-stat-icon {
  background: white;
  color: var(--primary-color-green);
}

.tm-stat-card[data-color="orange"] .tm-stat-icon {
  background: white;
  color: var(--primary-color-green);
}

/* ---------- Text content ---------- */
.tm-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: "Baloo 2", sans-serif;
}

.tm-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .tm-stats-marquee-section {
    padding: 1.8rem 0;
  }

  /* 2 cards at a time on tablet: 2 cards + 1 gap of 14px = 100vw */
  .tm-stat-card {
    width: calc(50vw - 7px);
    min-width: 140px;
    max-width: 260px;
    padding: 0.9rem 1.1rem;
    gap: 12px;
    border-radius: 20px;
  }

  .tm-stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 11px;
  }

  .tm-stat-num {
    font-size: 1.5rem;
  }

  .tm-stat-label {
    font-size: 0.65rem;
  }

  .tm-stats-track {
    gap: 14px;
    animation-duration: 22s;
  }
}

@media (max-width: 480px) {
  .tm-stat-card {
    width: calc(50vw - 7px);
    min-width: 120px;
    padding: 0.75rem 0.9rem;
    gap: 10px;
    border-radius: 16px;
  }

  .tm-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 9px;
  }

  .tm-stat-num {
    font-size: 1.3rem;
  }
}

/* ================================================================
   TM TESTIMONIALS SLIDER
   ================================================================ */

.tm-testi-section {
  background: #fff;
  padding: 5rem 0;
  overflow: hidden;
}

.tm-testi-header {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.tm-testi-wrap {
  position: relative;
  padding: 0 70px;
}

.tm-testi-prev,
.tm-testi-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.tm-testi-prev:hover,
.tm-testi-next:hover {
  transform: translateY(-50%) scale(1.08) !important;
}

.tm-testi-prev {
  left: 0 !important;
}

.tm-testi-next {
  right: 0 !important;
}

@media (max-width: 576px) {
  .tm-testi-wrap {
    padding: 0 48px;
  }

  .tm-testi-prev,
  .tm-testi-next {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }
}

/* ================================================================
   SHARED SECTION HEADER — left title + right button layout
   ================================================================ */

.tm-section-header {
  margin-bottom: 3rem;
  text-align: left;
}

/* vs-btn inside a card — full-width, consistent size */
.tm-aad-card .vs-btn {
  font-size: 0.95rem;
  padding: 10px 24px;
  min-width: unset;
  text-align: center;
  display: block;
}

/* ================================================================
   TM ADOPT A DREAM — Homepage Section
   ================================================================ */

.tm-aad-section {
  /* background: #f4f8fb; */
  padding: 5rem 0;
}

/* ---------- Header ---------- */
.tm-aad-header {
  margin-bottom: 3rem;
}

.tm-aad-badge {
  display: inline-block;
  background: rgba(0, 174, 158, 0.1);
  border: 1px solid rgba(0, 174, 158, 0.3);
  color: var(--primary-color-green, var(--secondary-color-green));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: normal;
}

.tm-aad-title {
  font-size: 35px;
  font-weight: 800;
  color: #103741;
  margin-bottom: 0.8rem;
  max-width: 400px;
}

.tm-aad-sub {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  line-height: 1.8;
}

/* ---------- Cards row ---------- */
.tm-aad-cards-row {
  margin-bottom: 2.5rem;
  row-gap: 1.5rem;
}

/* ---------- Individual card ---------- */
.tm-aad-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* .tm-aad-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
} */

/* ---------- Image ---------- */
.tm-aad-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.tm-aad-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tm-aad-card:hover .tm-aad-img {
  transform: scale(1.05);
}

.tm-aad-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color-blue);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 50px;
  pointer-events: none;
}

/* ---------- Body ---------- */
.tm-aad-body {
  padding: 1.4rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tm-aad-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tm-aad-age {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  /* background: #dff4fb; */
  color: var(--title-color);
  /* padding: 3px 10px; */
  /* border-radius: 50px; */
  white-space: nowrap;
}

.tm-aad-diag {
  font-size: 13px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  text-decoration: underline;
}

.tm-aad-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #103741;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.tm-aad-wish {
  font-size: 0.92rem;
  color: #666;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}

/* ---------- Progress bar ---------- */
.tm-aad-progress-wrap {
  margin-bottom: 1.3rem;
}

.tm-aad-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 7px;
  gap: 4px;
}

.tm-aad-progress-labels strong {
  color: #103741;
}

.tm-aad-heart {
  color: #e8789c;
  font-size: 0.72rem;
  margin-right: 2px;
}

.tm-aad-progress-track {
  height: 9px;
  background: #e4eff5;
  border-radius: 50px;
  overflow: hidden;
}

.tm-aad-progress-fill {
  height: 100%;
  background: linear-gradient(90deg,
      var(--primary-color-blue) 0%,
      var(--secondary-color-blue) 100%);
  border-radius: 50px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.tm-aad-progress-pct {
  font-size: 0.7rem;
  font-weight: 700;
  color: #2bc1ae;
  text-align: right;
  margin-top: 5px;
}

/* ---------- Card CTA button ---------- */
.tm-aad-cta {
  display: block;
  text-align: center;
  background: var(--primary-color-blue, #00b5d9);
  color: #fff;
  padding: 11px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  margin-top: auto;
}

.tm-aad-cta:hover {
  background: #103741;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ---------- Section footer ---------- */
.tm-aad-footer {
  padding-top: 0.5rem;
}

.tm-aad-footer-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.tm-aad-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color-blue, #00b5d9);
  border: 2px solid var(--primary-color-blue, #00b5d9);
  background: transparent;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tm-aad-footer-cta:hover {
  background: var(--primary-color-blue, #00b5d9);
  color: #fff;
  text-decoration: none;
}

.tm-aad-footer-cta i {
  font-size: 0.9rem;
}

/* ---------- Progress bar in kids-wishes.php ---------- */
.kw-progress-wrap {
  background: #f4f8fb;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin: 1rem 0 1.2rem;
}

.kw-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
}

.kw-progress-labels strong {
  color: #103741;
}

.kw-progress-track {
  height: 12px;
  background: #dde9f0;
  border-radius: 50px;
  overflow: hidden;
}

.kw-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00b5d9 0%, #2bc1ae 100%);
  border-radius: 50px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kw-progress-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2bc1ae;
  text-align: right;
  margin-top: 5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .tm-aad-section {
    padding: 3.5rem 0;
  }

  .tm-aad-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .tm-aad-section {
    padding: 2.5rem 0;
  }

  .tm-aad-title {
    font-size: 1.7rem;
  }

  .tm-aad-body {
    padding: 1.1rem 1.2rem 1.2rem;
  }

  .tm-aad-name {
    font-size: 1.4rem;
  }
}

/* ================================================================
   TM CIRCLE OF HOPE — Standalone Section
   ================================================================ */

.tm-coh-sec {
  /* background: linear-gradient(150deg, #f0f9fd 0%, #eaf6ff 60%, #f4fafd 100%); */
  padding: 5rem 0;
  text-align: center;
}

.tm-coh-sec-header {
  margin-bottom: 3rem;
}

.tm-coh-sec-badge {
  display: inline-block;
  background: rgba(43, 193, 174, 0.12);
  border: 1px solid rgba(43, 193, 174, 0.35);
  color: var(--primary-color-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.tm-coh-sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #103741;
  margin-bottom: 0.8rem;
}

.tm-coh-sec-sub {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Benefit cards */
.tm-coh-benefits-row {
  margin-bottom: 3rem;
  row-gap: 1.5rem;
}

.tm-coh-benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
  width: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tm-coh-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.tm-coh-benefit-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dff4fb, #cceef8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--primary-color-blue);
  margin: 0 auto 1.2rem;
}

.tm-coh-benefit-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #103741;
  margin-bottom: 0.6rem;
}

.tm-coh-benefit-text {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.72;
  margin: 0;
}

/* Pricing block */
.tm-coh-pricing-wrap {
  text-align: center;
  background: #fff;
  border-radius: 26px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  max-width: 680px;
  margin: 0 auto;
}

.tm-coh-pricing-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.6rem;
}

.tm-coh-pricing-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tm-coh-price-divider {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ccc;
}

.tm-coh-price-card {
  border: 2px solid #e4eef4;
  border-radius: 20px;
  padding: 1.4rem 2.2rem;
  min-width: 160px;
  position: relative;
  transition: border-color 0.25s;
}

.tm-coh-price-card--featured {
  border-color: #2bc1ae;
  background: linear-gradient(135deg, #f0fdfb, #e6f9f6);
}

.tm-coh-price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #2bc1ae;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.tm-coh-price-period {
  font-size: 0.72rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
}

.tm-coh-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #103741;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.tm-coh-price-amount span {
  font-size: 1rem;
  color: #bbb;
  font-weight: 600;
}

.tm-coh-price-note {
  font-size: 0.72rem;
  color: #bbb;
}

.tm-coh-price-card--featured .tm-coh-price-amount {
  color: #2bc1ae;
}

.tm-coh-sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color-green);
  color: #fff;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(43, 193, 174, 0.32);
}

.tm-coh-sec-cta:hover {
  background: #103741;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16, 55, 65, 0.22);
}

/* ================================================================
   TM FAQ SECTION
   ================================================================ */

.tm-faq-section {
  background: #fff;
  padding: 5rem 0;
  border-top: 1px solid #eef3f6;
}

.tm-faq-row {
  gap: 2rem 0;
}

.tm-faq-left {
  position: sticky;
  top: 100px;
  padding-right: 3rem;
}

.tm-faq-badge {
  display: inline-block;
  background: rgba(0, 174, 158, 0.1);
  border: 1px solid rgba(0, 174, 158, 0.3);
  color: var(--primary-color-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.tm-faq-title {
  font-size: 35px;
  font-weight: 800;
  color: #103741;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.tm-faq-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.75;
}

.tm-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tm-faq-item {
  border: 1px solid #e8eff4;
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.tm-faq-item--open {
  /* border-color: #b4dff0; */
  border-color: #e8eff4;
}

.tm-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #103741;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.tm-faq-question:hover {
  color: white !important;
}

.tm-faq-item--open .tm-faq-question {
  color: white;
  background-color: var(--primary-color-blue);
  border-radius: 16px 16px 0 0;
}

.tm-faq-icon {
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-color-blue);
}

.tm-faq-item--open .tm-faq-icon {
  transform: rotate(-180deg);
  color: white !important;
}

.tm-faq-answer {
  display: none;
  padding: 0 1.5rem 1.3rem;
  border-top: 1px solid #eef3f6;
  background: #fafcfe;
}

.tm-faq-item--open .tm-faq-answer {
  border-top-color: #d4ecf7;
}

.tm-faq-answer p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.8;
  margin: 1rem 0 0;
}

.tm-faq-answer a {
  color: #00b5d9;
  font-weight: 600;
  text-decoration: none;
}

.tm-faq-answer a:hover {
  text-decoration: underline;
}

/* ================================================================
   TM SPONSORS LOGO SLIDER
   ================================================================ */

.tm-sponsors-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background-image: url("../images/girl.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  margin: 0 20px;
  border-radius: 30px;
}

.tm-sponsors-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 55, 80, 0.82) 0%,
      rgba(16, 55, 65, 0.88) 100%);
  z-index: 1;
}

.tm-sponsors-vp {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
}

.tm-sponsors-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: tm-sponsors-scroll 28s linear infinite;
  padding: 8px 28px;
}

@keyframes tm-sponsors-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tm-sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.75;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.tm-sponsor-item:hover {
  opacity: 1;
  transform: scale(1.06);
}

.tm-sponsor-item img {
  height: 120px;
  width: auto;
  min-width: 180px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tm-sponsor-item:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 181, 217, 0.6));
}

/* Responsive */
@media (max-width: 991px) {

  .tm-coh-sec,
  .tm-faq-section {
    padding: 3.5rem 0;
  }

  .tm-faq-left {
    position: static;
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .tm-coh-pricing-wrap {
    padding: 2rem 1.2rem;
  }

  .tm-coh-pricing-cards {
    gap: 1rem;
  }

  .tm-coh-price-card {
    min-width: 140px;
    padding: 1.2rem 1.6rem;
  }

  .tm-coh-price-amount {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {

  .tm-coh-sec,
  .tm-faq-section {
    padding: 2.5rem 0;
  }

  .tm-coh-sec-title,
  .tm-faq-title {
    font-size: 1.7rem;
  }

  .tm-coh-benefit-card {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }

  .tm-coh-benefit-icon {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }

  .tm-coh-pricing-wrap {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .tm-faq-question {
    font-size: 0.93rem;
    padding: 1rem 1.1rem;
  }

  .tm-faq-answer {
    padding: 0 1.1rem 1rem;
  }

  .tm-sponsors-track {
    gap: 36px;
    animation-duration: 20s;
  }

  .tm-sponsor-item img {
    height: 46px;
    max-width: 110px;
  }
}

a {
  color: var(--primary-color-blue);
}

.header-buttons-container .vs-btn {
  padding: 8px 20px;
  font-size: 16px;
}

.tm-hero-section .row {
  margin-top: 100px;
}

.header-top-area {
  z-index: 3;
  position: relative;
}

.vs-header {
  position: absolute;
  width: 100%;
}

.header-menu-area {
  background: white;
}

.sub-menu-item {
  border-radius: 8px;
}

.vs-btn {
  background-color: var(--primary-color-blue);
}

/* ================================================================
   TM WISH CATEGORY CARDS — 2×2 icon-left layout
   ================================================================ */

.tm-wish-cat-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 24px;
  border-radius: 20px;
  height: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tm-wish-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

.tm-wish-cat-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-wish-cat-icon img {
  height: 48px;
  width: auto;
}

.tm-wish-cat-body {
  flex: 1;
}

.tm-wish-cat-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.2;
}

.tm-wish-cat-text {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 576px) {
  .tm-wish-cat-card {
    padding: 20px 18px;
    gap: 16px;
  }

  .tm-wish-cat-icon {
    width: 68px;
    height: 68px;
  }

  .tm-wish-cat-icon img {
    height: 36px;
  }
}

/* ================================================================
   TM PILL BUTTONS — unified CTA style
   ================================================================ */

.tm-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.tm-pill-btn:hover {
  text-decoration: none;
}

/* Blue fill */
.tm-pill-btn--blue {
  background: var(--primary-color-blue, #00b5d9);
  color: #fff;
  border-color: var(--primary-color-blue, #00b5d9);
  box-shadow: 0 6px 22px rgba(0, 181, 217, 0.3);
}

.tm-pill-btn--blue:hover {
  background: #103741;
  border-color: #103741;
  color: #fff;
  box-shadow: 0 8px 28px rgba(16, 55, 65, 0.22);
}

/* Green fill */
.tm-pill-btn--green {
  background: var(--primary-color-green, #2bc1ae);
  color: #fff;
  border-color: var(--primary-color-green, #2bc1ae);
  box-shadow: 0 6px 22px rgba(43, 193, 174, 0.3);
}

.tm-pill-btn--green:hover {
  background: #103741;
  border-color: #103741;
  color: #fff;
  box-shadow: 0 8px 28px rgba(16, 55, 65, 0.22);
}

/* Outline dark */
.tm-pill-btn--outline {
  background: transparent;
  color: #103741;
  border-color: #103741;
}

.tm-pill-btn--outline:hover {
  background: #103741;
  color: #fff;
}

/* Outline light — for use on dark/parallax backgrounds */
.tm-pill-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.tm-pill-btn--outline-light:hover {
  background: #fff;
  color: #103741;
  border-color: #fff;
}

/* ================================================================
   TM FOUNDER'S STORY SECTION
   ================================================================ */

/* ================================================================
   TM FOUNDER'S STORY — Two-box full-width layout
   ================================================================ */

.tm-founder-section {
  background: #fff;
  /* padding: 5rem 0 0 0; */
  overflow: hidden;
}

.tm-founder-text-box {
  background: #f4f8fb;
  border-radius: 30px 0px 0px 30px;
  padding: 3.5rem;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tm-founder-badge-white {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  max-width: 155px;
}

.tm-founder-box-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #103741;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.tm-founder-text--white {
  font-size: 1rem;
  color: #103741;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.tm-founder-text--white strong {
  color: #103741;
  font-weight: 700;
}

.tm-founder-img-box {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.tm-karim-photo {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tm-karim-caption {
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 0.6rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .tm-founder-section {
    padding: 3.5rem 0;
  }

  .tm-founder-text-box {
    min-height: auto;
    padding: 2.5rem;
  }

  .tm-founder-img-box,
  .tm-karim-photo {
    min-height: 380px;
  }
}

@media (max-width: 576px) {
  .tm-founder-section {
    padding: 2.5rem 0;
  }

  .tm-founder-text-box {
    padding: 2rem 1.5rem;
  }

  .tm-founder-img-box,
  .tm-karim-photo {
    min-height: 280px;
  }
}

/* ================================================================
   TM WISH STORIES (VIDEO) SECTION
   ================================================================ */

.tm-wishes-video-section {
  background: #f4f8fb;
  padding: 5rem 0;
  margin: 0 20px;
  border-radius: 30px;
}

#studies {
  margin: 0 20px;
  border-radius: 30px;
  padding: 80px 0 !important;
}

.tm-video-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tm-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.11);
}

.tm-video-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.tm-video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tm-video-info {
  padding: 1rem 1.2rem;
}

.tm-video-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #103741;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 991px) {
  .tm-wishes-video-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 576px) {
  .tm-wishes-video-section {
    padding: 2.5rem 0;
  }
}

/* ── Founder's Story — Instagram embed containers ─────────────── */
.tm-founder-insta-small {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tm-founder-insta-small iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

.tm-founder-insta-featured {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tm-founder-insta-featured iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

@media (max-width: 991px) {
  .tm-founder-section {
    padding: 3.5rem 0;
  }

  .tm-founder-photo-col {
    padding-top: 0;
  }

  .tm-founder-insta-featured iframe {
    height: 480px;
  }
}

@media (max-width: 576px) {
  .tm-founder-section {
    padding: 2.5rem 0;
  }

  .tm-founder-insta-small iframe {
    height: 380px;
  }

  .tm-founder-insta-featured iframe {
    height: 420px;
  }

  .tm-karim-photo {
    width: 160px;
    height: 160px;
  }
}

.vs-btn.btn-white {
  color: var(--primary-color-blue);
  border: 1px solid var(--primary-color-blue);
}

.header-top-area {
  background-color: var(--primary-color-blue);
}

.vs-btn.btn-white:hover {
  border: 1px solid var(--title-color);
}

#footer input[type="email"] {
  border-radius: 30px;
}

.input-with-button button {
  border-radius: 30px;
}

.newsletter-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* .tm-sponsors-section .vs-btn.btn-white:hover {
    border: 1px solid white !important;
} */

/* ── Get Involved Cards (All Children Have a Right to Dream) ──── */
.tm-gi-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.tm-gi-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.2rem 1.8rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.tm-gi-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

.tm-gi-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}

.tm-gi-icon {
  height: 34px;
  width: 34px;
  object-fit: contain;
  display: block;
}

.tm-gi-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.tm-gi-text {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.tm-gi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  flex-shrink: 0;
  align-self: flex-end;
}

.tm-gi-card:hover .tm-gi-arrow {
  background: currentColor !important;
}

.tm-gi-card:hover .tm-gi-arrow i {
  color: #fff !important;
}

/* ── Global Section Spacing Normalisation ─────────────────────── */
section.space,
.space {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.tm-aad-badge {
  margin-bottom: 0.6rem;
}

.tm-section-header {
  margin-bottom: 3rem;
}

.tm-aad-badge+.tm-aad-title,
.tm-aad-badge+h2 {
  margin-top: 0.6rem !important;
}

.tm-aad-title+.tm-aad-sub,
h2+.tm-aad-sub {
  margin-top: 0.5rem !important;
}

.classes-section .tm-aad-title,
.classes-section .tm-aad-sub {
  text-align: center;
}

@media (max-width: 991px) {
  .tm-gi-card {
    padding: 1.8rem 1.5rem 1.5rem;
  }

  section.space,
  .space {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 576px) {
  .tm-gi-card {
    padding: 1.5rem 1.2rem 1.2rem;
  }

  .tm-gi-icon-wrap {
    width: 58px;
    height: 58px;
  }

  .tm-gi-icon {
    height: 28px;
    width: 28px;
  }

  section.space,
  .space {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.tm-faq-question:hover .tm-faq-icon {
  color: white !important;
}

.divider {
  color: white;
}

.header-links ul li:before {
  content: none !important;
}

/* ── Header Alignment & Spacing ──────────────────────────────── */

/* Top bar — contact items: icon + text sit on one baseline */
.header-top-area .header-links ul {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-top-area .header-links ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-right: none;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Contact row: remove any inherited divider so only '-' is shown */
.header-top-area .col-auto:first-child .header-links ul li {
  border-right: none !important;
}

.header-top-area .tm-top-contact-list li::before,
.header-top-area .col-auto:first-child .header-links ul li::after {
  content: none !important;
  display: none !important;
}

.header-links ul li {
  margin: 0;
}

.header-top-area .tm-top-contact-list {
  gap: 0;
}

.header-top-area .tm-top-contact-list li {
  padding: 0;
}

.header-top-area .tm-top-contact-list .tm-contact-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px 0px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  line-height: 1;
  gap: 0;
}

.header-top-area .header-links ul li:last-child {
  border-right: none;
  padding: 0;
}

.header-top-area .header-links ul li:first-child {
  padding: 0;
}

/* Top bar — social icons: uniform size, tight gap, no border */
.header-top-area .col-auto:last-child .header-links ul li {
  padding: 0 9px;
  border-right: none;
}

.header-top-area .col-auto:last-child .header-links ul li:last-child {
  padding-right: 0;
}

.header-top-area .bi {
  font-size: 17px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.header-top-area .header-links ul li a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  transition: color 0.2s;
}

.header-top-area .header-links ul li a:hover {
  color: #fff;
}

/* Top bar — inline SVG icons: vertical centering */
.header-top-area .header-links ul li svg {
  flex-shrink: 0;
  display: block;
}

/* Main nav bar — consistent height & vertical centering */
.header-menu-area .row {
  min-height: 68px;
}

.header-menu-area .col-auto {
  display: flex;
  align-items: center;
}

/* Nav links: even horizontal padding */
.main-menu>ul>li {
  padding: 22px 12px !important;
}

.main-menu>ul>li>a {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

/* CTA buttons in nav: consistent gap */
.header-buttons-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-button {
  display: flex;
  align-items: center;
}

/* Logo vertical centering */
.header-logo {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .header-top-area .header-links ul li {
    padding: 0 10px;
    font-size: 12px;
  }
}

.coh-benefit-card {
  padding: 26px 10px;
}

#journey.event-section {
  padding: 5rem 0;
}

#founder-story .vs-btn {
  max-width: 200px;
  margin-top: 20px;
}

.karim-pic img {
  height: 370px;
}

/* #purpose-principles {
  background-color: white !important;
} */

.wish-radio {

  min-height: 43px;
  min-width: 91px;
  max-width: 200px;
}

textarea.form-control {
  min-height: 50px;
}