:root {
  --pages-index-tone-01: transparent;
  --pages-index-border-01: #209ba8;
}
/* Medical Time Homepage Styles */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  padding: 2rem 2rem;
  overflow: hidden;
  background: var(--app);
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(59, 187, 201, 0.09), rgba(69, 221, 193, 0.13));
  border: 1.5px solid rgba(59, 187, 201, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 2px 12px rgba(59, 187, 201, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.hero-badge svg {
  stroke: var(--primary-teal);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.title-main {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--pages-index-tone-01);
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -2px;
}

.title-sub {
  font-size: var(--fs-subtitle-lg);
  font-weight: 500;
  color: var(--font-four);
  line-height: 1.4;
}

.hero-description {
  font-size: var(--fs-4xl);
  color: var(--font-four);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;
}

/* Hero Cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-card {
  background: var(--bg-white);
  border: 1px solid rgba(59, 187, 201, 0.13);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(59, 187, 201, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3bbbc9, #45ddc1);
  border-radius: 20px 20px 0 0;
  opacity: 0.55;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.card-icon.infusion {
  background: var(--gradient-primary);
  box-shadow: 0 4px 12px var(--shadow-primary-md);
}

.card-icon.care {
  background: var(--gradient-pink);
  box-shadow: 0 4px 12px var(--shadow-pink);
}

.card-icon.surgery {
  background: var(--gradient-orange);
  box-shadow: 0 4px 12px var(--shadow-orange);
}

.card-icon.diagnostic {
  background: var(--gradient-purple);
  box-shadow: 0 4px 12px var(--shadow-purple);
}

.card-icon svg {
  stroke: var(--text-white);
}

.hero-card h2 {
  font-weight: 700;
  color: var(--font);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-size: var(--fs-6xl);
}

.hero-card p {
  color: var(--font-four);
  line-height: 1.6;
  margin: 0;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}


.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: var(--fs-md);
  font-weight: 600;
  text-decoration: none;
  transition: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px var(--shadow-primary-md);
}

.btn-secondary {
  background: var(--pages-index-tone-01);
  border: 2px solid var(--pages-index-border-01);
  color: var(--pages-index-border-01);
}

/* Hero Stats */
.hero-stats-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 3rem;
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(59, 187, 201, 0.07), rgba(69, 221, 193, 0.10));
  border-radius: 20px;
  border: 1px solid rgba(59, 187, 201, 0.22);
  box-shadow: 0 8px 32px rgba(59, 187, 201, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: var(--fs-title);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--pages-index-tone-01);
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--font-four);
  text-align: center;
  font-weight: 500;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, var(--pages-index-tone-01), var(--primary-teal), var(--pages-index-tone-01));
}

/* Splashes Background */
.splashes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.6;
}

.splashes .splash:first-child {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--loader-in);
  border-radius: 50%;
  top: -300px;
  left: -300px;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.splashes .splash:nth-child(2) {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--pag-active);
  border-radius: 50%;
  bottom: -300px;
  right: -300px;
  opacity: 0.3;
  animation: float 10s ease-in-out infinite reverse;
}

.splashes .splash:last-child {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--link-active);
  border-radius: 50%;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
  opacity: 0.2;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive */
@media (max-width: 1366px) {
  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 100px;
    height: 2px;
  }

  .title-main {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: var(--fs-xs);
    padding: 0.4rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: var(--fs-xs);
  }
}

/* Services Section */
.services-section {
  padding: 4.5rem 2rem 4rem 2rem;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  background: linear-gradient(180deg, var(--app), var(--border-primary-alpha));
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(135deg, rgba(59, 187, 201, 0.09), rgba(69, 221, 193, 0.13));
  border: 1.5px solid rgba(59, 187, 201, 0.3);
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 10px rgba(59, 187, 201, 0.13);
}

.section-title {
  font-size: var(--fs-display);
  font-weight: 800;
  color: var(--font);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #3bbbc9, #45ddc1);
  border-radius: 3px;
  margin: 0.85rem auto 0;
}

.section-subtitle {
  font-size: var(--fs-3xl);
  color: var(--font-four);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: none;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(59, 187, 201, 0.13);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3bbbc9, #45ddc1);
  border-radius: 3px 3px 0 0;
  opacity: 0.4;
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(59, 187, 201, 0.06) 0%, rgba(69, 221, 193, 0.10) 100%);
  border: 1.5px solid rgba(59, 187, 201, 0.32);
  box-shadow: 0 8px 36px rgba(59, 187, 201, 0.14), 0 2px 6px rgba(59, 187, 201, 0.08);
}

.service-card.featured::before {
  opacity: 1;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(59, 187, 201, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon svg {
  stroke: var(--text-white);
}

.service-badge {
  background: var(--gradient-orange);
  color: var(--text-white);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px var(--shadow-orange);
}

.service-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--font);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--font-four);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--fs-sm);
  color: var(--font-four);
  line-height: 1.5;
}

.service-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #3bbbc9, #45ddc1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 2px 8px rgba(59, 187, 201, 0.4);
  line-height: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-teal);
  font-weight: 600;
  font-size: var(--fs-lg);
  text-decoration: none;
  transition: none;
  margin-top: auto;
}

.service-link svg {
  transition: none;
}

/* Responsive Services */
@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

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

/* Content sections */
.medical-time-home .content-section {
  position: relative;
}

.medical-time-home .content-section::after {
  background: linear-gradient(
    90deg,
    var(--pages-index-tone-01),
    var(--bg-primary-alpha-10) 50%,
    var(--pages-index-tone-01)
  );
}

/* Medical themed icons */
.medical-time-home .content-text p {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Content section aside */
.medical-time-home .content-text aside {
  background: var(--gradient-aside);
  border-radius: 10px;
  padding: 1rem 1.25rem 1rem 1.5rem;
  position: relative;
  margin: 0.25rem 0;
  overflow: hidden;
}

.medical-time-home .content-text aside::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-aside-before);
  border-radius: 4px 0 0 4px;
}

.medical-time-home .content-text aside h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--primary-teal);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.medical-time-home .content-text aside h3 svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  stroke: var(--primary-teal);
}

.medical-time-home .content-text aside p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  opacity: 0.88;
}

/* ========== Why Medical Time - CSS-only Slider Section ========== */
.why-mt-section {
  padding: 6rem 2rem;
  position: relative;
}

.why-mt-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.why-mt-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-mt-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 743 / 500;
}

.why-mt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px var(--shadow-primary), 0 4px 12px var(--hbs);
  display: block;
}

.why-mt-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-mt-header h2 {
  color: var(--primary-teal);
  font-size: var(--fs-title);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.why-mt-intro {
  color: var(--text-primary);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

/* Slider
   --why-slot = time per slide (incl. fade). Change this one value to control speed.
   e.g. 1.6s = 1s visible + 0.3s fade in/out
        2.6s = 2s visible + 0.3s fade in/out
        3.6s = 3s visible + 0.3s fade in/out */
.why-mt-slider {
  --why-slot: 2.2s;
  position: relative;
}

.why-mt-radio {
  display: none;
}

.why-mt-track {
  display: grid;
  overflow: hidden;
}

.why-mt-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(59, 187, 201, 0.06), rgba(69, 221, 193, 0.1));
  border: 1px solid rgba(59, 187, 201, 0.18);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  animation: why-slide calc(var(--why-slot) * 7) ease infinite;
}

.why-mt-slide:nth-child(1) { animation-delay: calc(var(--why-slot) * 0); }
.why-mt-slide:nth-child(2) { animation-delay: calc(var(--why-slot) * 1); }
.why-mt-slide:nth-child(3) { animation-delay: calc(var(--why-slot) * 2); }
.why-mt-slide:nth-child(4) { animation-delay: calc(var(--why-slot) * 3); }
.why-mt-slide:nth-child(5) { animation-delay: calc(var(--why-slot) * 4); }
.why-mt-slide:nth-child(6) { animation-delay: calc(var(--why-slot) * 5); }
.why-mt-slide:nth-child(7) { animation-delay: calc(var(--why-slot) * 6); }

/*  slot = 1.6s / 11.2s = 14.29%
    fade-in  = 0.3s / 11.2s = 2.68%
    hold end = 1.3s / 11.2s = 11.61%
    fade-out = 1.6s / 11.2s = 14.29% */
@keyframes why-slide {
  0%      { opacity: 0; transform: translateY(8px); }
  2.68%   { opacity: 1; transform: translateY(0); }
  11.61%  { opacity: 1; transform: translateY(0); }
  14.29%  { opacity: 0; transform: translateY(8px); }
  100%    { opacity: 0; transform: translateY(8px); }
}

.why-mt-slide-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  box-shadow: 0 4px 14px var(--shadow-primary-md);
}

.why-mt-slide-icon svg {
  stroke: #fff;
  width: 22px;
  height: 22px;
}

.why-mt-slide p {
  color: var(--text-dark);
  font-size: var(--fs-lg);
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
  padding-top: 0.5rem;
}

/* Stop auto-play when user interacts with dots */
.why-mt-radio:checked ~ .why-mt-track .why-mt-slide {
  animation: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Radio-driven slide visibility */
.why-mt-radio:nth-of-type(1):checked ~ .why-mt-track .why-mt-slide:nth-child(1),
.why-mt-radio:nth-of-type(2):checked ~ .why-mt-track .why-mt-slide:nth-child(2),
.why-mt-radio:nth-of-type(3):checked ~ .why-mt-track .why-mt-slide:nth-child(3),
.why-mt-radio:nth-of-type(4):checked ~ .why-mt-track .why-mt-slide:nth-child(4),
.why-mt-radio:nth-of-type(5):checked ~ .why-mt-track .why-mt-slide:nth-child(5),
.why-mt-radio:nth-of-type(6):checked ~ .why-mt-track .why-mt-slide:nth-child(6),
.why-mt-radio:nth-of-type(7):checked ~ .why-mt-track .why-mt-slide:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
}

/* Dot indicators */
.why-mt-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.why-mt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59, 187, 201, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-mt-dot:hover {
  background: rgba(59, 187, 201, 0.5);
  transform: scale(1.2);
}

/* Dot auto-cycle animation synced with slides */
.why-mt-dot {
  animation: why-dot calc(var(--why-slot) * 7) ease infinite;
}

.why-mt-dot:nth-child(1) { animation-delay: calc(var(--why-slot) * 0); }
.why-mt-dot:nth-child(2) { animation-delay: calc(var(--why-slot) * 1); }
.why-mt-dot:nth-child(3) { animation-delay: calc(var(--why-slot) * 2); }
.why-mt-dot:nth-child(4) { animation-delay: calc(var(--why-slot) * 3); }
.why-mt-dot:nth-child(5) { animation-delay: calc(var(--why-slot) * 4); }
.why-mt-dot:nth-child(6) { animation-delay: calc(var(--why-slot) * 5); }
.why-mt-dot:nth-child(7) { animation-delay: calc(var(--why-slot) * 6); }

@keyframes why-dot {
  0%      { background: rgba(59,187,201,.2); box-shadow: none; transform: scale(1); }
  2.68%   { background: var(--gradient-primary); box-shadow: 0 0 8px var(--shadow-primary-md); transform: scale(1.3); }
  11.61%  { background: var(--gradient-primary); box-shadow: 0 0 8px var(--shadow-primary-md); transform: scale(1.3); }
  14.29%  { background: rgba(59,187,201,.2); box-shadow: none; transform: scale(1); }
  100%    { background: rgba(59,187,201,.2); box-shadow: none; transform: scale(1); }
}

/* Stop dot animation when user clicks */
.why-mt-radio:checked ~ .why-mt-dots .why-mt-dot {
  animation: none;
}

/* Active dot states */
.why-mt-radio:nth-of-type(1):checked ~ .why-mt-dots .why-mt-dot:nth-child(1),
.why-mt-radio:nth-of-type(2):checked ~ .why-mt-dots .why-mt-dot:nth-child(2),
.why-mt-radio:nth-of-type(3):checked ~ .why-mt-dots .why-mt-dot:nth-child(3),
.why-mt-radio:nth-of-type(4):checked ~ .why-mt-dots .why-mt-dot:nth-child(4),
.why-mt-radio:nth-of-type(5):checked ~ .why-mt-dots .why-mt-dot:nth-child(5),
.why-mt-radio:nth-of-type(6):checked ~ .why-mt-dots .why-mt-dot:nth-child(6),
.why-mt-radio:nth-of-type(7):checked ~ .why-mt-dots .why-mt-dot:nth-child(7) {
  background: var(--gradient-primary);
  box-shadow: 0 0 8px var(--shadow-primary-md);
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-mt-section {
    padding: 4rem 1rem;
  }

  .why-mt-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-mt-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .why-mt-section {
    padding: 3rem 1rem;
  }

  .why-mt-slide {
    padding: 1.25rem 1.25rem;
  }

}

/* Smooth scroll behavior */
.medical-time-home {
  scroll-behavior: smooth;
}

/* Section transitions */
.medical-time-home .content-section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.medical-time-home .content-section:nth-child(1) { animation-delay: 0.1s; }
.medical-time-home .content-section:nth-child(2) { animation-delay: 0.2s; }
.medical-time-home .content-section:nth-child(3) { animation-delay: 0.3s; }

.medical-time-home .content-section:last-child {
  padding-bottom: 4em;
}

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

/* Print styles */
@media print {
  .medical-time-home .content-image img {
    break-inside: avoid;
  }
}
