@charset "UTF-8";
/* Nursing / healthcare palette – calm + modern */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* common */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.section {
  padding: 60px 0;
}

.light {
  background: #f5f6fa;
}

.center {
  text-align: center;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  color: #0b1f24;
  background: #ffffff;
}

/* Headings – softer and more human */
h1, h2, h3, h4 {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
}

h2 {
  font-size: 28px;
}

p {
  color: #5f7d86;
  max-width: 60ch;
}

.header {
  background: #0f4c5c;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.header .logo {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.header {
  /* ----------- DESKTOP NAV ----------- */
}
.header .main-nav {
  display: flex;
  gap: 28px;
}
.header .main-nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.header .main-nav a:hover {
  color: #3a86ff;
}
.header .main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #3a86ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.header .main-nav a:hover::after {
  transform: scaleX(1);
}
.header .main-nav a.active {
  color: #3a86ff;
}
.header .main-nav a.active::after {
  transform: scaleX(1);
}
.header .menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.header #menuToggle {
  display: none;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {
  .header .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0f4c5c;
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .header .main-nav a {
    padding: 14px 18px;
  }
  .header .main-nav a::after {
    display: none;
  }
  .header .main-nav a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #3a86ff;
  }
  .header #menuToggle:checked + .menu-icon + .main-nav {
    display: flex;
  }
  .header .menu-icon {
    display: block;
  }
}
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 0;
}

.hero-image {
  background: linear-gradient(rgba(15, 76, 92, 0.78), rgba(15, 76, 92, 0.78)), url("../images/hero-nursing.png") center/cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* mobile */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 70px;
  }
  .hero p {
    font-size: 16px;
  }
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.img-box {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background: url("../images/about-nursing.png") center/cover no-repeat;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.facility-list {
  max-width: 500px;
  margin: 20px auto 0;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: #0f4c5c;
  color: #fff;
  padding: 56px 0 0;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer .footer-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  color: #fff;
}
.footer .footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.footer p {
  margin: 6px 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
}
.footer a {
  color: #2ec4b6;
  text-decoration: none;
  font-weight: 500;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 8px;
}
.footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.footer .footer-links a:hover {
  color: #2ec4b6;
}
.footer .footer-bottom {
  margin-top: 40px;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Mobile */
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer .footer-links li {
    display: inline-block;
    margin: 0 10px 8px;
  }
}
.card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form {
  max-width: 400px;
  margin: 25px auto 0;
  display: grid;
  gap: 12px;
}
.form input,
.form button {
  padding: 12px;
  font-size: 14px;
}
.form button {
  background: #2ec4b6;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
.form button:hover {
  background: rgb(42.32, 180.32, 167.44);
}

.quick-info {
  background: #ffffff;
}
.quick-info .info-box {
  padding: 30px 20px;
  border-radius: 14px;
  background: #ffffff;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quick-info .info-box h3 {
  color: #0f4c5c;
  font-size: 20px;
  margin-bottom: 8px;
}
.quick-info .info-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.quick-info .info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.courses-home .course-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.courses-home .course-card h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  color: #083b66;
  font-size: 20px;
  font-weight: 600;
}
.courses-home .course-card p {
  font-size: 14px;
  color: #0f4c5c;
  margin: 0;
}
.courses-home .course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.courses-home .course-icon {
  font-size: 36px;
}

.notice-bar {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.08));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.notice-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #0b1f24;
}
.notice-bar strong {
  color: #2ec4b6;
  font-weight: 600;
}
.notice-bar a {
  margin-left: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: #2ec4b6;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.notice-bar a:hover {
  transform: translateY(-1px);
  background: #3a86ff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/*# sourceMappingURL=style.css.map */
