@charset "UTF-8";
:root {
  --navy: #003265;
  --blue: #1da4e2;
  --red: #d72638;
  --white: #ffffff;
  --light-bg: #f4f8fc;
  --text: #1a1a2e;
  --muted: #607080;
  --border: #dce8f0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

a {
  color: inherit !important;
}

.ptb50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: #a8c8e8;
  font-size: 0.78rem;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
}

.topbar a {
  color: #a8c8e8;
  text-decoration: none;
  margin-left: 18px;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--blue);
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0, 50, 101, 0.1);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 38px;
  height: 38px;
}

.logo-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}

nav a:hover, nav a.active {
  background: var(--navy);
  color: var(--white);
}

.btn-apply {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  margin-left: 8px;
}

.btn-apply:hover {
  background: #b01e2b !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #00509e 60%, #006bb8 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 520px;
}

.hero-content p {
  color: #a8c8e8;
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #168dc2;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-stats {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 16px;
}

.stat-pill {
  background: rgba(0, 50, 101, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(29, 164, 226, 0.4);
  padding: 10px 20px;
  border-radius: 6px;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 700;
}

.stat-pill span {
  font-size: 0.72rem;
  color: #a8c8e8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── ANNOUNCEMENT TICKER ── */
.ticker-wrap {
  background: var(--blue);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 42px;
}

.ticker-label {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-content {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.ticker-content span {
  color: var(--white);
  font-size: 0.83rem;
  padding: 0 40px;
  font-weight: 500;
}

.ticker-content span::after {
  content: "◆";
  margin-left: 40px;
  opacity: 0.5;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ── SECTION COMMON ── */
section {
  padding: 72px 80px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue));
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ── PROGRAMS ── */
.programs-section {
  background: var(--light-bg);
}

/*.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}*/
.program-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.program-card:hover {
  box-shadow: 0 8px 30px rgba(0, 50, 101, 0.13);
  transform: translateY(-4px);
}

.program-card-header {
  height: 8px;
  background: linear-gradient(to right, var(--navy), var(--blue));
}

.program-card-body {
  padding: 24px;
}

.program-icon {
  width: 48px;
  height: 48px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.program-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.program-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.program-card a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-card a:hover {
  color: var(--navy);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 50, 101, 0.15);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-dot {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ── STATS BANNER ── */
.stats-banner {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.stat-block {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block:last-child {
  border-right: none;
}

.stat-block strong {
  display: block;
  font-size: 2.6rem;
  color: var(--blue);
  font-family: "Playfair Display", serif;
}

.stat-block span {
  color: #a8c8e8;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 20px;
}

.news-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #a8c8e8;
}

.footer-main {
  padding: 60px 80px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: #a8c8e8;
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--blue);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
  font-size: 0.84rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #a8c8e8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--blue);
}

/* ── DUMMY IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, #b8d4e8, #dce8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #607080;
  font-size: 0.78rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.img-placeholder svg {
  opacity: 0.25;
}

.img-ph-2 {
  background: linear-gradient(135deg, #003265 0%, #1da4e2 100%);
}

.img-ph-3 {
  background: linear-gradient(135deg, #0055a5, #4db8e8);
}

.img-ph-4 {
  background: linear-gradient(135deg, #1da4e2, #66ccff);
}

/* ── PAGE WRAPPER FADE ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  animation: fadeUp 0.7s ease both;
}

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