/* =====================================================================
   Dubrajpur Medical College & Manimahesh Hospital (DMCMH)
   Top Bar - External Stylesheet
   Brand palette pulled from the official logo
   ===================================================================== */

/* ---- Brand color tokens (change these to re-theme everything) ---- */
:root {
  --dmcmh-green:        #39a043;  /* bright leaf green  */
  --dmcmh-green-dark:   #0e5e2c;  /* dark forest green  */
  --dmcmh-gray:         #83897b;  /* muted stone gray   */
  --dmcmh-dark:         #231f20;  /* near black         */

  --dmcmh-white:        #ffffff;
  --dmcmh-topbar-bg:    var(--dmcmh-green-dark);
  --dmcmh-topbar-text:  #eaf5ec;
  --dmcmh-accent:       var(--dmcmh-green);

  --dmcmh-font:         "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --dmcmh-radius:       6px;
  --dmcmh-transition:   0.25s ease;
}

/* ---- Reset just for the top bar scope ---- */
.dmcmh-topbar *,
.dmcmh-topbar *::before,
.dmcmh-topbar *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- Bar shell ---- */
.dmcmh-topbar {
  background: var(--dmcmh-topbar-bg);
  background: linear-gradient(90deg,
              var(--dmcmh-green-dark) 0%,
              var(--dmcmh-dark) 100%);
  color: var(--dmcmh-topbar-text);
  font-family: var(--dmcmh-font);
  font-size: 14px;
  border-bottom: 3px solid var(--dmcmh-green);
  width: 100%;
}

.dmcmh-topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Left: contact info ---- */
.dmcmh-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.dmcmh-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dmcmh-contact__link {
  color: var(--dmcmh-topbar-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--dmcmh-transition);
  line-height: 1;
}

.dmcmh-contact__link:hover,
.dmcmh-contact__link:focus-visible {
  color: var(--dmcmh-green);
  outline: none;
}

/* circular icon badge */
.dmcmh-contact__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.18);
  color: var(--dmcmh-green);
  font-size: 13px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition);
}

.dmcmh-contact__link:hover .dmcmh-contact__icon,
.dmcmh-contact__link:focus-visible .dmcmh-contact__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
}

.dmcmh-contact__label {
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ---- Right: follow us + social icons ---- */
.dmcmh-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dmcmh-social__label {
  font-weight: 600;
  color: var(--dmcmh-gray);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.dmcmh-social__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.dmcmh-social__link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--dmcmh-radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--dmcmh-topbar-text);
  font-size: 14px;
  text-decoration: none;
  transition: transform var(--dmcmh-transition),
              background var(--dmcmh-transition),
              color var(--dmcmh-transition);
}

.dmcmh-social__link:hover,
.dmcmh-social__link:focus-visible {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: translateY(-2px);
  outline: none;
}

/* keyboard focus ring for accessibility */
.dmcmh-contact__link:focus-visible,
.dmcmh-social__link:focus-visible {
  box-shadow: 0 0 0 2px var(--dmcmh-green-dark),
              0 0 0 4px var(--dmcmh-green);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .dmcmh-topbar__inner {
    justify-content: center;
    text-align: center;
  }
  .dmcmh-contact {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .dmcmh-topbar {
    font-size: 13px;
  }
  .dmcmh-contact__label--long {
    display: none; /* hide long email text, keep icon on very small screens */
  }
}

/* ---- Scoped reset ---- */
.dmcmh-header *,
.dmcmh-header *::before,
.dmcmh-header *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Header shell ---- */
.dmcmh-header {
  background: var(--dmcmh-white);
  font-family: var(--dmcmh-font);
  box-shadow: 0 2px 10px rgba(35, 31, 32, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
 
.dmcmh-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
 
/* ---- Logo ---- */
.dmcmh-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
 
.dmcmh-logo__img {
  height: 60px;
  width: auto;
  display: block;
}
 
/* ---- Navigation ---- */
.dmcmh-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
 
.dmcmh-nav__link {
  display: inline-block;
  padding: 10px 14px;
  color: var(--dmcmh-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--dmcmh-radius);
  position: relative;
  transition: color var(--dmcmh-transition),
              background var(--dmcmh-transition);
}
 
/* animated underline */
.dmcmh-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--dmcmh-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
 
.dmcmh-nav__link:hover,
.dmcmh-nav__link:focus-visible {
  color: var(--dmcmh-green-dark);
  outline: none;
}
 
.dmcmh-nav__link:hover::after,
.dmcmh-nav__link:focus-visible::after {
  transform: scaleX(1);
}
 
/* active page */
.dmcmh-nav__link--active {
  color: var(--dmcmh-green-dark);
}
.dmcmh-nav__link--active::after {
  transform: scaleX(1);
}
 
/* Contact = call-to-action button */
.dmcmh-nav__link--cta {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  margin-left: 6px;
}
.dmcmh-nav__link--cta::after { display: none; }
.dmcmh-nav__link--cta:hover,
.dmcmh-nav__link--cta:focus-visible {
  background: var(--dmcmh-green-dark);
  color: var(--dmcmh-white);
}
 
/* ---- Hamburger ---- */
.dmcmh-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: var(--dmcmh-radius);
  cursor: pointer;
}
 
.dmcmh-nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dmcmh-green-dark);
  border-radius: 2px;
  transition: transform var(--dmcmh-transition),
              opacity var(--dmcmh-transition);
}
 
/* hamburger -> X when active */
.dmcmh-nav-toggle--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.dmcmh-nav-toggle--active span:nth-child(2) {
  opacity: 0;
}
.dmcmh-nav-toggle--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
 
/* ---- Responsive nav ---- */
@media (max-width: 992px) {
  .dmcmh-nav-toggle {
    display: flex;
  }
 
  .dmcmh-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dmcmh-white);
    box-shadow: 0 12px 20px rgba(35, 31, 32, 0.12);
    border-top: 3px solid var(--dmcmh-green);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
 
  .dmcmh-nav--open {
    max-height: 620px;
  }
 
  .dmcmh-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
  }
 
  .dmcmh-nav__link {
    display: block;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(131, 137, 123, 0.2);
    border-radius: 0;
  }
 
  .dmcmh-nav__link::after { display: none; }
 
  .dmcmh-nav__item:last-child .dmcmh-nav__link {
    border-bottom: none;
  }
 
  .dmcmh-nav__link--cta {
    margin-top: 10px;
    text-align: center;
    border-radius: var(--dmcmh-radius);
  }
}
 
@media (max-width: 480px) {
  .dmcmh-logo__img {
    height: 48px;
  }
}

.dmcmh-slider *,
.dmcmh-slider *::before,
.dmcmh-slider *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
.dmcmh-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: var(--dmcmh-font);
}
 
/* sliding track */
.dmcmh-slider__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
 
/* each slide */
.dmcmh-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
 
/* dark green gradient overlay for readability */
.dmcmh-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
              rgba(14, 94, 44, 0.88) 0%,
              rgba(35, 31, 32, 0.55) 60%,
              rgba(35, 31, 32, 0.25) 100%);
}
 
.dmcmh-slide__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px;
  color: var(--dmcmh-white);
}
 
.dmcmh-slide__eyebrow {
  display: inline-block;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
 
.dmcmh-slide__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 16px;
}
 
.dmcmh-slide__text {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 30px;
  color: #eaf5ec;
}
 
/* ---- Slide buttons ---- */
.dmcmh-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
 
.dmcmh-btn {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  z-index: 1;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              color var(--dmcmh-transition);
}
 
/* sweep effect that fills from left on hover */
.dmcmh-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
 
/* primary = solid green, sweeps to dark green */
.dmcmh-btn--primary {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  box-shadow: 0 6px 18px rgba(57, 160, 67, 0.4);
}
.dmcmh-btn--primary::before {
  background: var(--dmcmh-green-dark);
}
.dmcmh-btn--primary:hover,
.dmcmh-btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(14, 94, 44, 0.5);
  outline: none;
}
.dmcmh-btn--primary:hover::before,
.dmcmh-btn--primary:focus-visible::before {
  transform: scaleX(1);
}
 
/* outline = transparent, sweeps to white fill with dark text */
.dmcmh-btn--outline {
  background: transparent;
  color: var(--dmcmh-white);
  border: 2px solid var(--dmcmh-white);
}
.dmcmh-btn--outline::before {
  background: var(--dmcmh-white);
}
.dmcmh-btn--outline:hover,
.dmcmh-btn--outline:focus-visible {
  color: var(--dmcmh-green-dark);
  transform: translateY(-3px);
  outline: none;
}
.dmcmh-btn--outline:hover::before,
.dmcmh-btn--outline:focus-visible::before {
  transform: scaleX(1);
}
 
/* ---- Arrows ---- */
.dmcmh-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmcmh-white);
  background: rgba(35, 31, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.dmcmh-slider__arrow:hover,
.dmcmh-slider__arrow:focus-visible {
  background: var(--dmcmh-green);
  outline: none;
}
.dmcmh-slider__arrow--prev { left: 20px; }
.dmcmh-slider__arrow--next { right: 20px; }
.dmcmh-slider__arrow--prev:hover { transform: translateY(-50%) scale(1.08); }
.dmcmh-slider__arrow--next:hover { transform: translateY(-50%) scale(1.08); }
 
/* ---- Dots ---- */
.dmcmh-slider__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dmcmh-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--dmcmh-transition),
              width var(--dmcmh-transition);
}
.dmcmh-slider__dot--active {
  background: var(--dmcmh-green);
  width: 30px;
  border-radius: 8px;
}
 
/* ---- Responsive ---- */
@media (max-width: 768px) {
  .dmcmh-slide { min-height: 460px; }
  .dmcmh-slider__arrow { width: 40px; height: 40px; }
  .dmcmh-slider__arrow--prev { left: 10px; }
  .dmcmh-slider__arrow--next { right: 10px; }
}
 
@media (max-width: 480px) {
  .dmcmh-slide { min-height: 420px; }
  .dmcmh-slide__actions { gap: 12px; }
  .dmcmh-btn { padding: 12px 22px; font-size: 14px; }
}



/* ---- Scoped reset ---- */
.dmcmh-news *,
.dmcmh-news *::before,
.dmcmh-news *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Bar shell ---- */
.dmcmh-news {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--dmcmh-white);
  border-top: 1px solid rgba(131, 137, 123, 0.25);
  border-bottom: 1px solid rgba(131, 137, 123, 0.25);
  font-family: var(--dmcmh-font);
  overflow: hidden;
}
 
/* ---- Fixed label ---- */
.dmcmh-news__label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  background: var(--dmcmh-green-dark);
  padding: 0 22px;
  position: relative;
  z-index: 2;
}
 
/* little arrow tail on the label */
.dmcmh-news__label::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 14px solid var(--dmcmh-green-dark);
}
 
.dmcmh-news__badge {
  color: var(--dmcmh-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-transform: uppercase;
}
 
/* ---- Marquee viewport ---- */
.dmcmh-news__marquee {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
 
/* fade edges */
.dmcmh-news__marquee::before,
.dmcmh-news__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
.dmcmh-news__marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--dmcmh-white), rgba(255,255,255,0));
}
.dmcmh-news__marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--dmcmh-white), rgba(255,255,255,0));
}
 
/* ---- Scrolling track (two identical groups) ---- */
.dmcmh-news__track {
  display: flex;
  flex: 0 0 auto;          /* do NOT shrink - keep full content width */
  width: max-content;
  min-width: max-content;
  /* movement is driven by js/main.js */
}
 
/* pause on hover */
.dmcmh-news:hover .dmcmh-news__track {
  animation-play-state: paused;
}
 
.dmcmh-news__group {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 0 0 auto;
  min-width: max-content;
}
 
.dmcmh-news__item {
  display: flex;
  align-items: center;
  padding: 14px 0;
}
 
/* separator dot between items */
.dmcmh-news__item::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dmcmh-green);
  margin: 0 26px;
  flex: 0 0 auto;
}
 
.dmcmh-news__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dmcmh-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dmcmh-transition);
}
.dmcmh-news__link:hover,
.dmcmh-news__link:focus-visible {
  color: var(--dmcmh-green-dark);
  outline: none;
}
 
.dmcmh-news__date {
  background: rgba(57, 160, 67, 0.15);
  color: var(--dmcmh-green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
 
/* ---- Animation: right to left ---- */
@keyframes dmcmh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-news__track { animation: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 600px) {
  .dmcmh-news__badge { font-size: 12px; }
  .dmcmh-news__label { padding: 0 14px; }
  .dmcmh-news__link { font-size: 14px; }
  :root { --dmcmh-news-speed: 20s; }
}
 
 .dmcmh-principal *,
.dmcmh-principal *::before,
.dmcmh-principal *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-principal {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
 
/* soft brand shape in the background */
.dmcmh-principal::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.08);
}
 
.dmcmh-principal__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}
 
/* ---- Photo card ---- */
.dmcmh-principal__media {
  position: relative;
}
 
.dmcmh-principal__photo {
  position: relative;
  z-index: 2;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 31, 32, 0.18);
  border: 5px solid var(--dmcmh-white);
  aspect-ratio: 3 / 4;
  background: #dfe6db;
}
 
.dmcmh-principal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* green frame accent behind the photo */
.dmcmh-principal__media::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border-left: 5px solid var(--dmcmh-green);
  border-bottom: 5px solid var(--dmcmh-green);
  border-bottom-left-radius: var(--dmcmh-radius);
  z-index: 1;
}
 
/* ---- Animated background shapes ---- */
.dmcmh-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
 
/* morphing green blob behind the photo */
.dmcmh-shape--blob {
  top: -34px;
  right: -40px;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg,
              rgba(57, 160, 67, 0.35),
              rgba(14, 94, 44, 0.25));
  border-radius: 42% 58% 63% 37% / 43% 38% 62% 57%;
  animation: dmcmh-blob 9s ease-in-out infinite,
             dmcmh-float 6s ease-in-out infinite;
}
 
/* rotating dashed ring */
.dmcmh-shape--ring {
  bottom: -30px;
  right: -26px;
  width: 110px;
  height: 110px;
  border: 3px dashed rgba(57, 160, 67, 0.45);
  border-radius: 50%;
  animation: dmcmh-spin 18s linear infinite;
}
 
/* small pulsing dot */
.dmcmh-shape--dot {
  top: 40px;
  left: -26px;
  width: 20px;
  height: 20px;
  background: var(--dmcmh-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(57, 160, 67, 0.18);
  animation: dmcmh-pulse 3.5s ease-in-out infinite;
}
 
@keyframes dmcmh-blob {
  0%   { border-radius: 42% 58% 63% 37% / 43% 38% 62% 57%; }
  50%  { border-radius: 62% 38% 41% 59% / 56% 63% 37% 44%; }
  100% { border-radius: 42% 58% 63% 37% / 43% 38% 62% 57%; }
}
 
@keyframes dmcmh-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
 
@keyframes dmcmh-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
 
@keyframes dmcmh-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.7; }
}
 
/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-shape { animation: none !important; }
}
 
.dmcmh-principal__namecard {
  margin-top: 18px;
  background: var(--dmcmh-green-dark);
  color: var(--dmcmh-white);
  border-radius: var(--dmcmh-radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(14, 94, 44, 0.28);
}
 
.dmcmh-principal__name {
  display: block;
  font-size: 18px;
  font-weight: 800;
}
 
.dmcmh-principal__role {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #c9e6d1;
  letter-spacing: 0.4px;
  margin-top: 2px;
}
 
/* ---- Message body ---- */
.dmcmh-principal__body {
  position: relative;
}
 
.dmcmh-principal__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
 
.dmcmh-principal__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 22px;
  padding-bottom: 16px;
  position: relative;
}
 
/* green underline under the title */
.dmcmh-principal__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: var(--dmcmh-green);
}
 
/* decorative quote mark */
.dmcmh-principal__text {
  position: relative;
  padding-left: 4px;
}
.dmcmh-principal__text::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: -6px;
  font-size: 90px;
  line-height: 1;
  color: rgba(57, 160, 67, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  z-index: 0;
}
 
.dmcmh-principal__text p {
  position: relative;
  z-index: 1;
  color: #3d443b;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.dmcmh-principal__text p:last-child { margin-bottom: 0; }
 
/* ---- Signature ---- */
.dmcmh-principal__sign {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(131, 137, 123, 0.5);
}
.dmcmh-principal__signname {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--dmcmh-green-dark);
}
.dmcmh-principal__signrole {
  display: block;
  font-size: 13px;
  color: var(--dmcmh-gray);
  letter-spacing: 0.4px;
}
 
/* ---- Responsive ---- */
@media (max-width: 860px) {
  .dmcmh-principal__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .dmcmh-principal__media {
    max-width: 300px;
    margin: 0 auto;
  }
  .dmcmh-principal__body { text-align: left; }
}
 
@media (max-width: 480px) {
  .dmcmh-principal { padding: 50px 16px; }
  .dmcmh-principal__text p { font-size: 15px; }
}
 
/* ---- Scoped reset ---- */
.dmcmh-updates *,
.dmcmh-updates *::before,
.dmcmh-updates *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-updates {
  position: relative;
  font-family: var(--dmcmh-font);
  padding: 60px 20px;
  background: #f4f7f3;          /* fallback colour behind the image */
  overflow: hidden;
}
 
/* background image layer (image path is set inline in the HTML) */
.dmcmh-updates__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;        /* fill the whole section */
  background-position: center;   /* keep it centred        */
  background-repeat: no-repeat;  /* no tiling              */
}
 
/* light overlay so the white cards stay readable */
.dmcmh-updates__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 247, 243, 0.90);
}
 
/* keep content above the background */
.dmcmh-updates__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
 
/* ---- Column card ---- */
.dmcmh-updates__col {
  background: var(--dmcmh-white);
  border-radius: var(--dmcmh-radius);
  box-shadow: 0 12px 30px rgba(35, 31, 32, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
 
/* ---- Column header ---- */
.dmcmh-updates__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--dmcmh-green-dark);
  color: var(--dmcmh-white);
}
/* right column uses bright green header to differentiate */
.dmcmh-updates__col--news .dmcmh-updates__head {
  background: var(--dmcmh-green);
}
 
.dmcmh-updates__headicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
 
.dmcmh-updates__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex: 1 1 auto;
}
 
.dmcmh-updates__all {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dmcmh-white);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  transition: background var(--dmcmh-transition), color var(--dmcmh-transition);
  white-space: nowrap;
}
.dmcmh-updates__all:hover,
.dmcmh-updates__all:focus-visible {
  background: var(--dmcmh-white);
  color: var(--dmcmh-green-dark);
  outline: none;
}
 
/* ---- Scrolling viewport ---- */
.dmcmh-updates__viewport {
  position: relative;
  height: 300px;          /* visible height of the scroller */
  overflow: hidden;
}
 
/* soft fade at top and bottom */
.dmcmh-updates__viewport::before,
.dmcmh-updates__viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 2;
  pointer-events: none;
}
.dmcmh-updates__viewport::before {
  top: 0;
  background: linear-gradient(180deg, var(--dmcmh-white), rgba(255,255,255,0));
}
.dmcmh-updates__viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--dmcmh-white), rgba(255,255,255,0));
}
 
/* the moving track (two identical groups stacked vertically) */
.dmcmh-updates__track {
  will-change: transform;
}
 
.dmcmh-updates__list {
  list-style: none;
}
 
/* ---- Single notice / news row ---- */
.dmcmh-updates__item {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(131, 137, 123, 0.18);
  transition: background var(--dmcmh-transition);
}
.dmcmh-updates__item:hover {
  background: rgba(57, 160, 67, 0.07);
}
 
.dmcmh-updates__date {
  display: inline-block;
  background: rgba(57, 160, 67, 0.14);
  color: var(--dmcmh-green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 3px 9px;
  border-radius: 14px;
  margin-bottom: 7px;
}
 
.dmcmh-updates__text {
  display: block;
  color: var(--dmcmh-dark);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-left: 16px;
  transition: color var(--dmcmh-transition);
}
/* little green marker */
.dmcmh-updates__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dmcmh-green);
}
.dmcmh-updates__text:hover,
.dmcmh-updates__text:focus-visible {
  color: var(--dmcmh-green-dark);
  outline: none;
}
 
/* ---- Responsive ---- */
@media (max-width: 820px) {
  .dmcmh-updates__inner {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 480px) {
  .dmcmh-updates { padding: 44px 16px; }
  .dmcmh-updates__viewport { height: 260px; }
  .dmcmh-updates__text { font-size: 14px; }
}


 
/* ---- Scoped reset ---- */
.dmcmh-why *,
.dmcmh-why *::before,
.dmcmh-why *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-why {
  background: var(--dmcmh-white);
  font-family: var(--dmcmh-font);
  padding: 76px 20px;
}
 
.dmcmh-why__inner {
  max-width: 1160px;
  margin: 0 auto;
}
 
/* ---- Heading ---- */
.dmcmh-why__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
 
.dmcmh-why__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-why__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
 
.dmcmh-why__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
 
.dmcmh-why__subtitle {
  color: #5c6359;
  font-size: 16px;
  line-height: 1.7;
}
 
/* ---- Cards grid ---- */
.dmcmh-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
 
/* ---- Single card ---- */
.dmcmh-why__card {
  position: relative;
  background: var(--dmcmh-white);
  border: 1px solid rgba(131, 137, 123, 0.22);
  border-radius: var(--dmcmh-radius);
  padding: 34px 28px;
  overflow: hidden;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
}
 
/* green bar that grows on hover */
.dmcmh-why__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--dmcmh-green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dmcmh-transition);
}
 
.dmcmh-why__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 94, 44, 0.14);
  border-color: transparent;
}
.dmcmh-why__card:hover::before {
  transform: scaleY(1);
}
 
/* ---- Icon badge ---- */
.dmcmh-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(57, 160, 67, 0.12);
  color: var(--dmcmh-green-dark);
  margin-bottom: 20px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.dmcmh-why__card:hover .dmcmh-why__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: rotate(-6deg);
}
 
.dmcmh-why__cardtitle {
  font-size: 19px;
  font-weight: 700;
  color: var(--dmcmh-dark);
  margin-bottom: 10px;
}
 
.dmcmh-why__cardtext {
  color: #5c6359;
  font-size: 15px;
  line-height: 1.65;
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dmcmh-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 560px) {
  .dmcmh-why { padding: 56px 16px; }
  .dmcmh-why__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
 

/* ---- Scoped reset ---- */
.dmcmh-stats *,
.dmcmh-stats *::before,
.dmcmh-stats *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-stats {
  font-family: var(--dmcmh-font);
  padding: 64px 20px;
  background: linear-gradient(135deg,
              var(--dmcmh-green-dark) 0%,
              #0a4a22 55%,
              var(--dmcmh-dark) 100%);
  position: relative;
  overflow: hidden;
}
 
/* faint decorative circles */
.dmcmh-stats::before,
.dmcmh-stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.14);
  pointer-events: none;
}
.dmcmh-stats::before { width: 240px; height: 240px; top: -90px; left: -60px; }
.dmcmh-stats::after  { width: 300px; height: 300px; bottom: -120px; right: -80px; }
 
.dmcmh-stats__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
 
/* ---- Single stat ---- */
.dmcmh-stat {
  text-align: center;
  color: var(--dmcmh-white);
  padding: 20px 10px;
  position: relative;
}
 
/* divider line between stats (desktop) */
.dmcmh-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 72px;
  background: rgba(255, 255, 255, 0.2);
}
 
.dmcmh-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--dmcmh-white);
  margin-bottom: 16px;
  transition: transform var(--dmcmh-transition),
              background var(--dmcmh-transition);
}
.dmcmh-stat:hover .dmcmh-stat__icon {
  background: var(--dmcmh-green);
  transform: translateY(-4px);
}
 
.dmcmh-stat__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.dmcmh-stat__plus {
  color: var(--dmcmh-green);
  margin-left: 2px;
}
 
.dmcmh-stat__label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #d5ecda;
}
 
/* ---- Responsive ---- */
@media (max-width: 760px) {
  .dmcmh-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
  .dmcmh-stat::after { display: none; }
}
 
@media (max-width: 380px) {
  .dmcmh-stats__inner { grid-template-columns: 1fr; }
}

 
/* ---- Scoped reset ---- */
.mbbscour *,
.mbbscour *::before,
.mbbscour *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.mbbscour {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 76px 20px;
}
 
.mbbscour__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
 
/* ---- Image side ---- */
.mbbscour__media {
  position: relative;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(35, 31, 32, 0.16);
  aspect-ratio: 4 / 3;
  background: #dfe6db;
}
.mbbscour__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.mbbscour__media:hover .mbbscour__img {
  transform: scale(1.06);
}
 
.mbbscour__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(14, 94, 44, 0.3);
}
 
/* ---- Details side ---- */
.mbbscour__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
 
.mbbscour__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
.mbbscour__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 4px;
  border-radius: 4px;
  background: var(--dmcmh-green);
}
 
.mbbscour__desc {
  color: #4f564c;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 26px;
}
 
/* ---- Key detail cards ---- */
.mbbscour__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.mbbscour__metacard {
  background: var(--dmcmh-white);
  border: 1px solid rgba(131, 137, 123, 0.2);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
}
.mbbscour__metacard:hover {
  transform: translateY(-4px);
  border-color: var(--dmcmh-green);
  box-shadow: 0 12px 26px rgba(14, 94, 44, 0.12);
}
.mbbscour__metalabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dmcmh-gray);
  margin-bottom: 6px;
}
.mbbscour__metavalue {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--dmcmh-green-dark);
}
 
/* ---- Highlights list ---- */
.mbbscour__list {
  list-style: none;
  margin-bottom: 30px;
}
.mbbscour__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #3d443b;
  padding: 8px 0;
}
.mbbscour__list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.15);
  color: var(--dmcmh-green-dark);
}
 
/* ---- Buttons ---- */
.mbbscour__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.mbbscour__btn {
  position: relative;
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              color var(--dmcmh-transition);
}
.mbbscour__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
 
/* primary */
.mbbscour__btn--primary {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  box-shadow: 0 8px 20px rgba(57, 160, 67, 0.35);
}
.mbbscour__btn--primary::before { background: var(--dmcmh-green-dark); }
.mbbscour__btn--primary:hover,
.mbbscour__btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(14, 94, 44, 0.4);
  outline: none;
}
.mbbscour__btn--primary:hover::before,
.mbbscour__btn--primary:focus-visible::before { transform: scaleX(1); }
 
/* outline */
.mbbscour__btn--outline {
  background: transparent;
  color: var(--dmcmh-green-dark);
  border: 2px solid var(--dmcmh-green);
}
.mbbscour__btn--outline::before { background: var(--dmcmh-green); }
.mbbscour__btn--outline:hover,
.mbbscour__btn--outline:focus-visible {
  color: var(--dmcmh-white);
  transform: translateY(-3px);
  outline: none;
}
.mbbscour__btn--outline:hover::before,
.mbbscour__btn--outline:focus-visible::before { transform: scaleX(1); }
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .mbbscour__img,
  .mbbscour__media:hover .mbbscour__img { transition: none; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 860px) {
  .mbbscour__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mbbscour__media { max-width: 520px; }
}
 
@media (max-width: 480px) {
  .mbbscour { padding: 54px 16px; }
  .mbbscour__meta { grid-template-columns: 1fr; }
  .mbbscour__btn { flex: 1 1 100%; text-align: center; }
}


.dmcmh-campus *,
.dmcmh-campus *::before,
.dmcmh-campus *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-campus {
  background: var(--dmcmh-white);
  font-family: var(--dmcmh-font);
  padding: 76px 20px;
}
 
.dmcmh-campus__inner {
  max-width: 1160px;
  margin: 0 auto;
}
 
/* ---- Heading ---- */
.dmcmh-campus__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}
.dmcmh-campus__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-campus__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.dmcmh-campus__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.dmcmh-campus__subtitle {
  color: #5c6359;
  font-size: 16px;
  line-height: 1.7;
}
 
/* ---- Bento grid ---- */
.dmcmh-campus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}
 
/* ---- Tile ---- */
.dmcmh-campus__tile {
  position: relative;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  background: #eef2ec;
  box-shadow: 0 8px 22px rgba(35, 31, 32, 0.08);
}
 
/* large featured tile */
.dmcmh-campus__tile--big {
  grid-column: span 2;
  grid-row: span 2;
}
 
.dmcmh-campus__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dmcmh-campus__tile:hover .dmcmh-campus__img {
  transform: scale(1.08);
}
 
/* dark gradient always present for legibility */
.dmcmh-campus__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
              rgba(35, 31, 32, 0.55) 0%,
              rgba(35, 31, 32, 0) 55%);
  transition: background var(--dmcmh-transition);
}
.dmcmh-campus__tile:hover::after {
  background: linear-gradient(to top,
              rgba(14, 94, 44, 0.78) 0%,
              rgba(14, 94, 44, 0.15) 70%);
}
 
/* ---- Caption ---- */
.dmcmh-campus__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: var(--dmcmh-white);
  transform: translateY(6px);
  transition: transform var(--dmcmh-transition);
}
.dmcmh-campus__tile:hover .dmcmh-campus__cap {
  transform: translateY(0);
}
 
.dmcmh-campus__capicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--dmcmh-green);
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(14, 94, 44, 0.4);
}
 
.dmcmh-campus__captext {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.dmcmh-campus__tile--big .dmcmh-campus__captext {
  font-size: 20px;
}
 
/* ---- Responsive ---- */
@media (max-width: 820px) {
  .dmcmh-campus__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
  .dmcmh-campus__tile--big {
    grid-column: span 2;
    grid-row: span 1;
  }
}
 
@media (max-width: 480px) {
  .dmcmh-campus { padding: 54px 16px; }
  .dmcmh-campus__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .dmcmh-campus__tile--big { grid-column: span 1; }
  /* keep captions visible on touch devices */
  .dmcmh-campus__cap { transform: translateY(0); }
}




/* ---- Scoped reset ---- */
.dmcmh-hosp *,
.dmcmh-hosp *::before,
.dmcmh-hosp *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell (DARK) ---- */
.dmcmh-hosp {
  font-family: var(--dmcmh-font);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg,
              #08351a 0%,
              #0b2a17 45%,
              var(--dmcmh-dark) 100%);
}
 
/* faint decorative glow */
.dmcmh-hosp::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.12);
  pointer-events: none;
}
 
.dmcmh-hosp__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
 
/* ---- Top: intro + image ---- */
.dmcmh-hosp__top {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
 
/* image */
.dmcmh-hosp__media {
  position: relative;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4 / 3;
  background: #12271a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dmcmh-hosp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dmcmh-hosp__media:hover .dmcmh-hosp__img {
  transform: scale(1.06);
}
 
/* emergency badge on image */
.dmcmh-hosp__emergency {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(8, 40, 20, 0.9);
  color: var(--dmcmh-white);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(57, 160, 67, 0.4);
  backdrop-filter: blur(3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.dmcmh-hosp__pulse {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dmcmh-green);
}
.dmcmh-hosp__pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--dmcmh-green);
  animation: dmcmh-hosp-pulse 1.8s ease-out infinite;
}
@keyframes dmcmh-hosp-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(3);   opacity: 0; }
}
.dmcmh-hosp__emlabel {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #a7d9b6;
}
.dmcmh-hosp__emnum {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--dmcmh-white);
  text-decoration: none;
}
 
/* content */
.dmcmh-hosp__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dmcmh-hosp__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--dmcmh-white);
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
.dmcmh-hosp__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 4px;
  border-radius: 4px;
  background: var(--dmcmh-green);
}
.dmcmh-hosp__desc {
  color: #c3cfc5;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.dmcmh-hosp__points {
  list-style: none;
  margin-bottom: 28px;
}
.dmcmh-hosp__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #dbe6dd;
  padding: 7px 0;
}
.dmcmh-hosp__points svg {
  flex: 0 0 auto;
  margin-top: 1px;
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.22);
  color: var(--dmcmh-green);
}
 
/* buttons */
.dmcmh-hosp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.dmcmh-hosp__btn {
  position: relative;
  display: inline-block;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              color var(--dmcmh-transition);
}
.dmcmh-hosp__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.dmcmh-hosp__btn--primary {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  box-shadow: 0 8px 22px rgba(57, 160, 67, 0.4);
}
.dmcmh-hosp__btn--primary::before { background: #2f8a39; }
.dmcmh-hosp__btn--primary:hover,
.dmcmh-hosp__btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(57, 160, 67, 0.5);
  outline: none;
}
.dmcmh-hosp__btn--primary:hover::before,
.dmcmh-hosp__btn--primary:focus-visible::before { transform: scaleX(1); }
.dmcmh-hosp__btn--outline {
  background: transparent;
  color: var(--dmcmh-white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.dmcmh-hosp__btn--outline::before { background: var(--dmcmh-green); }
.dmcmh-hosp__btn--outline:hover,
.dmcmh-hosp__btn--outline:focus-visible {
  color: var(--dmcmh-white);
  border-color: var(--dmcmh-green);
  transform: translateY(-3px);
  outline: none;
}
.dmcmh-hosp__btn--outline:hover::before,
.dmcmh-hosp__btn--outline:focus-visible::before { transform: scaleX(1); }
 
/* ---- Service cards (dark glass) ---- */
.dmcmh-hosp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dmcmh-hosp__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition),
              background var(--dmcmh-transition);
}
.dmcmh-hosp__card:hover {
  transform: translateY(-6px);
  background: rgba(57, 160, 67, 0.12);
  border-color: rgba(57, 160, 67, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.dmcmh-hosp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(57, 160, 67, 0.18);
  color: var(--dmcmh-green);
  margin-bottom: 16px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition);
}
.dmcmh-hosp__card:hover .dmcmh-hosp__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
}
.dmcmh-hosp__cardtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--dmcmh-white);
  margin-bottom: 8px;
}
.dmcmh-hosp__cardtext {
  color: #b7c3b9;
  font-size: 15px;
  line-height: 1.6;
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-hosp__pulse::after { animation: none; }
  .dmcmh-hosp__img,
  .dmcmh-hosp__media:hover .dmcmh-hosp__img { transition: none; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dmcmh-hosp__top { grid-template-columns: 1fr; gap: 30px; }
  .dmcmh-hosp__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dmcmh-hosp { padding: 56px 16px; }
  .dmcmh-hosp__grid { grid-template-columns: 1fr; }
  .dmcmh-hosp__btn { flex: 1 1 100%; text-align: center; }
}
 
.dmcmh-footer,
.dmcmh-footer *,
.dmcmh-footer *::before,
.dmcmh-footer *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Shell: abstract image + animated GREEN gradient overlay ---- */
.dmcmh-footer {
  font-family: var(--dmcmh-font);
  color: #eafdf0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(57,160,67,0.90) 0%, rgba(47,154,63,0.88) 30%,
      rgba(14,94,44,0.93) 65%, rgba(10,74,34,0.95) 100%),
    url('../images/footer/3151462.jpg');
  background-size: 300% 300%, cover;
  background-position: 0% 50%, center center;
  background-repeat: no-repeat, no-repeat;
  animation: dmcmh-bgshift 18s ease infinite;
}
@keyframes dmcmh-bgshift {
  0%   { background-position: 0% 50%, center center; }
  50%  { background-position: 100% 50%, center center; }
  100% { background-position: 0% 50%, center center; }
}
 
/* animated accent line on top */
.dmcmh-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg,
              var(--dmcmh-white), var(--dmcmh-mint),
              var(--dmcmh-green-dark), var(--dmcmh-mint), var(--dmcmh-white));
  background-size: 200% 100%;
  animation: dmcmh-linemove 6s linear infinite;
}
@keyframes dmcmh-linemove { to { background-position: 200% 0; } }
 
/* floating glow blobs */
.dmcmh-footer::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
  animation: dmcmh-blobfloat 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes dmcmh-blobfloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, 26px); }
}
 
.dmcmh-footer__news,
.dmcmh-footer__main,
.dmcmh-footer__bottom { position: relative; z-index: 1; }
 
/* ---- Newsletter strip ---- */
.dmcmh-footer__news { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.dmcmh-footer__newsinner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dmcmh-footer__newstext h3 {
  color: var(--dmcmh-white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.dmcmh-footer__newstext p { font-size: 14px; color: #d3f2db; }
.dmcmh-footer__subscribe {
  display: flex;
  gap: 10px;
  flex: 1 1 340px;
  max-width: 460px;
}
.dmcmh-footer__input {
  flex: 1 1 auto;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--dmcmh-white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--dmcmh-transition), box-shadow var(--dmcmh-transition);
}
.dmcmh-footer__input::placeholder { color: #e0f5e6; }
.dmcmh-footer__input:focus {
  border-color: var(--dmcmh-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
 
/* subscribe button (white) with shine sweep */
.dmcmh-footer__subbtn {
  position: relative;
  padding: 13px 26px;
  background: var(--dmcmh-white);
  color: var(--dmcmh-green-dark);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--dmcmh-transition), box-shadow var(--dmcmh-transition);
}
.dmcmh-footer__subbtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(57,160,67,0.35), transparent);
  transform: skewX(-20deg);
}
.dmcmh-footer__subbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.dmcmh-footer__subbtn:hover::after { left: 120%; transition: left 0.7s ease; }
 
/* ---- Main footer ---- */
.dmcmh-footer__main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 20px 40px;
}
.dmcmh-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
 
/* columns fade up on load, staggered */
.dmcmh-footer__col {
  opacity: 0;
  transform: translateY(24px);
  animation: dmcmh-fadeup 0.7s ease forwards;
}
.dmcmh-footer__col:nth-child(1) { animation-delay: 0.05s; }
.dmcmh-footer__col:nth-child(2) { animation-delay: 0.18s; }
.dmcmh-footer__col:nth-child(3) { animation-delay: 0.31s; }
.dmcmh-footer__col:nth-child(4) { animation-delay: 0.44s; }
@keyframes dmcmh-fadeup { to { opacity: 1; transform: translateY(0); } }
 
/* about column */
.dmcmh-footer__logo img { height: 56px; width: auto; display: block; margin-bottom: 18px; }
.dmcmh-footer__about {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #d3f2db;
}
.dmcmh-footer__social { display: flex; gap: 10px; }
.dmcmh-footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--dmcmh-white);
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition);
}
.dmcmh-footer__soc:hover {
  background: var(--dmcmh-white);
  color: var(--dmcmh-green-dark);
  transform: translateY(-4px) rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
 
/* column titles with animated underline */
.dmcmh-footer__title {
  color: var(--dmcmh-white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-white);
}
 
/* link lists */
.dmcmh-footer__links { list-style: none; }
.dmcmh-footer__links li { margin-bottom: 11px; }
.dmcmh-footer__links a {
  color: #e2f6e8;
  font-size: 14.5px;
  text-decoration: none;
  position: relative;
  padding-left: 16px;
  transition: color var(--dmcmh-transition), padding-left var(--dmcmh-transition);
}
.dmcmh-footer__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dmcmh-white);
  opacity: 0.7;
  transition: opacity var(--dmcmh-transition), transform var(--dmcmh-transition);
}
.dmcmh-footer__links a:hover { color: var(--dmcmh-white); padding-left: 22px; }
.dmcmh-footer__links a:hover::before { opacity: 1; transform: translateY(-50%) scale(1.5); }
 
/* contact list */
.dmcmh-footer__contact { list-style: none; }
.dmcmh-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #e2f6e8;
}
.dmcmh-footer__contact svg { flex: 0 0 auto; margin-top: 2px; color: var(--dmcmh-white); }
.dmcmh-footer__contact a {
  color: #e2f6e8;
  text-decoration: none;
  transition: color var(--dmcmh-transition);
}
.dmcmh-footer__contact a:hover { color: var(--dmcmh-white); text-decoration: underline; }
 
/* ---- Bottom bar ---- */
.dmcmh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 94, 44, 0.45);
}
.dmcmh-footer__bottominner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.dmcmh-footer__copy,
.dmcmh-footer__credit { font-size: 13.5px; color: #d3f2db; }
 
/* ---- Highlighted developer credit (dark pill + glow + shine) ---- */
.dmcmh-footer__brand {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  color: var(--dmcmh-white);
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dmcmh-green-dark), var(--dmcmh-dark));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
  animation: dmcmh-brandglow 2.4s ease-in-out infinite;
  transition: transform var(--dmcmh-transition);
}
/* moving shine across the pill */
.dmcmh-footer__brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: dmcmh-brandshine 3.2s ease-in-out infinite;
}
@keyframes dmcmh-brandshine {
  0%, 60% { left: -130%; }
  100%    { left: 130%; }
}
@keyframes dmcmh-brandglow {
  0%, 100% { box-shadow: 0 0 6px rgba(255,255,255,0.3), 0 0 0 1px rgba(255,255,255,0.25); }
  50%      { box-shadow: 0 0 16px rgba(255,255,255,0.7), 0 0 0 1px rgba(255,255,255,0.5); }
}
.dmcmh-footer__brand:hover { transform: translateY(-2px) scale(1.05); }
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-footer,
  .dmcmh-footer::before,
  .dmcmh-footer::after,
  .dmcmh-footer__col,
  .dmcmh-footer__brand,
  .dmcmh-footer__brand::after { animation: none !important; }
  .dmcmh-footer__col { opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dmcmh-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dmcmh-footer__col--about { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .dmcmh-footer__newsinner { flex-direction: column; align-items: flex-start; }
  .dmcmh-footer__subscribe { width: 100%; max-width: none; }
  .dmcmh-footer__grid { grid-template-columns: 1fr; }
  .dmcmh-footer__bottominner { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .dmcmh-footer__subscribe { flex-direction: column; }
}


/* ---- Scoped reset ---- */
.dmcmh-about *,
.dmcmh-about *::before,
.dmcmh-about *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-about {
  position: relative;
  overflow: hidden;
  font-family: var(--dmcmh-font);
  padding: 84px 20px;
  color: var(--dmcmh-white);
  isolation: isolate;
}
 
/* background image with slow ken-burns zoom */
.dmcmh-about__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: dmcmh-kenburns 22s ease-in-out infinite alternate;
}
@keyframes dmcmh-kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}
 
/* animated green gradient overlay */
.dmcmh-about__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg,
              rgba(14, 94, 44, 0.94) 0%,
              rgba(14, 94, 44, 0.80) 40%,
              rgba(35, 31, 32, 0.75) 100%);
  background-size: 200% 200%;
  animation: dmcmh-ovshift 16s ease infinite;
}
@keyframes dmcmh-ovshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
/* floating decorative shapes */
.dmcmh-about__shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.dmcmh-about__shape--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(57,160,67,0.35), transparent 70%);
  animation: dmcmh-float1 12s ease-in-out infinite;
}
.dmcmh-about__shape--2 {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -50px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  animation: dmcmh-float2 9s ease-in-out infinite;
}
@keyframes dmcmh-float1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-24px, 22px); }
}
@keyframes dmcmh-float2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -18px); }
}
 
/* ---- Layout ---- */
.dmcmh-about__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
 
/* ---- Image side ---- */
.dmcmh-about__media {
  position: relative;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 3;
  background: #12271a;
  border: 4px solid rgba(255, 255, 255, 0.12);
  /* entrance */
  opacity: 0;
  transform: translateY(30px);
  animation: dmcmh-about-up 0.8s ease 0.1s forwards;
}
.dmcmh-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dmcmh-about__media:hover .dmcmh-about__img { transform: scale(1.07); }
 
/* experience badge */
.dmcmh-about__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 26px rgba(14, 94, 44, 0.5);
  animation: dmcmh-badgepulse 2.6s ease-in-out infinite;
}
@keyframes dmcmh-badgepulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 12px 26px rgba(14,94,44,0.5); }
  50%      { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(14,94,44,0.6); }
}
.dmcmh-about__badgenum {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.dmcmh-about__badgetext {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 4px;
}
 
/* ---- Content side ---- */
.dmcmh-about__body {
  opacity: 0;
  transform: translateY(30px);
  animation: dmcmh-about-up 0.8s ease 0.28s forwards;
}
@keyframes dmcmh-about-up {
  to { opacity: 1; transform: translateY(0); }
}
 
.dmcmh-about__eyebrow {
  display: inline-block;
  color: var(--dmcmh-mint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}
.dmcmh-about__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--dmcmh-white);
  line-height: 1.18;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 16px;
}
.dmcmh-about__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: var(--dmcmh-green);
}
.dmcmh-about__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #e4f1e8;
  margin-bottom: 24px;
}
 
.dmcmh-about__points {
  list-style: none;
  margin-bottom: 30px;
}
.dmcmh-about__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #eafdf0;
  padding: 8px 0;
}
.dmcmh-about__points svg {
  flex: 0 0 auto;
  margin-top: 1px;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 50%;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
}
 
/* button */
.dmcmh-about__btn {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  background: var(--dmcmh-white);
  color: var(--dmcmh-green-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--dmcmh-transition),
              color var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition);
}
.dmcmh-about__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--dmcmh-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.dmcmh-about__btn:hover,
.dmcmh-about__btn:focus-visible {
  color: var(--dmcmh-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  outline: none;
}
.dmcmh-about__btn:hover::before,
.dmcmh-about__btn:focus-visible::before { transform: scaleX(1); }
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-about__bg,
  .dmcmh-about__overlay,
  .dmcmh-about__shape,
  .dmcmh-about__badge,
  .dmcmh-about__media,
  .dmcmh-about__body { animation: none !important; }
  .dmcmh-about__media,
  .dmcmh-about__body { opacity: 1; transform: none; }
  .dmcmh-about__img,
  .dmcmh-about__media:hover .dmcmh-about__img { transition: none; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 860px) {
  .dmcmh-about__inner { grid-template-columns: 1fr; gap: 34px; }
  .dmcmh-about__media { max-width: 520px; }
}
@media (max-width: 480px) {
  .dmcmh-about { padding: 60px 16px; }
  .dmcmh-about__badge { padding: 10px 16px; }
  .dmcmh-about__badgenum { font-size: 22px; }
}
 
/* ---- Scoped reset ---- */
.dmcmh-mvv *,
.dmcmh-mvv *::before,
.dmcmh-mvv *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-mvv {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
 
.dmcmh-mvv__inner {
  max-width: 1160px;
  margin: 0 auto;
}
 
/* ---- Heading ---- */
.dmcmh-mvv__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.dmcmh-mvv__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-mvv__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.dmcmh-mvv__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.dmcmh-mvv__subtitle {
  color: #5c6359;
  font-size: 16px;
  line-height: 1.7;
}
 
/* ---- Grid ---- */
.dmcmh-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
 
/* ---- Card ---- */
.dmcmh-mvv__card {
  position: relative;
  background: var(--dmcmh-white);
  border-radius: var(--dmcmh-radius);
  padding: 38px 30px;
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.07);
  overflow: hidden;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition);
  /* entrance */
  opacity: 0;
  transform: translateY(34px);
  animation: dmcmh-mvv-up 0.7s ease forwards;
}
.dmcmh-mvv__card:nth-child(1) { animation-delay: 0.08s; }
.dmcmh-mvv__card:nth-child(2) { animation-delay: 0.22s; }
.dmcmh-mvv__card:nth-child(3) { animation-delay: 0.36s; }
@keyframes dmcmh-mvv-up {
  to { opacity: 1; transform: translateY(0); }
}
 
/* top accent bar grows on hover */
.dmcmh-mvv__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--dmcmh-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.dmcmh-mvv__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 50px rgba(14, 94, 44, 0.16);
}
.dmcmh-mvv__card:hover::before { transform: scaleX(1); }
 
/* featured (Vision) card highlighted */
.dmcmh-mvv__card--featured {
  background: linear-gradient(160deg, var(--dmcmh-green-dark), #0a4a22);
  color: var(--dmcmh-white);
  box-shadow: 0 20px 44px rgba(14, 94, 44, 0.28);
}
.dmcmh-mvv__card--featured::before { background: var(--dmcmh-white); }
 
/* ---- Icon ---- */
.dmcmh-mvv__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: rgba(57, 160, 67, 0.12);
  color: var(--dmcmh-green-dark);
  margin-bottom: 20px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.dmcmh-mvv__card:hover .dmcmh-mvv__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: rotate(-6deg) scale(1.05);
}
.dmcmh-mvv__card--featured .dmcmh-mvv__icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--dmcmh-white);
}
.dmcmh-mvv__card--featured:hover .dmcmh-mvv__icon {
  background: var(--dmcmh-white);
  color: var(--dmcmh-green-dark);
}
 
.dmcmh-mvv__cardtitle {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: inherit;
}
.dmcmh-mvv__card:not(.dmcmh-mvv__card--featured) .dmcmh-mvv__cardtitle {
  color: var(--dmcmh-dark);
}
 
.dmcmh-mvv__cardtext {
  font-size: 15px;
  line-height: 1.7;
  color: #5c6359;
}
.dmcmh-mvv__card--featured .dmcmh-mvv__cardtext {
  color: #e4f1e8;
}
 
/* ---- Values chips ---- */
.dmcmh-mvv__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.dmcmh-mvv__chips li {
  background: rgba(57, 160, 67, 0.12);
  color: var(--dmcmh-green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background var(--dmcmh-transition), color var(--dmcmh-transition);
}
.dmcmh-mvv__card:hover .dmcmh-mvv__chips li {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-mvv__card { animation: none; opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dmcmh-mvv__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .dmcmh-mvv { padding: 56px 16px; }
  .dmcmh-mvv__card { padding: 30px 24px; }
}
 


/* ---- Scoped reset ---- */
.dmcmh-crumb *,
.dmcmh-crumb *::before,
.dmcmh-crumb *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-crumb {
  position: relative;
  overflow: hidden;
  font-family: var(--dmcmh-font);
  padding: 84px 20px 70px;
  color: var(--dmcmh-white);
  text-align: center;
  isolation: isolate;
}
 
/* student / campus background image with ken-burns zoom */
.dmcmh-crumb__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('../images/about/breadcrumb.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: dmcmh-crumb-zoom 20s ease-in-out infinite alternate;
}
@keyframes dmcmh-crumb-zoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.18); }
}
 
/* ANIMATED gradient overlay */
.dmcmh-crumb__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(115deg,
              rgba(14, 94, 44, 0.92) 0%,
              rgba(57, 160, 67, 0.75) 40%,
              rgba(35, 31, 32, 0.80) 100%);
  background-size: 220% 220%;
  animation: dmcmh-crumb-shift 14s ease infinite;
}
@keyframes dmcmh-crumb-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
/* floating decorative shapes */
.dmcmh-crumb__shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.dmcmh-crumb__shape--1 {
  width: 240px; height: 240px;
  top: -90px; right: -50px;
  background: radial-gradient(circle, rgba(57,160,67,0.4), transparent 70%);
  animation: dmcmh-crumb-float1 11s ease-in-out infinite;
}
.dmcmh-crumb__shape--2 {
  width: 180px; height: 180px;
  bottom: -70px; left: -40px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
  animation: dmcmh-crumb-float2 8s ease-in-out infinite;
}
@keyframes dmcmh-crumb-float1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-20px, 18px); }
}
@keyframes dmcmh-crumb-float2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(18px, -16px); }
}
 
/* ---- Content ---- */
.dmcmh-crumb__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}
 
.dmcmh-crumb__title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(24px);
  animation: dmcmh-crumb-up 0.7s ease 0.1s forwards;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}
/* gradient underline accent under the title */
.dmcmh-crumb__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--dmcmh-mint), var(--dmcmh-green));
}
 
@keyframes dmcmh-crumb-up {
  to { opacity: 1; transform: translateY(0); }
}
 
/* ---- Breadcrumb trail ---- */
.dmcmh-crumb__nav {
  opacity: 0;
  transform: translateY(24px);
  animation: dmcmh-crumb-up 0.7s ease 0.28s forwards;
}
.dmcmh-crumb__list {
  list-style: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 9px 18px;
  border-radius: 40px;
}
 
.dmcmh-crumb__item {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #e4f1e8;
}
.dmcmh-crumb__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e4f1e8;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 20px;
  transition: color var(--dmcmh-transition);
}
.dmcmh-crumb__link:hover,
.dmcmh-crumb__link:focus-visible {
  color: var(--dmcmh-white);
  outline: none;
}
 
.dmcmh-crumb__sep {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
}
 
/* ACTIVE page highlighted with gradient pill */
.dmcmh-crumb__item--active {
  color: var(--dmcmh-white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--dmcmh-green), var(--dmcmh-green-dark));
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(14, 94, 44, 0.45);
  position: relative;
  overflow: hidden;
}
/* subtle shine sweep on the active pill */
.dmcmh-crumb__item--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: dmcmh-crumb-shine 3.4s ease-in-out infinite;
}
@keyframes dmcmh-crumb-shine {
  0%, 60% { left: -130%; }
  100%    { left: 130%; }
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-crumb__bg,
  .dmcmh-crumb__overlay,
  .dmcmh-crumb__shape,
  .dmcmh-crumb__title,
  .dmcmh-crumb__nav,
  .dmcmh-crumb__item--active::after { animation: none !important; }
  .dmcmh-crumb__title,
  .dmcmh-crumb__nav { opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 480px) {
  .dmcmh-crumb { padding: 60px 16px 50px; }
  .dmcmh-crumb__list { padding: 8px 14px; }
  .dmcmh-crumb__item,
  .dmcmh-crumb__link { font-size: 13px; }
}


 
/* ---- Scoped reset ---- */
.dmcmh-mbbs *,
.dmcmh-mbbs *::before,
.dmcmh-mbbs *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell (WHITE) ---- */
.dmcmh-mbbs {
  background: var(--dmcmh-white);
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
 
.dmcmh-mbbs__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
 
/* ---- Heading (dark on white) ---- */
.dmcmh-mbbs__head {
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(22px);
  animation: dmcmh-mbbs-up 0.7s ease 0.05s forwards;
}
.dmcmh-mbbs__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-mbbs__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.dmcmh-mbbs__heading {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
}
@keyframes dmcmh-mbbs-up {
  to { opacity: 1; transform: translateY(0); }
}
 
/* =====================================================================
   CARD  =  animated gradient border (via padding) + glowing shadow
   ===================================================================== */
.dmcmh-mbbs__card {
  position: relative;
  padding: 4px;                       /* thickness of the gradient border */
  border-radius: 24px;
  background: linear-gradient(120deg,
              var(--dmcmh-green), var(--dmcmh-mint),
              var(--dmcmh-green-dark), var(--dmcmh-green), var(--dmcmh-mint));
  background-size: 300% 300%;
  /* fade-in (opacity only) + flowing border + pulsing glow */
  opacity: 0;
  animation: dmcmh-mbbs-fade 0.8s ease 0.2s forwards,
             dmcmh-mbbs-borderflow 7s ease infinite,
             dmcmh-mbbs-glow 3s ease-in-out infinite;
  transition: transform var(--dmcmh-transition);
}
.dmcmh-mbbs__card:hover {
  transform: translateY(-8px) scale(1.008);
}
 
@keyframes dmcmh-mbbs-fade { to { opacity: 1; } }
@keyframes dmcmh-mbbs-borderflow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes dmcmh-mbbs-glow {
  0%, 100% { box-shadow: 0 14px 34px rgba(14, 94, 44, 0.22),
                         0 0 0 rgba(57, 160, 67, 0.0); }
  50%      { box-shadow: 0 20px 44px rgba(14, 94, 44, 0.34),
                         0 0 26px rgba(57, 160, 67, 0.35); }
}
 
/* ---- Inner: holds the background IMAGE ---- */
.dmcmh-mbbs__cardinner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('../images/about/mbbs-bg.png');
  background-size: cover;
  background-position: center;
  padding: 44px 34px 38px;
  color: var(--dmcmh-white);
  isolation: isolate;
}
/* animated green overlay over the image (keeps text readable) */
.dmcmh-mbbs__cardinner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(125deg,
              rgba(14, 94, 44, 0.92) 0%,
              rgba(57, 160, 67, 0.70) 45%,
              rgba(35, 31, 32, 0.85) 100%);
  background-size: 220% 220%;
  animation: dmcmh-mbbs-ovshift 14s ease infinite;
}
@keyframes dmcmh-mbbs-ovshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
.dmcmh-mbbs__content { position: relative; z-index: 1; }
 
/* badge */
.dmcmh-mbbs__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(14, 94, 44, 0.5);
  animation: dmcmh-mbbs-pulse 2.6s ease-in-out infinite;
}
@keyframes dmcmh-mbbs-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
 
/* icon */
.dmcmh-mbbs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--dmcmh-white);
  margin-bottom: 18px;
  transition: transform var(--dmcmh-transition), background var(--dmcmh-transition);
}
.dmcmh-mbbs__card:hover .dmcmh-mbbs__icon {
  background: var(--dmcmh-green);
  transform: rotate(-6deg) scale(1.05);
}
 
.dmcmh-mbbs__name {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.dmcmh-mbbs__sub {
  font-size: 15px;
  font-weight: 600;
  color: var(--dmcmh-mint);
  margin-bottom: 16px;
}
.dmcmh-mbbs__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #eafdf0;
  margin-bottom: 26px;
}
 
/* meta cards */
.dmcmh-mbbs__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.dmcmh-mbbs__metacard {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 10px;
  transition: background var(--dmcmh-transition), transform var(--dmcmh-transition);
}
.dmcmh-mbbs__metacard:hover {
  background: rgba(57, 160, 67, 0.4);
  transform: translateY(-3px);
}
.dmcmh-mbbs__metalabel {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dmcmh-mint);
  margin-bottom: 4px;
}
.dmcmh-mbbs__metavalue {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--dmcmh-white);
}
 
/* buttons */
.dmcmh-mbbs__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.dmcmh-mbbs__btn {
  position: relative;
  display: inline-block;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              color var(--dmcmh-transition);
}
.dmcmh-mbbs__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.dmcmh-mbbs__btn--primary {
  background: var(--dmcmh-white);
  color: var(--dmcmh-green-dark);
}
.dmcmh-mbbs__btn--primary::before { background: var(--dmcmh-green); }
.dmcmh-mbbs__btn--primary:hover,
.dmcmh-mbbs__btn--primary:focus-visible {
  color: var(--dmcmh-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  outline: none;
}
.dmcmh-mbbs__btn--primary:hover::before,
.dmcmh-mbbs__btn--primary:focus-visible::before { transform: scaleX(1); }
.dmcmh-mbbs__btn--outline {
  background: transparent;
  color: var(--dmcmh-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.dmcmh-mbbs__btn--outline::before { background: var(--dmcmh-green); }
.dmcmh-mbbs__btn--outline:hover,
.dmcmh-mbbs__btn--outline:focus-visible {
  color: var(--dmcmh-white);
  border-color: var(--dmcmh-green);
  transform: translateY(-3px);
  outline: none;
}
.dmcmh-mbbs__btn--outline:hover::before,
.dmcmh-mbbs__btn--outline:focus-visible::before { transform: scaleX(1); }
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-mbbs__head,
  .dmcmh-mbbs__card,
  .dmcmh-mbbs__cardinner::before,
  .dmcmh-mbbs__badge { animation: none !important; }
  .dmcmh-mbbs__head,
  .dmcmh-mbbs__card { opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 560px) {
  .dmcmh-mbbs { padding: 58px 16px; }
  .dmcmh-mbbs__cardinner { padding: 40px 20px 30px; }
  .dmcmh-mbbs__meta { grid-template-columns: 1fr; }
  .dmcmh-mbbs__btn { flex: 1 1 100%; text-align: center; }
  .dmcmh-mbbs__badge { position: static; display: inline-block; margin-bottom: 14px; }
}
 
  
/* ---- Scoped reset ---- */
.dmcmh-adm *,
.dmcmh-adm *::before,
.dmcmh-adm *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-adm {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
.dmcmh-adm__inner { max-width: 1120px; margin: 0 auto; }
 
/* ---- Heading ---- */
.dmcmh-adm__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}
.dmcmh-adm__eyebrow {
  display: inline-block;
  color: var(--dmcmh-white);
  background: var(--dmcmh-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.dmcmh-adm__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.dmcmh-adm__subtitle { color: #5c6359; font-size: 16px; line-height: 1.7; }
 
/* ---- Sub-headings ---- */
.dmcmh-adm__subhead {
  font-size: 21px;
  font-weight: 800;
  color: var(--dmcmh-dark);
  margin: 12px 0 26px;
  position: relative;
  padding-left: 16px;
}
.dmcmh-adm__subhead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 4px;
  background: var(--dmcmh-green);
}
 
/* ---- Process steps ---- */
.dmcmh-adm__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 50px;
  counter-reset: none;
}
.dmcmh-adm__step {
  position: relative;
  background: var(--dmcmh-white);
  border-radius: var(--dmcmh-radius);
  padding: 26px 20px 22px;
  box-shadow: 0 8px 24px rgba(35, 31, 32, 0.06);
  border-top: 4px solid transparent;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
  opacity: 0;
  transform: translateY(28px);
  animation: dmcmh-adm-up 0.6s ease forwards;
}
.dmcmh-adm__step:nth-child(1) { animation-delay: 0.05s; }
.dmcmh-adm__step:nth-child(2) { animation-delay: 0.15s; }
.dmcmh-adm__step:nth-child(3) { animation-delay: 0.25s; }
.dmcmh-adm__step:nth-child(4) { animation-delay: 0.35s; }
.dmcmh-adm__step:nth-child(5) { animation-delay: 0.45s; }
@keyframes dmcmh-adm-up { to { opacity: 1; transform: translateY(0); } }
 
.dmcmh-adm__step:hover {
  transform: translateY(-6px);
  border-top-color: var(--dmcmh-green);
  box-shadow: 0 18px 38px rgba(14, 94, 44, 0.14);
}
/* connecting arrow between steps (desktop) */
.dmcmh-adm__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--dmcmh-green);
  border-right: 3px solid var(--dmcmh-green);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.dmcmh-adm__stepno {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.14);
  color: var(--dmcmh-green-dark);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 14px;
  transition: background var(--dmcmh-transition), color var(--dmcmh-transition);
}
.dmcmh-adm__step:hover .dmcmh-adm__stepno {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
}
.dmcmh-adm__stepbody h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dmcmh-dark);
  margin-bottom: 6px;
}
.dmcmh-adm__stepbody p { font-size: 13.5px; line-height: 1.55; color: #5c6359; }
 
/* ---- Quota cards ---- */
.dmcmh-adm__quota {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.dmcmh-adm__qcard {
  background: var(--dmcmh-white);
  border: 1px solid rgba(131, 137, 123, 0.2);
  border-radius: var(--dmcmh-radius);
  padding: 32px 30px;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
}
.dmcmh-adm__qcard:hover {
  transform: translateY(-6px);
  border-color: var(--dmcmh-green);
  box-shadow: 0 20px 40px rgba(14, 94, 44, 0.14);
}
.dmcmh-adm__qcard--alt {
  background: linear-gradient(160deg, var(--dmcmh-green-dark), #0a4a22);
  color: var(--dmcmh-white);
  border-color: transparent;
}
.dmcmh-adm__qicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(57, 160, 67, 0.14);
  color: var(--dmcmh-green-dark);
  margin-bottom: 16px;
  transition: background var(--dmcmh-transition), color var(--dmcmh-transition);
}
.dmcmh-adm__qcard:hover .dmcmh-adm__qicon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
}
.dmcmh-adm__qcard--alt .dmcmh-adm__qicon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--dmcmh-white);
}
.dmcmh-adm__qtitle {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: inherit;
}
.dmcmh-adm__qcard:not(.dmcmh-adm__qcard--alt) .dmcmh-adm__qtitle { color: var(--dmcmh-dark); }
.dmcmh-adm__qtext { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; color: #5c6359; }
.dmcmh-adm__qcard--alt .dmcmh-adm__qtext { color: #d7ecdd; }
 
.dmcmh-adm__qlist { list-style: none; }
.dmcmh-adm__qlist li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #3d443b;
}
.dmcmh-adm__qcard--alt .dmcmh-adm__qlist li { color: #eafdf0; }
.dmcmh-adm__qlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--dmcmh-green);
  border-bottom: 2.5px solid var(--dmcmh-green);
  transform: rotate(-45deg);
}
.dmcmh-adm__qcard--alt .dmcmh-adm__qlist li::before {
  border-color: var(--dmcmh-white);
}
 
/* ---- Documents ---- */
.dmcmh-adm__docs { margin-bottom: 44px; }
.dmcmh-adm__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dmcmh-adm__chips li {
  background: var(--dmcmh-white);
  border: 1px solid rgba(57, 160, 67, 0.3);
  color: var(--dmcmh-green-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 30px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.dmcmh-adm__chips li:hover {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: translateY(-3px);
}
 
/* ---- CTA + note ---- */
.dmcmh-adm__cta { text-align: center; }
.dmcmh-adm__btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 22px rgba(57, 160, 67, 0.35);
  transition: transform var(--dmcmh-transition), box-shadow var(--dmcmh-transition);
}
.dmcmh-adm__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--dmcmh-green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.dmcmh-adm__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 94, 44, 0.4);
}
.dmcmh-adm__btn:hover::before { transform: scaleX(1); }
 
.dmcmh-adm__note {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--dmcmh-gray);
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-adm__step { animation: none; opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 980px) {
  .dmcmh-adm__steps { grid-template-columns: repeat(2, 1fr); }
  .dmcmh-adm__step:not(:last-child)::after { display: none; }
}
@media (max-width: 760px) {
  .dmcmh-adm__quota { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .dmcmh-adm { padding: 56px 16px; }
  .dmcmh-adm__steps { grid-template-columns: 1fr; }
}
 
 
/* ---- Scoped reset ---- */
.dmcmh-dept *,
.dmcmh-dept *::before,
.dmcmh-dept *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-dept {
  background: var(--dmcmh-white);
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
.dmcmh-dept__inner { max-width: 1160px; margin: 0 auto; }
 
/* ---- Heading ---- */
.dmcmh-dept__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}
.dmcmh-dept__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-dept__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.dmcmh-dept__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.dmcmh-dept__subtitle { color: #5c6359; font-size: 16px; line-height: 1.7; }
 
/* ---- Grid ---- */
.dmcmh-dept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
/* ---- Card ---- */
.dmcmh-dept__card {
  position: relative;
  background: var(--dmcmh-white);
  border: 1px solid rgba(131, 137, 123, 0.2);
  border-radius: var(--dmcmh-radius);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
  opacity: 0;
  transform: translateY(30px);
  animation: dmcmh-dept-up 0.6s ease forwards;
}
.dmcmh-dept__card:nth-child(1) { animation-delay: 0.05s; }
.dmcmh-dept__card:nth-child(2) { animation-delay: 0.12s; }
.dmcmh-dept__card:nth-child(3) { animation-delay: 0.19s; }
.dmcmh-dept__card:nth-child(4) { animation-delay: 0.26s; }
.dmcmh-dept__card:nth-child(5) { animation-delay: 0.33s; }
.dmcmh-dept__card:nth-child(6) { animation-delay: 0.40s; }
.dmcmh-dept__card:nth-child(7) { animation-delay: 0.47s; }
.dmcmh-dept__card:nth-child(8) { animation-delay: 0.54s; }
.dmcmh-dept__card:nth-child(9) { animation-delay: 0.61s; }
@keyframes dmcmh-dept-up { to { opacity: 1; transform: translateY(0); } }
 
/* green wash that slides up on hover */
.dmcmh-dept__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(160deg, rgba(57,160,67,0.06), rgba(14,94,44,0.02));
  transition: height var(--dmcmh-transition);
  z-index: 0;
}
.dmcmh-dept__card:hover::before { height: 100%; }
 
.dmcmh-dept__card:hover {
  transform: translateY(-8px);
  border-color: var(--dmcmh-green);
  box-shadow: 0 20px 40px rgba(14, 94, 44, 0.14);
}
 
/* icon */
.dmcmh-dept__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(57, 160, 67, 0.12);
  color: var(--dmcmh-green-dark);
  margin-bottom: 16px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.dmcmh-dept__card:hover .dmcmh-dept__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: rotate(-6deg) scale(1.05);
}
 
.dmcmh-dept__name {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--dmcmh-dark);
  margin-bottom: 8px;
}
.dmcmh-dept__text {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.6;
  color: #5c6359;
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-dept__card { animation: none; opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dmcmh-dept__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .dmcmh-dept { padding: 56px 16px; }
  .dmcmh-dept__grid { grid-template-columns: 1fr; }
}
 
 
/* ---- Scoped reset ---- */
.dmcmh-gal *,
.dmcmh-gal *::before,
.dmcmh-gal *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.dmcmh-gal {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
.dmcmh-gal__inner { max-width: 1160px; margin: 0 auto; }
 
/* ---- Heading ---- */
.dmcmh-gal__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}
.dmcmh-gal__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.dmcmh-gal__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.dmcmh-gal__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.dmcmh-gal__subtitle { color: #5c6359; font-size: 16px; line-height: 1.7; }
 
/* ---- Filters ---- */
.dmcmh-gal__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.dmcmh-gal__filter {
  padding: 9px 20px;
  border: 1px solid rgba(131, 137, 123, 0.35);
  background: var(--dmcmh-white);
  color: var(--dmcmh-dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              border-color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.dmcmh-gal__filter:hover { transform: translateY(-2px); border-color: var(--dmcmh-green); }
.dmcmh-gal__filter--active {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  border-color: var(--dmcmh-green);
}
 
/* ---- Grid ---- */
.dmcmh-gal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
 
/* ---- Item ---- */
.dmcmh-gal__item {
  position: relative;
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: #e6ece4;
  box-shadow: 0 6px 18px rgba(35, 31, 32, 0.08);
  animation: dmcmh-gal-in 0.4s ease;
}
@keyframes dmcmh-gal-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.dmcmh-gal__item.is-hidden { display: none; }
 
.dmcmh-gal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.dmcmh-gal__item:hover .dmcmh-gal__img { transform: scale(1.12); }
 
/* overlay caption */
.dmcmh-gal__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 14px;
  color: var(--dmcmh-white);
  background: linear-gradient(to top, rgba(14,94,44,0.85), transparent);
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--dmcmh-transition), opacity var(--dmcmh-transition);
}
.dmcmh-gal__item:hover .dmcmh-gal__cap { transform: translateY(0); opacity: 1; }
.dmcmh-gal__cap span {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--dmcmh-green);
  padding: 3px 8px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.dmcmh-gal__cap em { display: block; font-style: normal; font-size: 15px; font-weight: 700; }
 
/* zoom icon */
.dmcmh-gal__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dmcmh-green-dark);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--dmcmh-transition), transform var(--dmcmh-transition);
}
.dmcmh-gal__item:hover .dmcmh-gal__zoom { opacity: 1; transform: scale(1); }
 
/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.dmcmh-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 20, 15, 0.92);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dmcmh-lb.is-open { opacity: 1; visibility: visible; }
 
.dmcmh-lb__stage {
  max-width: 90vw;
  max-height: 86vh;
  text-align: center;
  position: relative;
}
.dmcmh-lb__img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.dmcmh-lb.is-open .dmcmh-lb__img { transform: scale(1); opacity: 1; }
 
.dmcmh-lb__cap {
  color: var(--dmcmh-white);
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
}
.dmcmh-lb__counter {
  display: block;
  color: #9fb3a5;
  font-size: 13px;
  margin-top: 4px;
}
 
/* controls */
.dmcmh-lb__close,
.dmcmh-lb__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--dmcmh-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--dmcmh-transition), transform var(--dmcmh-transition);
}
.dmcmh-lb__close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
}
.dmcmh-lb__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
}
.dmcmh-lb__nav--prev { left: 22px; }
.dmcmh-lb__nav--next { right: 22px; }
.dmcmh-lb__close:hover,
.dmcmh-lb__nav:hover { background: var(--dmcmh-green); }
.dmcmh-lb__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.dmcmh-lb__nav--next:hover { transform: translateY(-50%) scale(1.08); }
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dmcmh-gal__item,
  .dmcmh-gal__img,
  .dmcmh-lb__img { animation: none; transition: none; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dmcmh-gal__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .dmcmh-gal__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dmcmh-lb__nav { width: 44px; height: 44px; }
  .dmcmh-lb__nav--prev { left: 10px; }
  .dmcmh-lb__nav--next { right: 10px; }
  .dmcmh-lb__close { top: 14px; right: 14px; }
  /* show captions on touch since no hover */
  .dmcmh-gal__cap { opacity: 1; transform: translateY(0); }
}

 

/* ---- Scoped reset ---- */
.contactus *,
.contactus *::before,
.contactus *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.contactus {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
.contactus__inner { max-width: 1160px; margin: 0 auto; }
 
/* ---- Heading ---- */
.contactus__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.contactus__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.contactus__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.contactus__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.contactus__subtitle { color: #5c6359; font-size: 16px; line-height: 1.7; }
 
/* ---- Info cards (top) ---- */
.contactus__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.contactus__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: var(--dmcmh-white);
  border: 1px solid rgba(131, 137, 123, 0.2);
  border-radius: var(--dmcmh-radius);
  padding: 26px 22px;
  text-decoration: none;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
}
.contactus__card:hover {
  transform: translateY(-6px);
  border-color: var(--dmcmh-green);
  box-shadow: 0 18px 38px rgba(14, 94, 44, 0.14);
}
.contactus__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(57, 160, 67, 0.12);
  color: var(--dmcmh-green-dark);
  margin-bottom: 10px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.contactus__card:hover .contactus__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: translateY(-3px);
}
.contactus__cardlabel {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dmcmh-gray);
}
.contactus__cardvalue {
  font-size: 16px;
  font-weight: 700;
  color: var(--dmcmh-dark);
}
 
/* ---- Bottom: form + map ---- */
.contactus__bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
 
/* ---- Form ---- */
.contactus__form {
  background: var(--dmcmh-white);
  border-radius: var(--dmcmh-radius);
  padding: 34px 30px;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: contactus-up 0.7s ease 0.1s forwards;
}
@keyframes contactus-up { to { opacity: 1; transform: translateY(0); } }
 
.contactus__formtitle {
  font-size: 20px;
  font-weight: 800;
  color: var(--dmcmh-dark);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.contactus__formtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
 
.contactus__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
/* floating-label field */
.contactus__field {
  position: relative;
  margin-bottom: 20px;
}
.contactus__input {
  width: 100%;
  padding: 15px 14px 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dmcmh-dark);
  background: #f6f9f5;
  border: 1.5px solid rgba(131, 137, 123, 0.35);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              background var(--dmcmh-transition);
}
.contactus__input--area { resize: vertical; min-height: 110px; padding-top: 18px; }
 
.contactus__label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 15px;
  color: var(--dmcmh-gray);
  pointer-events: none;
  transition: transform var(--dmcmh-transition),
              color var(--dmcmh-transition),
              font-size var(--dmcmh-transition);
}
 
/* focus + filled states: glow + floating label */
.contactus__input:focus {
  border-color: var(--dmcmh-green);
  background: var(--dmcmh-white);
  box-shadow: 0 0 0 4px rgba(57, 160, 67, 0.14);
}
.contactus__input:focus + .contactus__label,
.contactus__input:not(:placeholder-shown) + .contactus__label {
  transform: translateY(-13px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--dmcmh-green-dark);
}
 
/* submit button with sweep */
.contactus__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(57, 160, 67, 0.35);
  transition: transform var(--dmcmh-transition), box-shadow var(--dmcmh-transition);
}
.contactus__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--dmcmh-green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.contactus__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 94, 44, 0.4);
}
.contactus__btn:hover::before { transform: scaleX(1); }
.contactus__btn svg { transition: transform var(--dmcmh-transition); }
.contactus__btn:hover svg { transform: translateX(4px) rotate(8deg); }
 
/* ---- Map ---- */
.contactus__map {
  border-radius: var(--dmcmh-radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.1);
  border: 4px solid var(--dmcmh-white);
  opacity: 0;
  transform: translateY(30px);
  animation: contactus-up 0.7s ease 0.26s forwards;
}
.contactus__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .contactus__form,
  .contactus__map { animation: none; opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 880px) {
  .contactus__cards { grid-template-columns: 1fr; }
  .contactus__bottom { grid-template-columns: 1fr; }
  .contactus__map { min-height: 300px; }
}
@media (max-width: 520px) {
  .contactus { padding: 56px 16px; }
  .contactus__row { grid-template-columns: 1fr; gap: 0; }
  .contactus__form { padding: 26px 20px; }
}
 
 /* ---- Scoped reset ---- */
.hservice *,
.hservice *::before,
.hservice *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* ---- Section shell ---- */
.hservice {
  background: #f4f7f3;
  font-family: var(--dmcmh-font);
  padding: 78px 20px;
}
.hservice__inner { max-width: 1160px; margin: 0 auto; }
 
/* ---- Heading ---- */
.hservice__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}
.hservice__eyebrow {
  display: inline-block;
  color: var(--dmcmh-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.hservice__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmcmh-green);
}
.hservice__title {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dmcmh-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hservice__subtitle { color: #5c6359; font-size: 16px; line-height: 1.7; }
 
/* ---- Grid ---- */
.hservice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
 
/* ---- Card ---- */
.hservice__card {
  position: relative;
  background: var(--dmcmh-white);
  border: 1px solid rgba(131, 137, 123, 0.18);
  border-radius: var(--dmcmh-radius);
  padding: 34px 28px;
  overflow: hidden;
  transition: transform var(--dmcmh-transition),
              box-shadow var(--dmcmh-transition),
              border-color var(--dmcmh-transition);
  /* entrance */
  opacity: 0;
  transform: translateY(32px);
  animation: hservice-up 0.6s ease forwards;
}
.hservice__card:nth-child(1) { animation-delay: 0.05s; }
.hservice__card:nth-child(2) { animation-delay: 0.14s; }
.hservice__card:nth-child(3) { animation-delay: 0.23s; }
.hservice__card:nth-child(4) { animation-delay: 0.32s; }
.hservice__card:nth-child(5) { animation-delay: 0.41s; }
.hservice__card:nth-child(6) { animation-delay: 0.50s; }
@keyframes hservice-up { to { opacity: 1; transform: translateY(0); } }
 
/* top accent bar grows on hover */
.hservice__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dmcmh-green), var(--dmcmh-green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dmcmh-transition);
}
.hservice__card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 24px 46px rgba(14, 94, 44, 0.16);
}
.hservice__card:hover::after { transform: scaleX(1); }
 
/* diagonal shine sweep across card on hover */
.hservice__shine {
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(57,160,67,0.14), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.hservice__card:hover .hservice__shine { left: 140%; }
 
/* ---- Icon ---- */
.hservice__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(57, 160, 67, 0.12);
  color: var(--dmcmh-green-dark);
  margin-bottom: 18px;
  transition: background var(--dmcmh-transition),
              color var(--dmcmh-transition),
              transform var(--dmcmh-transition);
}
.hservice__card:hover .hservice__icon {
  background: var(--dmcmh-green);
  color: var(--dmcmh-white);
  transform: rotate(-6deg) scale(1.08);
}
 
.hservice__name {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 700;
  color: var(--dmcmh-dark);
  margin-bottom: 10px;
}
.hservice__text {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.65;
  color: #5c6359;
  margin-bottom: 16px;
}
 
/* ---- Link ---- */
.hservice__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dmcmh-green-dark);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dmcmh-transition), transform var(--dmcmh-transition);
}
.hservice__card:hover .hservice__link {
  opacity: 1;
  transform: translateX(0);
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hservice__card { animation: none; opacity: 1; transform: none; }
  .hservice__shine { display: none; }
  .hservice__link { opacity: 1; transform: none; }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hservice__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hservice { padding: 56px 16px; }
  .hservice__grid { grid-template-columns: 1fr; }
}
 
 