:root {
  --blue: #0b3f8c;
  --blue2: #062b63;
  --red: #b72b2f;
  --red2: #d83b40;
  --ink: #1d2433;
  --muted: #667085;
  --soft: #f5f7fb;
  --line: #e6eaf2;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.topbar {
  background: var(--blue2);
  color: #fff;
  font-size: 14px;
  padding: 8px 22px;
  text-align: center;
}
.topbar a {
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  height: 58px;
}
.brand h3 {
  margin: 0;
  font-size: 19px;
  color: var(--blue);
  line-height: 1.1; font-weight: bold;
}
.brand p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #233;
}
nav a:hover {
  color: var(--red);
}
.apply {
  background: var(--red);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(183, 43, 47, 0.22);
}
.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  background: linear-gradient(
      135deg,
      rgba(6, 43, 99, 0.92),
      rgba(11, 63, 140, 0.74)
    ),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop")
      center/cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      135deg,
      rgba(6, 43, 99, 0.88),
      rgba(11, 63, 140, 0.68)
    ),
    radial-gradient(circle at 20% 20%, rgba(216, 59, 64, 0.35), transparent 28%),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 28%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 60px 22px;
}
.hero-logo {
  width: 120px;
  height: auto;
  background: #fff;
  border-radius: 26px;
  padding: 14px;
  margin-bottom: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.video-heading {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
}
.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: #f9dede;
}
.hero h1 {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  margin: 14px 0 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: clamp(17px, 2vw, 22px);
  max-width: 820px;
  margin: 0 auto 30px;
  color: #eef3ff;
}
.btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
}
.btn-blue {
  background: #fff;
  color: var(--blue);
}
.btn-red {
  background: var(--red);
  color: white;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.section {
  padding: 86px 22px;
}
.wrap {
  max-width: 1180px;
  margin: auto;
}
.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-title h2 {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--blue2);
}
.section-title p {
  color: var(--muted);
  font-size: 18px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(20, 31, 54, 0.06);
}
.card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: top;
}
.card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.media-box {
  height: 380px;
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(11, 63, 140, 0.95),
    rgba(183, 43, 47, 0.82)
  );
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 63, 140, 0.18);
}
.media-box video {
	height: 380px; object-fit: cover;
}

.program {
  position: relative;
  overflow: hidden;
}
.tag {
  display: inline-block;
  background: #eef3ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.future {
  background: #fff7f7;
  color: var(--red);
}
.dark {
  background: linear-gradient(135deg, var(--blue2), #071a3d);
  color: white;
}
.dark .section-title h2,
.dark .card h3 {
  color: white;
}
.dark .section-title p,
.dark .card p {
  color: #d6def0;
}
.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pill {
  background: #eef3ff;
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}
.dark .pill {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.space-card .icon {
  font-size: 32px;
}
.leadership {
  background: var(--soft);
}
.portrait {
  display: flex;
  gap: 20px;
  align-items: center;
}
.portrait .avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  flex: 0 0 auto; overflow: hidden;
}
.portrait .avatar img {
	width: 100%; height: auto;
}
.cta {
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: white;
  text-align: center;
}
.cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 12px;
  font-family: Montserrat;
}
.cta p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #fff;
}
footer {
  background: #071a3d;
  color: white;
  padding: 56px 22px 20px;
}
.footergrid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footerbrand img {
  height: 70px;
  background: white;
  border-radius: 16px;
  padding: 8px;
}
.footerbrand p,
footer a {
  color: #c8d2e8;
}
.footer h4 {
  margin: 0 0 12px;
}
.copy {
  max-width: 1180px;
  margin: 30px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: #a8b5d0;
  font-size: 14px;
}
.page-hero {
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  color: #fff;
  padding: 76px 22px;
}
.page-hero .wrap {
  max-width: 1180px;
}
.page-hero h1 {
  font-family: Montserrat;
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 12px;
}
.page-hero p {
  font-size: 20px;
  max-width: 760px;
  color: #e9eefb;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.table th {
  background: #eef3ff;
  color: var(--blue);
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .grid-2,
  .grid-3,
  .feature,
  .footergrid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 76vh;
  }
  .brand h3 {
    font-size: 16px;
  }
  .section {
    padding: 60px 18px;
  }
  .media-box {
    min-height: 260px;
  }
  .portrait {
    align-items: flex-start;
  }
  .topbar {
    font-size: 12px;
  }
}

.hero-dept {
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.05;
  margin-bottom: 8px;
  color: #fff;
}
.explore-ddm {
  background: #fff;
}
.media-box span {
  position: absolute;
  inset: auto 24px 24px auto;
  color: white;
  background: rgba(0, 0, 0, 0.22);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
}
.partner {
  min-height: 230px;
}


.badge.bg-primary.fs-6.px-3.py-2 {
  background: #b72b2f !important;
  border-color: #b72b2f !important;
}
.fw-bold.text-primary.mb-3{ color:#b72b2f !important; }
.btn.btn-primary.btn-lg.rounded-pill.px-5 {
  background: #b72b2f !important;
  border-color: #b72b2f !important;
}

#Admissions {
  margin: 50px 0;
}