:root {
  --navy: #0D2B45;
  --teal: #1B7A8A;
  --teal-light: #E6F4F6;
  --sky: #C8E8EE;
  --warm-white: #F7FAFC;
  --slate: #3D5166;
  --text: #1A2733;
  --muted: #5E7589;
  --accent: #0E9BB5;
  --border: #D0E8EE;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

.dt-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.dt-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.dt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13, 43, 69, 0.55) 0%, rgba(13, 43, 69, 0.92) 75%);
}

.dt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 64px 48px 56px;
}

.dt-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(14, 155, 181, 0.45);
  border-radius: 40px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.dt-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.dt-hero__title span {
  color: var(--accent);
}

.dt-hero__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
}

.dt-hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ── LAYOUT SHELL ──────────────────────────────────────────── */
.dt-page {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── SECTION HEADER ────────────────────────────────────────── */
.dt-section {
  margin-top: 72px;
}

.dt-section__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.dt-section__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.dt-section__title {
  color: var(--navy);
  margin-bottom: 16px;
}

.dt-section__body {
  max-width: 780px;
}

/* ── ABOUT TWO-COL ─────────────────────────────────────────── */
.dt-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.dt-about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dt-about-card__img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.dt-about-card__body {
  padding: 24px;
}

.dt-about-card__tag {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.dt-about-card__title {
  color: var(--navy);
  margin-bottom: 10px;
}



/* ── CURRICULUM BAND ───────────────────────────────────────── */
.dt-curriculum {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dt-curriculum::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 155, 181, 0.12);
}

.dt-curriculum__label {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.dt-curriculum__title {
  margin-bottom: 14px;
  color: #ffffff;
}

.dt-curriculum__text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin-bottom: 28px;
}

.dt-curriculum__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dt-curriculum__pill {
  background: rgba(14, 155, 181, 0.18);
  border: 1px solid rgba(14, 155, 181, 0.35);
  color: var(--sky);
  border-radius: 40px;
  padding: 6px 16px;
  font-weight: 500;
  font-size: 14px;
}

/* ── LAB GRID ──────────────────────────────────────────────── */
.dt-lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.dt-lab-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.dt-lab-card:hover {
  box-shadow: 0 8px 28px rgba(13, 43, 69, 0.10);
}

.dt-lab-card__img {
  width: 100%;
  height: 248px;
  object-fit: cover;
}

.dt-lab-card__body {
  padding: 18px 20px;
}

.dt-lab-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.dt-lab-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dt-lab-card__name {
  font-weight: 600;
  color: var(--navy);
}

/* ── CLINICAL SECTION ──────────────────────────────────────── */
.dt-clinical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 72px;
}

.dt-clinical__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.dt-clinical__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.dt-clinical__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
}

.dt-clinical__badge span {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
}

.dt-clinical__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.dt-clinical__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
}

.dt-clinical__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── CAREER GRID ───────────────────────────────────────────── */
.dt-career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.dt-career-card {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}

.dt-career-card__icon {
  font-size: 42px;
  margin-bottom: 10px;
}

.dt-career-card__title {
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ── HIGHER EDU ────────────────────────────────────────────── */
.dt-edu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.dt-edu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.dt-edu-item__num {
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.dt-edu-item__text {
  font-weight: 500;
  color: var(--slate);
}

/* ── VISION & MISSION ──────────────────────────────────────── */
.dt-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.dt-vm-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.dt-vm-card--vision {
  background: var(--navy);
  color: #fff;
}

.dt-vm-card--mission {
  background: var(--teal);
  color: #fff;
}

.dt-vm-card__label {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 10px;
  opacity: 0.90;
}

.dt-vm-card__title {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

.dt-vm-card__text {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.88;
  color: #ffffff;
}

/* ── INDUSTRY BAND ─────────────────────────────────────────── */
.dt-industry {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dt-industry__img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.dt-industry__section-label {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.dt-industry__title {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 14px;
}

.dt-industry__text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.dt-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 24px;
  margin-top: 80px;
}

.dt-footer strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .dt-hero__content {
    padding: 40px 24px 44px;
  }

  .dt-about-grid,
  .dt-clinical,
  .dt-vm-grid,
  .dt-industry {
    grid-template-columns: 1fr;
  }

  .dt-lab-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dt-career-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dt-edu-list {
    grid-template-columns: 1fr;
  }

  .dt-curriculum {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {

  .dt-lab-grid,
  .dt-career-grid {
    grid-template-columns: 1fr;
  }
}