/* Make degree card images fit edge-to-edge, no border radius, no margin */
.dp-card-image-full {
  width: 100%;
  height: 180px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: none !important;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
}
.dp-card {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 20px;
  overflow: hidden;
}

.dp-card-content-wrapper {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.dp-card {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.dp-card {
  padding-top: 0 !important;
}
/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #E8402A;
  color: #FFFFFF;
  font-size: 14px;
  padding: 8px 0;
}

.top-right a {
  color: #FFFFFF;
  margin-left: 12px;
  opacity: 0.85;
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: #F7F6EC;
  padding: 18px 0;
}

.navbar-brand img {
  height: 48px;
}

.navbar-brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.navbar-brand small {
  font-size: 12px;
  letter-spacing: 2px;
  color: #000000;
}

.nav-link {
  font-weight: 500;
  color: #000000;
}

.nav-link.active {
  border-bottom: 2px solid #E8402A;
}

.btn-apply {
  background: #E8402A;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 30px;
}

/* ===== COURSES HERO ===== */
.courses-hero {
  padding: 120px 0 140px;
  background: #F7F6EC;
}

.courses-hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: #F7F6EC;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 28px;
}

.courses-hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.courses-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .courses-hero {
    padding: 90px 0 100px;
  }

  .courses-hero h1 {
    font-size: 34px;
  }
}
/* ===== JUNIOR PROGRAMS SECTION ===== */
.junior-programs-section {
  padding: 110px 0;
  background: white;
}

/* EYEBROW */
.jp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

/* TITLE */
.jp-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* DESC */
.jp-desc {
  font-size: 16px;
  color: #000000;
  max-width: 620px;
}

/* BADGE */
.jp-badge {
  background: #FAEBD7;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.jp-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F7F6EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jp-badge h6 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.jp-badge span {
  font-size: 13px;
  color: #000000;
}

/* CARD */
.jp-card {
  background: #F7F6EC;
  border: 2px solid #F7F6EC;
  border-radius: 18px;
  padding: 0;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.jp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
  border-color: #E8402A;
}

.jp-card-image {
  width: 100%;
  height: 200px;
  background-size: cover !important;
  background-position: center !important;
}

.jp-card-content {
  padding: 24px;
}

/* CARD TOP */
.jp-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.jp-tag {
  background: #FAEBD7;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.jp-duration {
  font-size: 14px;
  color: #000000;
}

/* CONTENT */
.jp-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.jp-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
}

.jp-card h6 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 22px;
}

/* LIST */
.jp-card ul {
  padding-left: 18px;
  margin-top: 12px;
  margin-bottom: 26px;
}

.jp-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000000;
}

/* LINK */
.jp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #E8402A;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.jp-link:hover {
  color: #A70000;
  gap: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .jp-title {
    font-size: 30px;
  }

  .jp-badge {
    margin-top: 20px;
  }
}
/* ===== DEGREE PROGRAMS SECTION ===== */
.degree-programs-section {
  padding: 110px 0;
  background: white;
}

/* EYEBROW */
.dp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

/* TITLE */
.dp-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* DESC */
.dp-desc {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* POINTS */
.dp-points {
  list-style: none;
  padding: 0;
}

.dp-points li {
  font-size: 15px;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* CARD */
.dp-card {
  background: white;
  border: 2px solid #F7F6EC;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.dp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
  border-color: #E8402A;
}

.dp-card.highlighted {
  background: linear-gradient(135deg, #FAEBD7 0%, #FAEBD7 100%);
  border-color: #E8402A;
  box-shadow: 0 12px 40px rgba(232,64,42,0.15);
}

.dp-card.highlighted:hover {
  box-shadow: 0 20px 60px rgba(232,64,42,0.25);
}

/* CARD TOP */
.dp-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dp-tag {
  background: linear-gradient(135deg, #FAEBD7, #FAEBD7);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  color: #E8402A;
}

.dp-duration {
  font-size: 14px;
  color: #000000;
}

/* CONTENT */
.dp-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #000000;
}

.dp-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 20px;
}
}

.dp-card h6 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 20px;
}

/* LIST */
.dp-card ul {
  padding-left: 18px;
  margin: 12px 0 24px;
}

.dp-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* LINK */
.dp-link {
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
}

.dp-link.filled {
  background: #F7F6EC;
  padding: 12px 18px;
  border-radius: 10px;
  width: 100%;
  justify-content: space-between;
}

/* FOOTER CTA */
.dp-footer-cta {
  margin-top: 36px;
  padding: 22px 26px;
  border: 1px dashed #F7F6EC;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.dp-footer-left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dp-footer-left h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dp-footer-left p {
  font-size: 14px;
  color: #000000;
}

.dp-footer-btn {
  background: #E8402A;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
  .dp-title {
    font-size: 30px;
  }

  .dp-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== ACADEMIC EDGE SECTION ===== */
.academic-edge-section {
  padding: 110px 0;
  background: #F7F6EC;
}

/* TITLE */
.edge-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* SUBTITLE */
.edge-subtitle {
  font-size: 15px;
  color: #000000;
  max-width: 640px;
  margin: 0 auto;
}

/* ITEM */
.edge-item {
  max-width: 360px;
  margin: 0 auto;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  border: 2px solid #F7F6EC;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.edge-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #E8402A;
}

/* ICON */
.edge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(232,64,42,0.3);
}

/* HEADING */
.edge-item h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
}

/* TEXT */
.edge-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
}

/* MOBILE */
@media (max-width: 768px) {
  .edge-title {
    font-size: 28px;
  }
}
/* ===== LEGACY CTA SECTION ===== */
.legacy-cta-section {
  padding: 90px 0;
  background: #F7F6EC;
}

.legacy-cta {
  background: radial-gradient(
    circle at top left,
    #000000,
    #000000 70%
  );
  border-radius: 36px;
  padding: 70px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* CONTENT */
.legacy-cta-content {
  max-width: 560px;
}

.legacy-cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
}

.legacy-cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 34px;
}

/* BUTTONS */
.legacy-cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-legacy-primary {
  background: #F7F6EC;
  color: #E8402A;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-legacy-outline {
  background: transparent;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
}

/* ICON */
.legacy-cta-icon {
  font-size: 160px;
  color: rgba(255,255,255,0.06);
  position: absolute;
  right: 60px;
  bottom: 20px;
  pointer-events: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .legacy-cta {
    padding: 50px 32px;
  }

  .legacy-cta-content h2 {
    font-size: 30px;
  }

  .legacy-cta-icon {
    display: none;
  }
}
