/* ===== CSS Reset & Design Tokens ===== */
:root {
  /* Primary Colors from Figma */
  --color-primary: #1041C6;
  --color-primary-dark: #042963;
  --color-primary-hover: #0d35a8;
  --color-dark: #3a3a3a;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f5f8fe;
  --color-gray-bar: #f5f8fd;
  --color-text-dark: #3a3a3a;
  --color-text-body: #333333;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Spacing */
  --max-width: 1350px;
  --section-padding: 0 45px;

  /* Shadows */
  --shadow-card: 0 0 11px rgba(0, 0, 0, 0.25);
  --shadow-btn: 0 0 4px rgba(0, 0, 0, 0.25);
  --shadow-stats: 0 0 10.5px rgba(0, 0, 0, 0.45);

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--color-dark);
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
  position: relative;
  z-index: 120;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.top-bar__right-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.top-bar__primary {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar__utility {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  white-space: nowrap;
}

.top-bar__right {
  display: flex;
  align-items: center;
  margin-left: 55px;
}

.top-bar__link {
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar__link:hover {
  opacity: 0.8;
}

.top-bar__divider {
  display: none;
}

.top-bar__divider--visible {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.top-bar__pay-btn {
  background: var(--color-gray-light);
  color: var(--color-text-body);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.top-bar__pay-btn:hover {
  background: var(--color-white);
}

.navbar__mobile-bar {
  display: none;
}

.navbar__overlay {
  display: none;
}

.navbar__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  flex-direction: column;
}

.navbar__drawer--open {
  transform: translateX(0) !important;
  display: flex !important;
}

.navbar__drawer-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 2px solid rgba(16, 65, 198, 0.1);
  background: #fff;
}

.navbar__drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #162341;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Drawer nav list */
.navbar__drawer .navbar__nav {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

.navbar__drawer .navbar__item {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(16, 65, 198, 0.08);
}

.navbar__drawer .navbar__item-text {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #162341;
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.navbar__drawer .navbar__item-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #162341;
  text-align: left;
}

.navbar__drawer .navbar__item-button .navbar__item-text {
  padding: 0;
  display: inline;
}

.navbar__drawer .navbar__item-arrow {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile subnav */
.navbar__mobile-subnav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  background: #f0f5ff;
  border-top: 1px solid rgba(16, 65, 198, 0.1);
}

.navbar__mobile-subnav li {
  width: 100%;
  display: block;
}

.navbar__mobile-subitem {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px;
  width: 100%;
  padding: 12px 20px 12px 36px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1041c6;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 65, 198, 0.06);
  background: #f0f5ff;
  cursor: pointer;
  transition: background 0.15s;
}

.navbar__mobile-subitem span:not(.navbar__mobile-subitem-icon) {
  flex: 1;
  min-width: 0;
  white-space: normal !important;
  line-height: 1.4;
  word-break: break-word;
}

.navbar__mobile-subitem:hover {
  background: #dce8ff;
}

.navbar__mobile-subitem-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #1041c6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__mobile-subitem-icon svg {
  width: 16px;
  height: 16px;
}

/* Mobile drawer open state - separate from desktop active styles */
.navbar__drawer .navbar__item--mobile-open {
  background: #f8faff;
}

.navbar__drawer .navbar__item-button--open {
  background: #eef3ff !important;
  color: #1041c6 !important;
}

.navbar__drawer .navbar__item-button--open .navbar__item-text {
  color: #1041c6 !important;
}

.navbar__drawer .navbar__mobile-subnav {
  display: block !important;
  flex: none;
  width: 100%;
  max-height: none;
  overflow: visible;
}

.navbar__drawer .navbar__mobile-subnav li {
  display: block !important;
  width: 100%;
}

.navbar__drawer .navbar__mobile-subitem {
  display: flex !important;
  width: 100%;
}

/* ===== MAIN NAVBAR ===== */
.navbar {
  background: var(--color-white);
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 110;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.navbar__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  
  padding: 0 8px 0 220px;
}

.navbar__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  width: 165px;
  min-width: 165px;
  height: 150px;
  padding: 12px 14px 14px;
  margin-top: 40px;
  border-radius: 0 0 14px 14px;

  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.navbar__logo {
  width: 100%;
  max-width: 116px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.navbar__nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 60px;
  width: 100%;
  margin-left: 0;
}

.navbar__item {
  display: flex;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  position: relative;
  padding: 4px 6px;
}

.navbar__item-button {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  background: transparent;
  padding: 0;
  color: inherit;
  border-radius: 10px;
  transition: background 0.2s, padding 0.2s;
}

.navbar__item-text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
  transition: color 0.2s;
}

.navbar__item:hover .navbar__item-text {
  color: var(--color-primary);
}

.navbar__item--active .navbar__item-text {
  color: #1041c6;
  font-weight: 700;
}

.navbar__item-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.navbar__item-arrow svg {
  width: 11px;
  height: 7px;
  color: var(--color-dark);
  transition: color 0.2s, transform 0.2s;
}

.navbar__item:hover .navbar__item-arrow svg,
.navbar__item--active .navbar__item-arrow svg {
  color: var(--color-primary);
}

.navbar__item--active .navbar__item-arrow {
  transform: rotate(180deg);
}

.navbar__item:hover .navbar__item-button {
  padding: 11px 14px;
  background: #f0f4ff;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(16, 65, 198, 0.15);
}

.navbar__item--active .navbar__item-button {
  padding: 11px 14px;
  background: #f7ecd7;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(232, 206, 157, 0.45);
}

.navbar__item--active .navbar__item-text {
  color: #1041c6;
  font-weight: 700;
}

.navbar__item--active .navbar__item-arrow svg {
  color: #2f2f2f;
}

.navbar__contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar__contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
}

.navbar__contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.navbar__dropdown-shell {
  position: absolute;
  top: 100%;
  left: 220px;
  width: calc(100% - 228px);
  transform: none;
  z-index: 150;
}

.navbar__dropdown-shell--full {
  width: min(1232px, calc(100vw - 180px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.navbar__dropdown-shell--full>* {
  width: 100%;
}

.about-panel {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr) 350px;
  gap: 30px;
  align-items: stretch;
  min-height: 612px;
  padding: 34px 26px 38px;
  border-radius: 0 0 20px 20px;
  background:
    radial-gradient(circle at 42% 6%, rgba(255, 184, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #fefefe, #fbfcff 56%, #f8fbff);
  box-shadow: 0 28px 70px rgba(9, 33, 90, 0.16);
  border: 1px solid rgba(16, 65, 198, 0.06);
  animation: fadeInUp 0.28s ease-out;
}

.about-panel__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(14, 53, 168, 0.1);
}

.about-panel__menu-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 69px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid rgba(14, 53, 168, 0.08);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.about-panel__menu-item:first-child {
  border-radius: 10px 10px 0 0;
}

.about-panel__menu-item:last-child {
  border-radius: 0 0 10px 10px;
}

.about-panel__menu-item+.about-panel__menu-item {
  border-top: none;
}

.about-panel__menu-item:hover {
  transform: translateX(0);
  border-color: rgba(16, 65, 198, 0.24);
  box-shadow: 0 10px 20px rgba(17, 65, 198, 0.08);
}

.about-panel__menu-item--accent {
  border-color: rgba(255, 186, 16, 0.4);
  background: linear-gradient(180deg, #fff9ee, #fff4df);
}

.about-panel__menu-icon,
.about-panel__menu-arrow,
.about-panel__stat-icon,
.about-panel__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-panel__menu-icon {
  width: 36px;
  height: 36px;
  color: #273870;
}

.about-panel__menu-item--accent .about-panel__menu-icon {
  color: #ffae00;
}

.about-panel__menu-icon svg,
.about-panel__menu-arrow svg,
.about-panel__stat-icon svg,
.about-panel__cta-arrow svg {
  width: 100%;
  height: 100%;
}

.about-panel__menu-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.about-panel__menu-title {
  font-size: 13px;
  font-weight: 700;
  color: #22356e;
}

.about-panel__menu-description {
  font-size: 11px;
  color: #5f6785;
}

.about-panel__menu-arrow {
  width: 18px;
  height: 18px;
  color: #22356e;
}

.about-panel__content {
  display: flex;
  flex-direction: column;
  padding: 18px 12px 12px 18px;
  border-right: 1px solid rgba(14, 53, 168, 0.1);
}

.about-panel__eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f6a800;
}

.about-panel__title {
  margin-top: 14px;
  max-width: 430px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
  color: #1f3776;
}

.about-panel__title span {
  color: #ffba10;
}

.about-panel__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: #ffc43d;
}

.about-panel__text {
  max-width: 360px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #4a536f;
}

.about-panel__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.about-panel__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-panel__stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef4ff, #dfe9ff);
  color: #5171d7;
  padding: 9px;
}

.about-panel__stat-value {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1;
  color: #1f3776;
}

.about-panel__stat-label {
  margin-top: 9px;
  max-width: 96px;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #56627f;
}

.about-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 36px;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #15357f, #173f9a 56%, #0f2c72);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(15, 44, 114, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-panel__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 32px rgba(15, 44, 114, 0.3);
}

.about-panel__cta-arrow {
  width: 16px;
  height: 16px;
}

.about-panel__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 4px;
}

.about-panel__image-wrap {
  min-height: 424px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(10, 38, 100, 0.16);
}

.about-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-panel__quote {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 252px;
  padding: 22px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #173f9a, #122f75);
  color: var(--color-white);
  box-shadow: 0 18px 34px rgba(16, 47, 117, 0.28);
}

.about-panel__quote-mark {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 46px;
  line-height: 0.7;
  font-weight: 700;
  color: #ffc538;
}

.about-panel__quote p {
  font-size: 14px;
  line-height: 1.55;
}

.about-panel__quote::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: #ffc538;
}

.programs-panel {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  min-height: 626px;
  padding: 24px 22px 26px;
  border-radius: 0 0 20px 20px;
  background:
    radial-gradient(circle at 46% 6%, rgba(255, 184, 0, 0.16), transparent 23%),
    linear-gradient(180deg, #ffffff, #fbfcff 58%, #f8fbff);
  box-shadow: 0 28px 70px rgba(9, 33, 90, 0.16);
  border: 1px solid rgba(16, 65, 198, 0.06);
  animation: fadeInUp 0.28s ease-out;
}

.programs-panel__menu {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.programs-panel__menu-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  min-height: 94px;
  padding: 16px 16px 14px 18px;
  border: 1px solid rgba(22, 56, 142, 0.09);
  border-top: none;
  background: linear-gradient(180deg, #f9fbff, #f4f8ff);
  text-align: left;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.programs-panel__menu-item:first-child {
  border-top: 1px solid rgba(22, 56, 142, 0.09);
  border-radius: 10px 10px 0 0;
}

.programs-panel__menu-item:last-child {
  border-radius: 0 0 10px 10px;
}

.programs-panel__menu-item:hover {
  border-color: rgba(16, 65, 198, 0.22);
  box-shadow: 0 10px 22px rgba(16, 65, 198, 0.08);
}

.programs-panel__menu-item--accent {
  background: linear-gradient(180deg, #eef5ff, #e8f0fd);
  box-shadow: inset 4px 0 0 #ffbf2e;
}

.programs-panel__menu-icon,
.programs-panel__menu-arrow,
.programs-panel__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-panel__menu-icon {
  width: 34px;
  height: 34px;
  color: #3b63ff;
}

.programs-panel__menu-icon svg {
  width: 22px;
  height: 22px;
}

.programs-panel__menu-arrow svg {
  width: 12px;
  height: 12px;
}

.programs-panel__card-icon svg {
  width: 24px;
  height: 24px;
}

.programs-panel__menu-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.programs-panel__menu-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #213673;
}

.programs-panel__menu-description {
  font-size: 11px;
  line-height: 1.45;
  color: #4f5c80;
}

.programs-panel__menu-arrow {
  width: 18px;
  height: 18px;
  align-self: center;
  color: #26376d;
}

.programs-panel__main {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
}

.programs-panel__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 456px;
  gap: 26px;
  padding: 16px 2px 22px 26px;
  border-bottom: 1px solid rgba(21, 53, 127, 0.1);
}

.programs-panel__intro {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.programs-panel__eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f6a800;
}

.programs-panel__title {
  margin-top: 18px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #203878;
}

.programs-panel__title span {
  color: #2671ff;
}

.programs-panel__title::before {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ffc43d;
}

.programs-panel__text {
  max-width: 372px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #475472;
}

.programs-panel__visual {
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(10, 38, 100, 0.14);
}

.programs-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 14px 0 14px 26px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1041c6;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.programs-panel__cta:hover {
  background: #1041c6;
  color: #ffffff;
  transform: translateY(-1px);
}

.programs-panel__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.programs-panel__cta-arrow svg {
  width: 12px;
  height: 12px;
}

.programs-panel__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.programs-panel__card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 28px 26px 26px;
  min-height: 122px;
}

.programs-panel__card:nth-child(odd) {
  border-right: 1px solid rgba(21, 53, 127, 0.1);
}

.programs-panel__card:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(21, 53, 127, 0.1);
}

.programs-panel__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f1f6ff, #e4edff);
  color: #3c66ff;
  padding: 11px;
}

.programs-panel__card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.programs-panel__card-title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #213673;
}

.programs-panel__card-text {
  font-size: 13px;
  line-height: 1.55;
  color: #4f5c80;
}

@media (max-width: 1320px) {
  .navbar__dropdown-shell {
    width: min(1160px, calc(100vw - 72px));
  }

  .about-panel {
    grid-template-columns: 286px minmax(0, 1fr) 320px;
    gap: 22px;
    padding: 28px 22px 30px;
  }

  .about-panel__menu {
    padding-right: 22px;
  }

  .about-panel__content {
    padding-left: 4px;
    padding-right: 4px;
  }

  .about-panel__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .programs-panel {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .programs-panel__hero {
    grid-template-columns: minmax(0, 1fr) 380px;
    padding-left: 18px;
  }

  .programs-panel__title {
    font-size: 34px;
  }
}

@media (max-width: 1180px) {
  .navbar__dropdown-shell {
    width: min(980px, calc(100vw - 32px));
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-panel__menu,
  .about-panel__content {
    border-right: none;
    padding-right: 0;
  }

  .about-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-panel__visual {
    padding-left: 0;
  }

  .about-panel__image-wrap {
    min-height: 320px;
  }

  .about-panel__quote {
    right: 20px;
    bottom: 20px;
  }

  .programs-panel {
    grid-template-columns: 1fr;
  }

  .programs-panel__hero {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .programs-panel__cards {
    grid-template-columns: 1fr;
  }

  .programs-panel__card:nth-child(odd) {
    border-right: none;
  }

  .programs-panel__card:nth-child(-n + 2),
  .programs-panel__card:nth-child(3) {
    border-bottom: 1px solid rgba(21, 53, 127, 0.1);
  }
}

@media (max-width: 1024px) {
  .programs-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs-panel__menu-item:first-child {
    border-radius: 10px 0 0 0;
  }

  .programs-panel__menu-item:nth-child(2) {
    border-top: 1px solid rgba(22, 56, 142, 0.09);
    border-radius: 0 10px 0 0;
  }

  .programs-panel__menu-item:last-child {
    border-radius: 0 0 10px 0;
  }
}

@media (min-width: 1025px) {
  .programs-panel {
    min-height: 540px;
    padding: 18px 20px 20px;
  }

  .programs-panel__menu-item {
    min-height: 76px;
    padding: 10px 14px;
  }

  .programs-panel__menu-icon {
    width: 36px;
    height: 36px;
  }

  .programs-panel__hero {
    padding: 10px 2px 16px 20px;
  }

  .programs-panel__title {
    margin-top: 12px;
    font-size: 32px;
  }

  .programs-panel__title::before {
    margin-bottom: 12px;
  }

  .programs-panel__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .programs-panel__visual {
    min-height: 200px;
  }

  .programs-panel__card {
    min-height: 104px;
    padding: 18px 22px 18px 22px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 14px 0 24px 45px;
}

.hero__heading {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-black);
  margin-bottom: 22px;
}

.hero__heading-line {
  display: block;
}

.hero__heading-line+.hero__heading-line {
  margin-top: 2px;
}

.hero__heading-line--accent {
  color: var(--color-primary);
  font-weight: 700;
}

.hero__subtext {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.38;
  color: var(--color-black);
  margin-bottom: 58px;
  max-width: 430px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  height: 52px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
}

#explore-programs-btn {
  min-width: 236px;
}

#campus-tour-btn {
  min-width: 260px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 65, 198, 0.4);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--secondary:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn__arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn__arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn:hover .btn__arrow svg {
  transform: translateX(3px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  width: calc(100% - 90px);
  max-width: none;
  margin: -120px auto 0;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #0a275d 0%, #113476 100%);
  border-radius: 20px;
  padding: 40px 45px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  column-gap: 0;
  box-shadow: 0 14px 32px rgba(10, 39, 93, 0.28);
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  justify-content: center;
  padding-left: 10px;
}



.stats-bar__icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-bar__icon svg {
  width: 32px;
  height: 32px;
  color: #ffbe23;
  opacity: 1;
}

.stats-bar__info {
  display: flex;
  flex-direction: column;
  gap: -3px;
}

.stats-bar__number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: #ffbe23;
  line-height: 1.2;
}

.stats-bar__label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PROGRAMS SECTION ===== */
.programs {
  padding: 80px 0 40px;
  width: 100%;
  overflow-x: hidden;
}

.programs__shell {
  padding: 0 5%;
  margin-bottom: 30px;
}



.programs__grid {
  padding: 0 5%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.programs__card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: none;
  position: relative;
  height: 320px;
}

.programs__card--slot-1 {
  grid-column: 1 / span 8;
}

.programs__card--slot-2 {
  grid-column: 9 / -1;
}

.programs__card--slot-3 {
  grid-column: 1 / span 5;
}

.programs__card--slot-4 {
  grid-column: 6 / -1;
}

@keyframes floatRight {
  0% {
    transform: translateX(-50px);
  }

  50% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(-50px);
  }
}

@keyframes floatLeft {
  0% {
    transform: translateX(50px);
  }

  50% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(50px);
  }
}

.programs__card--float-right {
  animation: floatRight 10s ease-in-out infinite;
}

.programs__card--float-left {
  animation: floatLeft 10s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .programs__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .programs__card {
    grid-column: span 1 !important;
    height: 280px;
  }

  .programs__card--float-right,
  .programs__card--float-left {
    animation: none;
  }
}

.programs__card-title {
  font-size: 18px;
  font-weight: 600;
}

.programs__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: white;
  display: flex;
  align-items: flex-end;
}

.programs__card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== PROGRAMS SPOTLIGHT ===== */
.programs-spotlight {
  padding: 16px 0 70px;
}

.programs-spotlight__shell {
  padding-left: 45px;
  padding-right: 45px;
}

.programs-spotlight__shell {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 58px 34px 24px;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.programs-spotlight__shell::before,
.programs-spotlight__shell::after {
  display: none;
}

.programs-spotlight__hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-height: 320px;
}

.programs-spotlight__intro {
  max-width: 560px;
}

.programs-spotlight__eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.programs-spotlight__accent-line {
  display: block;
  width: 44px;
  height: 4px;
  margin: 16px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb11a 0%, #f6cd62 100%);
}

.programs-spotlight__title {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.08;
  color: #102b61;
}

.programs-spotlight__title-line {
  display: block;
  color: black;
}

.programs-spotlight__title-line--lead {
  white-space: nowrap;
  color: black;
}

.programs-spotlight__title-line:not(.programs-spotlight__title-line--lead) {
  white-space: nowrap;
}

.programs-spotlight__title-highlight {
  color: #1f63db;
}

.programs-spotlight__description {
  max-width: 520px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(16, 43, 97, 0.8);
}

.programs-spotlight__actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.programs-spotlight__cta {
  gap: 14px;
  padding-inline: 24px;
  min-width: 238px;
  box-shadow: 0 10px 22px rgba(16, 65, 198, 0.28);
}

.programs-spotlight__art {
  position: absolute;
  right: 160px;
  top: 0px;
  width: 420px;
  height: 300px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-spotlight__art-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.programs-spotlight__orb {
  position: absolute;
  border-radius: 50%;
}

.programs-spotlight__orb--gold {
  width: 26px;
  height: 26px;
  left: 8px;
  top: 84px;
  background: #ffc54d;
  opacity: 0.8;
}



.programs-spotlight__card-grid {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
}

.programs-spotlight__card-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.programs-spotlight__card-viewport::-webkit-scrollbar {
  display: none;
}

.programs-spotlight__carousel {
  position: relative;
  z-index: 2;

}

.programs-spotlight__card-viewport {
  width: 100%;
}

.programs-spotlight__carousel-button {
  position: absolute;
  top: 208px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1f63db;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 65, 198, 0.14);
  box-shadow: 0 10px 20px rgba(16, 65, 198, 0.12);
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 4;
}

.programs-spotlight__carousel-button:hover {
  transform: translateY(calc(-50% - 2px));
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(16, 65, 198, 0.16);
}

.programs-spotlight__carousel-button--prev {
  left: 18px;
}

.programs-spotlight__carousel-button--next {
  right: 18px;
}

.programs-spotlight__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 0;
  min-height: 480px;
  padding: 16px 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 225, 244, 0.85);
  /* Shadow emphasizing the border */
  
  scroll-snap-align: start;
}

.programs-spotlight__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: var(--spotlight-accent);
  border-top-left-radius: 17px;
  z-index: 2;
  pointer-events: none;
}

.programs-spotlight__card--blue {
  --spotlight-accent: #1f63db;
}

.programs-spotlight__card--green {
  --spotlight-accent: #6cbf46;
}

.programs-spotlight__card--violet {
  --spotlight-accent: #6a32df;
}

.programs-spotlight__card--orange {
  --spotlight-accent: #ff8b1a;
}

.programs-spotlight__card--cyan {
  --spotlight-accent: #27c6d8;
}

.programs-spotlight__card--rose {
  --spotlight-accent: #e11d48;
}

.programs-spotlight__card-watermark {
  position: absolute;
  bottom: 0px;
  right: -10px;
  width: 140px;
  height: 140px;
  opacity: 0.1;
  color: var(--spotlight-accent);
  pointer-events: none;
  z-index: 0;
}

.programs-spotlight__card-icon {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--spotlight-accent);
  background: #ffffff;
  border: 7px solid #ffffff;
  box-shadow: 0 10px 18px rgba(16, 65, 198, 0.12);
  z-index: 3;
}

.programs-spotlight__card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--spotlight-accent);
  opacity: 0.12;
  pointer-events: none;
}

.programs-spotlight__card-icon>svg {
  position: relative;
  z-index: 1;
}

.programs-spotlight__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.programs-spotlight__card-title {
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.2;
  color: #142a5c;
}

.programs-spotlight__card-line {
  display: block;
  width: 40px;
  height: 3px;
  margin: 14px 0 16px;
  border-radius: 999px;
  background: var(--spotlight-accent);
}

.programs-spotlight__card-description {
  min-height: 90px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 42, 92, 0.84);
}

.programs-spotlight__card-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--spotlight-accent);
  font-size: 15px;
  font-weight: 700;
}

.programs-spotlight__card-link-arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 65, 198, 0.08);
}

.programs-spotlight__benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  padding: 18px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #113476 0%, #0a275d 100%);
  color: #ffffff;
  box-shadow: none;
}

.programs-spotlight__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 22px;
}

.programs-spotlight__benefit+.programs-spotlight__benefit {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.programs-spotlight__benefit-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.programs-spotlight__benefit-copy h3 {
  font-size: 15px;
  font-weight: 700;
}

.programs-spotlight__benefit-copy p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* ===== PLACEMENTS SHOWCASE ===== */
.placements-showcase {
  padding: 0 0 75px;
}

.placements-showcase__shell {
  max-width: 1460px;
  margin: 0 auto;
  padding: 50px 34px 36px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.placements-showcase__shell::after {
  display: none;
}

.placements-showcase__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.placements-showcase__intro {
  max-width: 500px;
}

.placements-showcase__title {
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
  line-height: 1.08;
  color: #101f43;
  white-space: nowrap;
}

.placements-showcase__title span {
  color: #1f63db;
}

.placements-showcase__accent {
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbb1f 0%, #ffd870 100%);
}

.placements-showcase__accent--small {
  width: 42px;
  margin: 18px 0 16px;
}

.placements-showcase__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(16, 31, 67, 0.82);
}

.placements-showcase__cta {
  min-width: 292px;
  padding-inline: 24px;
  box-shadow: 0 10px 22px rgba(16, 65, 198, 0.26);
}

.placements-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  align-items: start;
}

.placements-showcase__card,
.placements-showcase__stats-card {
  min-width: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(16, 65, 198, 0.12),
    0 0 0 1px rgba(16, 65, 198, 0.12),
    inset 0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 -1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.placements-showcase__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 34px rgba(16, 65, 198, 0.18),
    0 0 0 1px rgba(16, 65, 198, 0.18),
    inset 0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 -1px 2px rgba(0, 0, 0, 0.04);
}

.placements-showcase__card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
  border-right: 5px solid #ffbe23;
}

.placements-showcase__photo-wrap {
  position: relative;
  height: 100%;
  background: #f5f8fd;
}

.placements-showcase__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placements-showcase__card-body {
  padding: 24px 32px 24px 48px;
}

.placements-showcase__card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.placements-showcase__celebrate {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: #101f43;
  background: linear-gradient(180deg, #ffc61e 0%, #ffb300 100%);
}

.placements-showcase__card-head h3 {
  font-size: 20px;
  color: #161f34;
}

.placements-showcase__student-name {
  margin-top: 6px;
  color: #2356d4;
  font-size: 15px;
  font-weight: 700;
}

.placements-showcase__card-copy {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(22, 31, 52, 0.86);
}

.placements-showcase__card-copy .text-blue {
  color: #2356d4;
}

.placements-showcase__package-row {
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 0;
  margin-top: 18px;
  border: 2px solid #2b5de0;
  border-radius: 10px;
  overflow: hidden;
  width: min(100%, 330px);
}

.placements-showcase__package {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: linear-gradient(180deg, #2d66eb 0%, #1d50c6 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.placements-showcase__company-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: #ffffff;
  color: #2d4b77;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.placements-showcase__signoff {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
  font-size: 14px;
  color: rgba(22, 31, 52, 0.86);
}

.placements-showcase__signoff strong {
  color: #182a5d;
}

.placements-showcase__stats-card {
  overflow: hidden;
}

.placements-showcase__stats-hero {
  height: 100%;
  min-height: 294px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  background-size: cover;
  background-position: center;
}

.placements-showcase__stats-copy {
  padding: 50px 26px 28px 24px;
}

.placements-showcase__stats-copy h3 {
  font-size: 28px;
  line-height: 1.25;
  color: #162341;
}

.placements-showcase__stats-copy h3 span {
  color: #1f63db;
}

.placements-showcase__stats-copy p {
  max-width: 280px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(22, 35, 65, 0.82);
}

.placements-showcase__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(25, 49, 104, 0.08);
}

.placements-showcase__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 34px 24px;
  min-width: 0;
}

.placements-showcase__stat:nth-child(1),
.placements-showcase__stat:nth-child(2) {
  border-bottom: 1px solid rgba(25, 49, 104, 0.08);
}

.placements-showcase__stat:nth-child(odd) {
  border-right: 1px solid rgba(25, 49, 104, 0.08);
}

.placements-showcase__stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.placements-showcase__stat-icon--gold {
  color: #8a6d00;
  background: #fff5d7;
}

.placements-showcase__stat-icon--blue {
  color: #1f63db;
  background: #e8f0ff;
}

.placements-showcase__stat-icon--green {
  color: #2f8f57;
  background: #e8f8ed;
}

.placements-showcase__stat-icon--violet {
  color: #7042dd;
  background: #f0eaff;
}

.placements-showcase__stat-copy {
  min-width: 0;
}

.placements-showcase__stat-copy strong {
  display: block;
  font-size: 19px;
  color: #162341;
}

.placements-showcase__stat-copy span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(22, 35, 65, 0.82);
}

.placements-showcase__partners {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #113476 0%, #0a275d 100%);
  box-shadow: none;
}

.placements-showcase__partners-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 10px 12px 6px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.placements-showcase__partners-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #173a88;
  background: #ffffff;
}

.placements-showcase__partners-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 15px;
  line-height: 1.2;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.placements-showcase__partners-rail {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 14px 12px;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.placements-showcase__partners-track {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: marquee-scroll 18s linear infinite;
  width: max-content;
}

.placements-showcase__partners-rail:hover .placements-showcase__partners-track {
  animation-play-state: paused;
}

.placements-showcase__partner-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 64px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 90, 0.08);
  box-shadow: 0 14px 36px rgba(17, 52, 114, 0.08);
}

.placements-showcase__partner-logo {
  max-height: 40px;
  width: auto;
  display: block;
}

.placements-showcase__partner-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 56px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(20, 35, 90, 0.08);
  background: #ffffff;
  color: #26417a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== FACULTY SHOWCASE ===== */
.faculty-showcase {
  padding: 0 0 78px;
}

.faculty-showcase__shell {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
  padding: 44px 34px 34px;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.faculty-showcase__shell::after {
  display: none;
}

.faculty-showcase__tabs,
.faculty-showcase__header,
.faculty-showcase__grid {
  position: relative;
  z-index: 1;
}

.faculty-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
}

.faculty-showcase__tab {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(16, 31, 67, 0.82);
  font-size: 17px;
  font-weight: 500;
}

.faculty-showcase__tab-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2f5fb;
}

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

.faculty-showcase__tab--active {
  position: relative;
  color: #183d8b;
  font-weight: 700;
}

.faculty-showcase__tab--active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 234px;
  height: 4px;
  border-radius: 999px;
  background: #1f63db;
}

.faculty-showcase__tab--active .faculty-showcase__tab-icon {
  color: #1f63db;
  background: #eef4ff;
}

.faculty-showcase__header {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 56px;
}

.faculty-showcase__intro {
  max-width: 540px;
}

.faculty-showcase__title {
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1.08;
  color: #102b61;
  white-space: nowrap;
}

.faculty-showcase__title span {
  color: #1f63db;
}

.faculty-showcase__accent {
  display: block;
  width: 58px;
  height: 4px;
  margin: 18px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbe23 0%, #ffd767 100%);
}

.faculty-showcase__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(16, 43, 97, 0.82);
}

.faculty-showcase__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  margin-top: 8px;
}

.faculty-showcase__dots {
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: -1;
  width: 132px;
  height: 84px;
  opacity: 0.7;
  background-image: radial-gradient(circle, rgba(31, 99, 219, 0.3) 0 3px, transparent 3.5px);
  background-size: 22px 21px;
}

.faculty-showcase__cta {
  min-width: 286px;
  padding-inline: 22px;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(16, 65, 198, 0.26);
}

.faculty-showcase__cta svg {
  width: 26px;
  height: 26px;
}

.faculty-showcase__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faculty-showcase__carousel {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.faculty-showcase__carousel-button {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1f63db;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 65, 198, 0.14);
  box-shadow: 0 10px 20px rgba(16, 65, 198, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transform: translateY(-50%);
  z-index: 2;
}

.faculty-showcase__carousel-button--prev {
  left: 8px;
}

.faculty-showcase__carousel-button--next {
  right: 8px;
}

.faculty-showcase__carousel-button:hover {
  transform: translateY(calc(-50% - 2px));
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(16, 65, 198, 0.16);
}

.faculty-showcase__viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.faculty-showcase__viewport::-webkit-scrollbar {
  display: none;
}

.faculty-showcase__grid {
  display: flex;
  gap: 24px;
}

.faculty-showcase__card {
  --faculty-accent: #1f63db;
  position: relative;
  flex: 0 0 calc((100% - 96px) / 5);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 522px;
  padding: 24px 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(218, 228, 246, 0.7);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 -1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faculty-showcase__card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.faculty-showcase__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: var(--faculty-accent);
  display: block;
}

.faculty-showcase__card--cyan {
  --faculty-accent: #1fb7e2;
}

.faculty-showcase__card--gold {
  --faculty-accent: #ffbe23;
}

.faculty-showcase__card--blue {
  --faculty-accent: #1f63db;
}

.faculty-showcase__card--violet {
  --faculty-accent: #9a43f0;
}

.faculty-showcase__portrait-wrap {
  width: 222px;
  height: 222px;
  margin: 0 auto;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fbfdff 0%, #edf3fd 100%);
  box-shadow:
    inset 0 0 0 1px rgba(16, 65, 198, 0.08),
    0 8px 22px rgba(20, 35, 90, 0.06);
}

.faculty-showcase__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.faculty-showcase__badge {
  width: 56px;
  height: 56px;
  margin: -24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--faculty-accent);
  border: 4px solid #ffffff;
  box-shadow: 0 10px 18px rgba(20, 35, 90, 0.12);
  position: relative;
  z-index: 1;
}

.faculty-showcase__badge svg {
  width: 24px;
  height: 24px;
}

.faculty-showcase__name {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #19326c;
}

.faculty-showcase__line {
  display: block;
  width: 44px;
  height: 3px;
  margin: 5px auto 9px;
  border-radius: 999px;
  background: var(--faculty-accent);
}

.faculty-showcase__info {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  min-height: 112px;
}

.faculty-showcase__info--cyan {
  background: linear-gradient(180deg, #f6fbff 0%, #eef7fb 100%);
}

.faculty-showcase__info--gold {
  background: linear-gradient(180deg, #fffdf6 0%, #fbf5e9 100%);
}

.faculty-showcase__info--blue {
  background: linear-gradient(180deg, #f7faff 0%, #edf2fb 100%);
}

.faculty-showcase__info--violet {
  background: linear-gradient(180deg, #fcf8ff 0%, #f4eefb 100%);
}

.faculty-showcase__info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faculty-showcase__info-row+.faculty-showcase__info-row {
  margin-top: 12px;
}

.faculty-showcase__info-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--faculty-accent);


}

.faculty-showcase__info-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  margin: auto;
}

.faculty-showcase__info-row strong,
.faculty-showcase__info-row span {
  display: block;
}

.faculty-showcase__info-row strong {
  font-size: 14px;
  font-weight: 500;
  color: #27365c;
}

.faculty-showcase__info-row span {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(39, 54, 92, 0.82);
}

.faculty-showcase__card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 14px;
}

.faculty-showcase__card-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--faculty-accent);
  color: var(--faculty-accent);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 35, 90, 0.05);
}

.faculty-showcase__card-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 4;
}

/* ===== INSTITUTIONS SHOWCASE ===== */
.institutions-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.institutions-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background-image: radial-gradient(#1f63db11 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.institutions-showcase__shell {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 34px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.institutions-showcase__shell::after {
  display: none;
}

.institutions-showcase__header,
.institutions-showcase__grid,
.institutions-showcase__featured {
  position: relative;
  z-index: 1;
}

.institutions-showcase__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.institutions-showcase__intro {
  max-width: 560px;
}

.institutions-showcase__title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.institutions-showcase__title-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1f63db;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 25px rgba(31, 99, 219, 0.1);
  border: 1px solid rgba(31, 99, 219, 0.1);
}

.institutions-showcase__title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #032155;
  white-space: nowrap;
}

.institutions-showcase__accent {
  display: block;
  width: 72px;
  height: 5px;
  margin: 14px 0 18px 100px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbe23 0%, #ffd767 100%);
}

.institutions-showcase__subtitle {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(16, 43, 97, 0.82);
}

.institutions-showcase__cta {
  min-width: 248px;
  padding-inline: 24px;
  box-shadow: 0 10px 22px rgba(16, 65, 198, 0.26);
}

.institutions-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.institutions-showcase__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(218, 228, 246, 0.72);
  border-bottom: 3px solid #ffbe23;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(20, 35, 90, 0.06);
}

.institutions-showcase__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.institutions-showcase__card-badge {
  width: 72px;
  height: 72px;
  margin: -36px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6f9ff 0%, #ebf2ff 100%);
  color: #2d55d3;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 18px rgba(20, 35, 90, 0.08);
  position: relative;
  z-index: 1;
}

.institutions-showcase__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 24px 22px;
}

.institutions-showcase__card-title {
  min-height: 108px;
  font-size: 22px;
  line-height: 1.34;
  color: #1d3170;
}

.institutions-showcase__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.institutions-showcase__meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(29, 49, 112, 0.84);
}

.institutions-showcase__meta-row--gold .institutions-showcase__meta-icon {
  color: #c47f00;
  background: #fff4d6;
  border-radius: 6px;
  padding: 4px;
  width: 26px;
  height: 26px;
}

.institutions-showcase__meta-row--blue .institutions-showcase__meta-icon {
  color: #1a44b8;
  background: #e0e9ff;
  border-radius: 6px;
  padding: 4px;
  width: 26px;
  height: 26px;
}

.institutions-showcase__meta-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.institutions-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
  color: #2646c7;
  font-size: 15px;
  font-weight: 700;
}

.institutions-showcase__link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.institutions-showcase__featured {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 24px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(218, 228, 246, 0.72);
  box-shadow: 0 14px 28px rgba(20, 35, 90, 0.06);
}

.institutions-showcase__featured-image-wrap {
  position: relative;
}

.institutions-showcase__featured-image {
  width: 100%;
  height: 320px;
  min-height: 0;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.institutions-showcase__featured-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 28px 22px 80px;
  position: relative;
}

.institutions-showcase__featured-content::before {
  content: '';
  position: absolute;
  right: -28px;
  top: -22px;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #ffbe23 0%, #ffd767 100%);
  transform: skew(-20deg);
  border-radius: 8px;
}

.institutions-showcase__featured-badge {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d55d3;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6f9ff 0%, #ebf2ff 100%);
  box-shadow: 0 10px 18px rgba(20, 35, 90, 0.08);
  position: absolute;
  top: 20px;
  right: -80px;
  z-index: 2;
}

.institutions-showcase__featured-title {
  max-width: 420px;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.35;
  color: #1d3170;
}

.institutions-showcase__featured-content .institutions-showcase__meta-row {
  max-width: 420px;
  margin-top: 14px;
}

.institutions-showcase__link--featured {
  margin-top: 18px;
  padding-top: 0;
}

.institutions-showcase__dots {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 108px;
  height: 70px;
  opacity: 0.7;
  background-image: radial-gradient(circle, rgba(31, 99, 219, 0.28) 0 3px, transparent 3.5px);
  background-size: 18px 18px;
}

/* ===== HAPPENINGS SHOWCASE ===== */
.happenings-showcase {
  padding: 0 0 78px;
}

.happenings-showcase__shell {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
  padding: 48px 34px 22px;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.happenings-showcase__shell::after {
  display: none;
}

.happenings-showcase__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.happenings-showcase__intro {
  position: relative;
  padding-left: 4px;
}

.happenings-showcase__spark {
  position: absolute;
  left: -18px;
  top: 8px;
  width: 32px;
  height: 72px;
  opacity: 0.9;

  background-size: 16px 18px;
}

.happenings-showcase__title {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: #133588;
}

.happenings-showcase__title span {
  color: #ffb11a;
}

.happenings-showcase__accent {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb11a 0%, #ffd770 100%);
}

.happenings-showcase__cta {
  min-width: 246px;
  padding-inline: 24px;
  box-shadow: 0 12px 24px rgba(16, 65, 198, 0.22);
}

.happenings-showcase__events {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.happenings-showcase__event-card {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 244, 0.9);
  box-shadow: 0 12px 28px rgba(20, 35, 90, 0.07);
}

.happenings-showcase__event-media {
  position: relative;
}

.happenings-showcase__event-image {
  width: 100%;
  height: 228px;
  object-fit: cover;
  clip-path: ellipse(120% 100% at 50% 0%);
}

.happenings-showcase__date {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 66px;
  min-height: 78px;
  padding: 10px 8px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(20, 35, 90, 0.16);
}

.happenings-showcase__date strong {
  font-size: 21px;
  line-height: 1;
}

.happenings-showcase__date span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.happenings-showcase__date--coral {
  background: linear-gradient(180deg, #ff6f54 0%, #ff834d 100%);
}

.happenings-showcase__date--mint {
  background: linear-gradient(180deg, #26c4a5 0%, #15b6b1 100%);
}

.happenings-showcase__date--blue {
  background: linear-gradient(180deg, #216de7 0%, #1558cd 100%);
}

.happenings-showcase__date--gold {
  background: linear-gradient(180deg, #ffba1a 0%, #ff9d14 100%);
}

.happenings-showcase__event-body {
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 30px 18px 18px;
}

.happenings-showcase__event-title {
  color: #203b82;
  font-size: 16px;
  line-height: 1.75;
}

.happenings-showcase__event-link,
.happenings-showcase__announcement-arrow {
  width: 36px;
  height: 36px;
  margin-top: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #2d6ef0;
  color: #2d6ef0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.happenings-showcase__event-link:hover,
.happenings-showcase__announcement-arrow:hover {
  transform: translateX(2px);
  background: rgba(45, 110, 240, 0.06);
}

.happenings-showcase__announcements {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding: 10px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% -10%, rgba(16, 65, 198, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(219, 228, 244, 0.95);
  box-shadow:
    0 18px 34px rgba(20, 35, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.happenings-showcase__announcements-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 20px 18px;
}

.happenings-showcase__announcements-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.happenings-showcase__announcements-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #2d6ef0;
  background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
  border: 1px solid rgba(214, 225, 244, 0.95);
  box-shadow: 0 12px 24px rgba(20, 35, 90, 0.08);
}

.happenings-showcase__announcements-title-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.happenings-showcase__announcements-title {
  color: #173c94;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.happenings-showcase__announcements-accent {
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb11a 0%, #ffd770 100%);
}

.happenings-showcase__announcements-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 6px;
  color: #2854bf;
  font-size: 15px;
  font-weight: 700;
}

.happenings-showcase__announcements-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 34px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbf2f 0%, #ffd96e 100%);
}

.happenings-showcase__announcements-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.happenings-showcase__announcement-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 244, 0.95);
  box-shadow: 0 10px 24px rgba(20, 35, 90, 0.05);
}

.happenings-showcase__announcement {
  min-width: 0;
  display: grid;
  grid-template-columns: 78px 62px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

.happenings-showcase__announcement+.happenings-showcase__announcement {
  border-left: 1px solid rgba(219, 228, 244, 0.95);
}

.happenings-showcase__announcement-date {
  min-height: 96px;
  border-radius: 14px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(20, 35, 90, 0.12);
}

.happenings-showcase__announcement-date strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.happenings-showcase__announcement-date span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.happenings-showcase__announcement-date span:last-child {
  font-size: 12px;
  font-weight: 600;
}

.happenings-showcase__announcement-date--coral {
  background: linear-gradient(180deg, #ff6f54 0%, #ff834d 100%);
}

.happenings-showcase__announcement-date--mint {
  background: linear-gradient(180deg, #26c4a5 0%, #15b6b1 100%);
}

.happenings-showcase__announcement-date--blue {
  background: linear-gradient(180deg, #216de7 0%, #1558cd 100%);
}

.happenings-showcase__announcement-icon-card {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.happenings-showcase__announcement-icon-card--coral {
  color: #ff6f54;
  background: #fff2ef;
}

.happenings-showcase__announcement-icon-card--mint {
  color: #18b8ac;
  background: #edfffb;
}

.happenings-showcase__announcement-icon-card--blue {
  color: #216de7;
  background: #edf4ff;
}

.happenings-showcase__announcement-text {
  color: #223f85;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.happenings-showcase__announcement-arrow {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 0;
  margin: 0;
  margin-top: 70px;
  color: #2d6ef0;
  background: transparent;
}

.happenings-showcase__announcement-arrow svg {
  width: 24px;
  height: 24px;
}

.happenings-showcase__stats-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(219, 228, 244, 0.95);
  box-shadow: 0 16px 30px rgba(20, 35, 90, 0.07);
}

.happenings-showcase__stats-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f63db 0%, #0f4fc5 100%);
}

.happenings-showcase__cta-section {
  margin-top: 52px;
}

.happenings-showcase__stat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 24px 34px;
}

.happenings-showcase__stat+.happenings-showcase__stat {
  border-left: 1px solid rgba(219, 228, 244, 0.95);
}

.happenings-showcase__stat-icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.happenings-showcase__stat-icon--blue {
  color: #1f63db;
  background: #edf4ff;
}

.happenings-showcase__stat-icon--gold {
  color: #f5a400;
  background: #fff7e6;
}

.happenings-showcase__stat-icon--mint {
  color: #18b8ac;
  background: #e9fffa;
}

.happenings-showcase__stat-icon--violet {
  color: #a45af0;
  background: #f6edff;
}

.happenings-showcase__stat-copy {
  min-width: 0;
}

.happenings-showcase__stat-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #163b92;
  font-size: 26px;
  line-height: 1;
}

.happenings-showcase__stat-copy span {
  display: block;
  color: #233d83;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.happenings-showcase__cta-panel {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  margin-top: 52px;
  padding: 38px 60px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2b70 0%, #103c96 54%, #0d327b 100%);
  box-shadow:
    12px 0 0 #fdb515;
}

.happenings-showcase__cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 18%, rgba(31, 99, 219, 0.26) 18% 30%, transparent 30% 100%),
    radial-gradient(circle at 22% 40%, rgba(61, 110, 224, 0.22), transparent 28%);
  pointer-events: none;
}

.happenings-showcase__cta-panel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, #ffbe1a 0%, #f3a400 100%);
}

.happenings-showcase__cta-rail,
.happenings-showcase__cta-dots,
.happenings-showcase__cta-visual,
.happenings-showcase__cta-content,
.happenings-showcase__cta-building {
  position: relative;
  z-index: 1;
}

.happenings-showcase__cta-rail {
  position: absolute;
  pointer-events: none;
}

.happenings-showcase__cta-rail--left {
  left: 144px;
  top: -126px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 54px solid rgba(30, 84, 194, 0.3);
}

.happenings-showcase__cta-rail--right {
  right: -78px;
  bottom: -78px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.04);
}

.happenings-showcase__cta-dots {
  position: absolute;
  width: 68px;
  height: 96px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(31, 99, 219, 0.98) 0 2.5px, transparent 3px);
  background-size: 22px 22px;
  pointer-events: none;
}

.happenings-showcase__cta-dots--left {
  left: 20px;
  top: 18px;
}

.happenings-showcase__cta-dots--right {
  right: 58px;
  top: 44px;
}

.happenings-showcase__cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.happenings-showcase__cta-visual::before,
.happenings-showcase__cta-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.happenings-showcase__cta-visual::before {
  inset: 28px 34px;
  border: 2px dashed rgba(80, 130, 228, 0.35);
}

.happenings-showcase__cta-visual::after {
  width: 86px;
  height: 86px;
  top: 12px;
  right: 30px;
  border-top: 4px solid #ffcb29;
  border-right: 4px solid #ffcb29;
  transform: rotate(18deg);
}

.happenings-showcase__cta-orbit {
  position: relative;
  width: 172px;
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 45, 112, 0.75) 0%, rgba(10, 34, 86, 0.15) 72%, transparent 72%);
  border: 3px solid rgba(42, 91, 204, 0.8);
}

.happenings-showcase__cta-orbit::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(56, 110, 222, 0.34);
}

.happenings-showcase__cta-orbit svg {
  width: 96px;
  height: 96px;
}

.happenings-showcase__cta-content {
  max-width: 720px;
  transform: translateX(-90px);
}

.happenings-showcase__cta-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  max-width: 620px;
}

.happenings-showcase__cta-title-line,
.happenings-showcase__cta-title-highlight {
  display: block;
  white-space: nowrap;
}

.happenings-showcase__cta-title-line {
  color: #ffffff;
}

.happenings-showcase__cta-title-highlight {
  margin-top: 10px;
  color: #ffd146;
}

.happenings-showcase__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.happenings-showcase__cta-button {
  min-width: 208px;
  height: 46px;
  border-radius: 6px;
  box-shadow: none;
}

.happenings-showcase__cta-button.btn--primary {
  background: #2452d5;
}

.happenings-showcase__cta-button--light {
  background: #ffffff;
  color: #2452d5;
}

.happenings-showcase__cta-building {
  position: absolute;
  right: 42px;
  bottom: 0;
  width: 170px;
  height: 92px;
  opacity: 0.34;
  z-index: 1;
}

.happenings-showcase__cta-badge {
  background: #ffffff;
  width: 155px;
  height: 185px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 16px;
  z-index: 10;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.15));
}

.happenings-showcase__cta-badge-text {
  color: #0b2361;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 24px;
}

.happenings-showcase__cta-badge-logo {
  width: 85px;
  height: auto;
  object-fit: contain;
}

.happenings-showcase__building-block {
  position: absolute;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom-width: 3px;
}

.happenings-showcase__building-block--left {
  left: 0;
  width: 54px;
  height: 42px;
  border-radius: 6px 6px 0 0;
}

.happenings-showcase__building-block--center {
  left: 48px;
  width: 78px;
  height: 58px;
  border-radius: 8px 8px 0 0;
}

.happenings-showcase__building-block--right {
  right: 0;
  width: 56px;
  height: 34px;
  border-radius: 6px 6px 0 0;
}

/* ===== HOME SECTIONS ===== */
.programs .section-header {
  padding: 0;
  margin-bottom: 0;
}

.home-sections {
  padding: 40px 45px 90px;
  background: #ffffff;
}

.home-sections__header {
  margin-bottom: 28px;
}

.home-sections__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-section {
  --feature-accent: #1041c6;
  --feature-soft: rgba(16, 65, 198, 0.1);
  --feature-surface: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.feature-section--reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.feature-section--reverse .feature-section__content {
  order: 2;
}

.feature-section--reverse .feature-section__visual {
  order: 1;
}

.feature-section--blue {
  --feature-accent: #1041c6;
  --feature-soft: rgba(16, 65, 198, 0.1);
  --feature-surface: linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
}

.feature-section--gold {
  --feature-accent: #c88812;
  --feature-soft: rgba(200, 136, 18, 0.14);
  --feature-surface: linear-gradient(180deg, #fffaf0 0%, #fff3d9 100%);
}

.feature-section--slate {
  --feature-accent: #2d4b77;
  --feature-soft: rgba(45, 75, 119, 0.12);
  --feature-surface: linear-gradient(180deg, #f7f9fd 0%, #e7eef8 100%);
}

.feature-section--green {
  --feature-accent: #138a6d;
  --feature-soft: rgba(19, 138, 109, 0.12);
  --feature-surface: linear-gradient(180deg, #f3fffb 0%, #def7ee 100%);
}

.feature-section--rose {
  --feature-accent: #c2556c;
  --feature-soft: rgba(194, 85, 108, 0.12);
  --feature-surface: linear-gradient(180deg, #fff7f9 0%, #ffe8ee 100%);
}

.feature-section__content,
.feature-section__visual {
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 16px 34px rgba(20, 35, 90, 0.08);
}

.feature-section__content {
  background: #ffffff;
  border: 1px solid rgba(16, 65, 198, 0.08);
}

.feature-section__visual {
  background: var(--feature-surface);
  border: 1px solid var(--feature-soft);
  position: relative;
  overflow: hidden;
}

.feature-section__visual::before,
.feature-section__visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: var(--feature-soft);
}

.feature-section__visual::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -60px;
}

.feature-section__visual::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: -20px;
}

.feature-section__badge,
.feature-section__summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--feature-soft);
  color: var(--feature-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-section__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-section__title {
  margin-top: 22px;
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.feature-section__description {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.82);
  max-width: 640px;
}

.feature-section__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 30px;
}

.feature-section__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-dark);
}

.feature-section__point-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--feature-accent);
}

.feature-section__summary,
.feature-section__highlight-grid {
  position: relative;
  z-index: 1;
}

.feature-section__summary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 24px;
}

.feature-section__summary-title {
  margin-top: 18px;
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.feature-section__summary-text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.84);
}

.feature-section__highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.feature-section__highlight-card {
  min-height: 124px;
  border-radius: 20px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-section__highlight-line {
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--feature-accent);
}

.feature-section__highlight-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-dark);
}

/* ===== FOOTER ===== */
.footer {
  padding: 18px 16px 16px;
  color: #ffffff;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.footer__shell {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 38px 18px 0;
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(135deg, rgba(8, 35, 91, 0.98) 0%, rgba(9, 39, 98, 0.98) 48%, rgba(7, 29, 77, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(5, 19, 55, 0.3);
  overflow: hidden;
}

.footer__shell::before {
  content: '';
  position: absolute;
  left: -58px;
  bottom: 44px;
  width: 180px;
  height: 310px;
  opacity: 0.18;
  background:
    linear-gradient(60deg, transparent 0 22%, #ffbe1a 22% 23%, transparent 23% 46%, #ffbe1a 46% 47%, transparent 47% 100%);
}

.footer__shell::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 46px;
  width: 94px;
  height: 110px;
  opacity: 0.3;
  background-image: radial-gradient(circle, rgba(34, 112, 255, 0.95) 0 2px, transparent 2.6px);
  background-size: 18px 18px;
}

.footer__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 0;
  padding-bottom: 26px;
}

.footer__contact {
  padding: 14px 28px 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer__contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer__contact-icon--gold {
  color: #0c2e74;
  background: linear-gradient(180deg, #ffd24a 0%, #ffbc1f 100%);
}

.footer__contact-icon--blue {
  color: #ffffff;
  background: linear-gradient(180deg, #1a5ed4 0%, #1148b6 100%);
}

.footer__contact-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.footer__contact-value,
.footer__contact-copy {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.footer__contact-item--address {
  margin-top: 8px;
}

.footer__social {
  margin-top: 26px;
}

.footer__social-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.footer__social-list {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
}

.footer__social-link--facebook {
  background: linear-gradient(180deg, #2679ff 0%, #205ed4 100%);
}

.footer__social-link--instagram {
  background: linear-gradient(180deg, #cb4cf3 0%, #7848f7 100%);
}

.footer__social-link--linkedin {
  background: linear-gradient(180deg, #24a4ff 0%, #0b76c7 100%);
}

.footer__social-link--youtube {
  background: linear-gradient(180deg, #ff3a30 0%, #d61d18 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.footer__col {
  min-width: 0;
  padding: 14px 34px 18px;
}

.footer__col+.footer__col {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__col-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.footer__col-accent {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbf1d 0%, #ffd765 100%);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.footer__link-icon {
  color: #ffc31f;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__newsletter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.7fr;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(12, 42, 104, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__newsletter-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__newsletter-icon {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffca29;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 28, 80, 0.55);
}

.footer__newsletter-copy h3 {
  font-size: 18px;
  color: #ffffff;
}

.footer__newsletter-copy p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.footer__newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 106px;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 28, 77, 0.76);
}

.footer__newsletter-form input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border: none;
  outline: none;
  color: #ffffff;
  background: transparent;
  font-size: 15px;
}

.footer__newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer__newsletter-form button {
  height: 48px;
  color: #0c2e74;
  background: linear-gradient(180deg, #ffd43f 0%, #ffbe19 100%);
  font-size: 15px;
  font-weight: 700;
}

.footer__brochure {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__brochure-icon {
  color: #ffca29;
  flex-shrink: 0;
}

.footer__brochure-copy {
  min-width: 0;
}

.footer__brochure-copy strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.footer__brochure-copy span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.footer__brochure-arrow {
  margin-left: auto;
  color: #ffca29;
}

.footer__bottom {
  max-width: none;
  margin: 0;
  padding: 18px 26px 20px;
  border-radius: 0 0 20px 20px;
  background: #051432;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.footer__bottom p,
.footer__bottom-links a {
  font-size: 14px;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__bottom-links a+a {
  position: relative;
}

.footer__bottom-links a+a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar__nav {
    /* handled by hamburger block above */
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .programs__shell {
    padding: 0 20px;
  }

  .programs__grid {
    padding: 0 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .programs__card {
    height: 260px;
  }

  .programs__card--slot-1,
  .programs__card--slot-2,
  .programs__card--slot-3,
  .programs__card--slot-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .programs__shell,
  .programs__grid {
    overflow-x: hidden;
  }

  .programs__card--float-right,
  .programs__card--float-left {
    animation: none;
  }

  .programs-spotlight {
    padding: 10px 0 55px;
  }

  .programs-spotlight__shell {
    padding: 34px 20px 20px;
    margin: 0 20px;
  }

  .programs-spotlight__hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .programs-spotlight__actions {
    margin-top: 10px;
  }

  .programs-spotlight__art {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    height: 220px;
    margin: 10px auto 0;
  }

  .programs-spotlight__card-grid {
    margin-top: 24px;
  }

  .programs-spotlight__carousel {
    margin-top: 24px;
  }

  .programs-spotlight__carousel-button {
    top: 82px;
    width: 48px;
    height: 48px;
  }

  .programs-spotlight__card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .programs-spotlight__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs-spotlight__benefit:nth-child(3),
  .programs-spotlight__benefit:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .programs-spotlight__benefit:nth-child(3) {
    border-left: none;
  }

  .placements-showcase {
    padding: 0 20px 60px;
  }

  .placements-showcase__shell {
    padding: 34px 20px 24px;
  }

  .placements-showcase__header {
    flex-direction: column;
  }

  .placements-showcase__cta {
    min-width: 0;
  }

  .placements-showcase__grid {
    grid-template-columns: 1fr;
  }

  .placements-showcase__card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .placements-showcase__stats-hero {
    grid-template-columns: 1fr;
  }

  .placements-showcase__stats-grid {
    border-left: none;
    border-top: 1px solid rgba(25, 49, 104, 0.08);
  }

  .placements-showcase__partners {
    grid-template-columns: 1fr;
  }

  .placements-showcase__partners-label {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 18px;
  }

  .faculty-showcase {
    padding: 0 20px 64px;
  }

  .faculty-showcase__shell {
    padding: 34px 20px 24px;
  }

  .faculty-showcase__header {
    flex-direction: column;
    margin-top: 42px;
  }

  .faculty-showcase__actions {
    align-items: flex-start;
  }

  .faculty-showcase__carousel {
    margin-top: 34px;
  }

  .faculty-showcase__carousel-button {
    width: 48px;
    height: 48px;
    left: 8px;
    right: 8px;
  }

  .faculty-showcase__carousel-button--prev {
    left: 8px;
    right: auto;
  }

  .faculty-showcase__carousel-button--next {
    right: 8px;
    left: auto;
  }

  .faculty-showcase__card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .institutions-showcase {
    padding: 0 20px 66px;
  }

  .institutions-showcase__shell {
    padding: 30px 20px 22px;
  }

  .institutions-showcase__header {
    flex-direction: column;
  }

  .institutions-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institutions-showcase__featured {
    grid-template-columns: 1fr;
  }

  .institutions-showcase__featured-image {
    height: 250px;
    min-height: 250px;
    clip-path: none;
  }

  .institutions-showcase__featured-content {
    padding: 24px 24px 28px;
  }

  .happenings-showcase {
    padding: 0 20px 60px;
  }

  .happenings-showcase__shell {
    padding: 34px 20px 18px;
  }

  .happenings-showcase__header,
  .happenings-showcase__announcements-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .happenings-showcase__events,
  .happenings-showcase__announcement-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .happenings-showcase__announcement+.happenings-showcase__announcement {
    border-left: none;
  }

  .happenings-showcase__announcement:nth-child(n + 3) {
    border-top: 1px solid rgba(219, 228, 244, 0.95);
  }

  .happenings-showcase__stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .happenings-showcase__stat:nth-child(odd) {
    border-left: none;
  }

  .happenings-showcase__stat:nth-child(n + 3) {
    border-top: 1px solid rgba(219, 228, 244, 0.95);
  }

  .happenings-showcase__cta-panel {
    grid-template-columns: 1fr;
    padding: 34px 28px 30px;
    gap: 18px;
  }

  .happenings-showcase__cta-visual {
    min-height: 220px;
  }

  .happenings-showcase__cta-building {
    justify-self: start;
  }

  .home-sections {
    padding: 30px 20px 70px;
  }

  .feature-section,
  .feature-section--reverse {
    grid-template-columns: 1fr;
  }

  .feature-section--reverse .feature-section__content,
  .feature-section--reverse .feature-section__visual {
    order: initial;
  }

  .feature-section__content,
  .feature-section__visual {
    padding: 28px;
  }

  .feature-section__title {
    font-size: 30px;
  }

  .feature-section__highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    padding-inline: 20px;
  }

  .footer__shell {
    padding: 30px 16px 0;
  }

  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__contact {
    padding: 10px 12px 26px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__col:nth-child(4) {
    border-left: none;
  }

  .footer__newsletter {
    grid-template-columns: 1fr;
  }

  .footer__brochure {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 24px 20px;
  }

  .hero__heading {
    font-size: 30px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-bar {
    margin: -30px 15px 0;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .programs {
    padding: 60px 0 30px;
  }

  .programs__shell {
    padding: 0 14px;
  }

  .programs__grid {
    padding: 0 14px;
  }

  .programs .section-header {
    padding: 0;
  }

  .programs-spotlight {
    padding: 0 0 45px;
  }

  .programs-spotlight__shell {
    padding: 28px 14px 16px;
    margin: 0 14px;
    border-radius: 14px;
  }

  .programs-spotlight__shell::before,
  .programs-spotlight__shell::after {
    display: none;
  }

  .programs-spotlight__title {
    font-size: 2.3rem;
  }

  .programs-spotlight__title-line--lead {
    white-space: normal;
  }

  .programs-spotlight__title-line:not(.programs-spotlight__title-line--lead) {
    white-space: normal;
  }

  .programs-spotlight__description {
    font-size: 15px;
  }

  .programs-spotlight__cta {
    width: 100%;
    min-width: 0;
  }

  .programs-spotlight__art {
    max-width: 250px;
    height: 190px;
  }

  .programs-spotlight__book-stack {
    width: 168px;
  }

  .programs-spotlight__cap {
    width: 132px;
    height: 82px;
  }

  .programs-spotlight__dots {
    left: 18px;
  }

  .programs-spotlight__card-grid {
    margin-top: 18px;
  }

  .programs-spotlight__carousel {
    margin-top: 18px;
  }

  .programs-spotlight__carousel-button {
    top: 74px;
    width: 42px;
    height: 42px;
  }

  .programs-spotlight__carousel-button--prev {
    left: 12px;
  }

  .programs-spotlight__carousel-button--next {
    right: 12px;
  }

  .programs-spotlight__card {
    flex-basis: 100%;
    padding: 14px 14px 18px;
  }

  .programs-spotlight__card-title {
    font-size: 20px;
  }

  .programs-spotlight__card-description {
    min-height: 0;
  }

  .programs-spotlight__benefits {
    grid-template-columns: 1fr;
    padding: 14px 10px;
  }

  .programs-spotlight__benefit,
  .programs-spotlight__benefit+.programs-spotlight__benefit,
  .programs-spotlight__benefit:nth-child(3),
  .programs-spotlight__benefit:nth-child(4) {
    border: none;
  }

  .programs-spotlight__benefit+.programs-spotlight__benefit {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .programs-spotlight__benefit {
    padding: 14px 8px;
  }

  .placements-showcase {
    padding: 0 14px 48px;
  }

  .placements-showcase__shell {
    padding: 28px 14px 18px;
    border-radius: 14px;
  }

  .placements-showcase__shell::after {
    display: none;
  }

  .placements-showcase__title {
    font-size: 2.2rem;
    white-space: normal;
  }

  .placements-showcase__subtitle {
    font-size: 15px;
  }

  .placements-showcase__cta {
    width: 100%;
  }

  .placements-showcase__card {
    grid-template-columns: 1fr;
  }

  .placements-showcase__photo-wrap {
    min-height: 300px;
  }

  .placements-showcase__card-body {
    padding: 18px 16px 18px;
  }

  .placements-showcase__package-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .placements-showcase__stats-copy {
    padding: 26px 18px 20px;
  }

  .placements-showcase__stats-copy h3 {
    font-size: 24px;
  }

  .placements-showcase__stats-grid {
    grid-template-columns: 1fr;
  }

  .placements-showcase__stat,
  .placements-showcase__stat:nth-child(odd),
  .placements-showcase__stat:nth-child(1),
  .placements-showcase__stat:nth-child(2) {
    border: none;
  }

  .placements-showcase__stat+.placements-showcase__stat {
    border-top: 1px solid rgba(25, 49, 104, 0.08);
  }

  .placements-showcase__stat {
    padding: 22px 18px;
  }

  .placements-showcase__partners {
    padding: 14px;
  }

  .placements-showcase__partners-label {
    padding: 8px 4px 16px;
  }

  .placements-showcase__partners-icon {
    width: 56px;
    height: 56px;
  }

  .placements-showcase__partners-copy {
    font-size: 14px;
  }

  .placements-showcase__partners-rail {
    padding: 10px 8px;
  }

  .placements-showcase__partner-item {
    min-width: 120px;
    min-height: 54px;
    padding: 8px 10px;
  }

  .placements-showcase__partner-logo {
    max-height: 36px;
  }

  .placements-showcase__partner-chip {
    min-width: 96px;
    min-height: 50px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .faculty-showcase {
    padding: 0 14px 48px;
  }

  .faculty-showcase__shell {
    padding: 28px 14px 18px;
    border-radius: 14px;
  }

  .faculty-showcase__shell::after {
    display: none;
  }

  .faculty-showcase__tabs {
    gap: 14px;
  }

  .faculty-showcase__tab {
    width: 100%;
    font-size: 16px;
  }

  .faculty-showcase__tab-icon {
    width: 54px;
    height: 54px;
  }

  .faculty-showcase__tab--active::after {
    width: min(100%, 210px);
  }

  .faculty-showcase__header {
    margin-top: 34px;
  }

  .faculty-showcase__title {
    font-size: 2.2rem;
    white-space: normal;
  }

  .faculty-showcase__subtitle {
    font-size: 15px;
  }

  .faculty-showcase__dots {
    width: 96px;
    height: 68px;
  }

  .faculty-showcase__cta {
    width: 100%;
    min-width: 0;
  }

  .faculty-showcase__carousel {
    margin-top: 34px;
  }

  .faculty-showcase__carousel-button {
    width: 42px;
    height: 42px;
    left: 6px;
    right: 6px;
  }

  .faculty-showcase__carousel-button--prev {
    left: 6px;
    right: auto;
  }

  .faculty-showcase__carousel-button--next {
    right: 6px;
    left: auto;
  }

  .faculty-showcase__grid {
    gap: 18px;
  }

  .faculty-showcase__card {
    flex-basis: 100%;
    min-height: 0;
  }

  .faculty-showcase__portrait-wrap {
    width: 190px;
    height: 190px;
  }

  .faculty-showcase__info {
    padding: 16px 14px;
    min-height: 0;
  }

  .institutions-showcase {
    padding: 0 14px 48px;
  }

  .institutions-showcase__shell {
    padding: 26px 14px 18px;
    border-radius: 14px;
  }

  .institutions-showcase__shell::after {
    display: none;
  }

  .institutions-showcase__title-row {
    align-items: flex-start;
    gap: 14px;
  }

  .institutions-showcase__title-icon {
    width: 64px;
    height: 64px;
  }

  .institutions-showcase__title {
    font-size: 2.2rem;
    white-space: normal;
  }

  .institutions-showcase__accent {
    margin-left: 78px;
    width: 60px;
  }

  .institutions-showcase__subtitle {
    font-size: 15px;
  }

  .institutions-showcase__cta {
    width: 100%;
    min-width: 0;
  }

  .institutions-showcase__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .institutions-showcase__card-image {
    height: 190px;
  }

  .institutions-showcase__card-body {
    padding: 16px 18px 20px;
  }

  .institutions-showcase__card-title {
    min-height: 0;
    font-size: 20px;
  }

  .institutions-showcase__featured-image {
    height: 210px;
    min-height: 210px;
  }

  .institutions-showcase__featured-content {
    padding: 22px 18px 22px;
  }

  .institutions-showcase__featured-badge {
    width: 64px;
    height: 64px;
  }

  .institutions-showcase__featured-title {
    font-size: 20px;
  }

  .institutions-showcase__dots {
    width: 84px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .happenings-showcase {
    padding: 0 14px 48px;
  }

  .happenings-showcase__shell {
    padding: 28px 14px 14px;
    border-radius: 14px;
  }

  .happenings-showcase__spark {
    left: -6px;
    top: 6px;
  }

  .happenings-showcase__title {
    padding-left: 28px;
    font-size: 2.1rem;
  }

  .happenings-showcase__accent {
    margin-left: 28px;
  }

  .happenings-showcase__cta {
    width: 100%;
    min-width: 0;
  }

  .happenings-showcase__events,
  .happenings-showcase__announcement-list {
    grid-template-columns: 1fr;
  }

  .happenings-showcase__event-image {
    height: 210px;
  }

  .happenings-showcase__event-body {
    min-height: 0;
    padding: 28px 16px 16px;
  }

  .happenings-showcase__event-title {
    font-size: 15px;
  }

  .happenings-showcase__announcements {
    margin-top: 26px;
    padding: 14px 8px 8px;
  }

  .happenings-showcase__announcements-head {
    padding: 6px 10px 14px;
  }

  .happenings-showcase__announcements-link {
    font-size: 14px;
  }

  .happenings-showcase__announcements-icon {
    width: 58px;
    height: 58px;
  }

  .happenings-showcase__announcements-title {
    font-size: 17px;
  }

  .happenings-showcase__announcement {
    grid-template-columns: 72px 52px minmax(0, 1fr) 28px;
    gap: 12px;
    padding: 14px 12px;
  }

  .happenings-showcase__announcement+.happenings-showcase__announcement,
  .happenings-showcase__announcement:nth-child(n + 3) {
    border: none;
    border-top: 1px solid rgba(219, 228, 244, 0.95);
  }

  .happenings-showcase__announcement-text {
    font-size: 14px;
  }

  .happenings-showcase__stats-strip {
    grid-template-columns: 1fr;
  }

  .happenings-showcase__stat,
  .happenings-showcase__stat:nth-child(odd),
  .happenings-showcase__stat:nth-child(n + 3) {
    border: none;
  }

  .happenings-showcase__stat+.happenings-showcase__stat {
    border-top: 1px solid rgba(219, 228, 244, 0.95);
  }

  .happenings-showcase__stat {
    padding: 18px 16px 18px 24px;
  }

  .happenings-showcase__stat-icon {
    width: 74px;
    height: 74px;
  }

  .happenings-showcase__stat-copy strong {
    font-size: 24px;
  }

  .happenings-showcase__stat-copy span {
    font-size: 14px;
  }

  .happenings-showcase__cta-panel {
    margin-top: 30px;
    padding: 28px 18px 24px;
    border-radius: 24px;
    box-shadow:
      8px 0 0 #fdb515,
      0 18px 28px rgba(10, 39, 93, 0.22);
  }

  .happenings-showcase__cta-panel::after,
  .happenings-showcase__cta-rail--right,
  .happenings-showcase__cta-dots--right,
  .happenings-showcase__cta-building {
    display: none;
  }

  .happenings-showcase__cta-rail--left {
    left: 50%;
    top: -120px;
    width: 260px;
    height: 260px;
    border-width: 36px;
    transform: translateX(-50%);
  }

  .happenings-showcase__cta-visual {
    min-height: 190px;
  }

  .happenings-showcase__cta-visual::before {
    inset: 22px 28px;
  }

  .happenings-showcase__cta-orbit {
    width: 148px;
    height: 148px;
  }

  .happenings-showcase__cta-orbit::before {
    inset: -14px;
  }

  .happenings-showcase__cta-orbit svg {
    width: 82px;
    height: 82px;
  }

  .happenings-showcase__cta-title {
    font-size: 2rem;
  }

  .happenings-showcase__cta-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .happenings-showcase__cta-button {
    width: 100%;
    min-width: 0;
  }

  .home-sections {
    padding: 20px 20px 55px;
  }

  .feature-section {
    gap: 18px;
  }

  .feature-section__content,
  .feature-section__visual {
    padding: 22px;
    border-radius: 22px;
  }

  .feature-section__title {
    margin-top: 18px;
    font-size: 25px;
  }

  .feature-section__description,
  .feature-section__point,
  .feature-section__summary-text,
  .feature-section__highlight-text {
    font-size: 14px;
  }

  .feature-section__summary-title {
    font-size: 22px;
  }

  .feature-section__highlight-grid {
    grid-template-columns: 1fr;
  }

  .feature-section__highlight-card {
    min-height: 100px;
  }

  .footer {
    padding-inline: 14px;
  }

  .footer__shell {
    padding: 26px 12px 0;
    border-radius: 18px 18px 0 0;
  }

  .footer__shell::before,
  .footer__shell::after {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__col,
  .footer__col+.footer__col {
    border: none;
    padding: 18px 12px;
  }

  .footer__col+.footer__col {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer__newsletter {
    margin-top: 18px;
    padding: 14px 12px;
  }

  .footer__newsletter-copy {
    align-items: flex-start;
  }

  .footer__newsletter-icon {
    width: 64px;
    height: 64px;
  }

  .footer__newsletter-copy h3 {
    font-size: 17px;
  }

  .footer__newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px;
    border: none;
    background: transparent;
  }

  .footer__newsletter-form input,
  .footer__newsletter-form button {
    border-radius: 8px;
  }

  .footer__newsletter-form input {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 28, 77, 0.76);
  }

  .footer__brochure {
    gap: 12px;
  }

  .footer__bottom {
    padding: 16px 12px 18px;
    border-radius: 0 0 16px 16px;
  }

  .footer__bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer__bottom-links a+a::before {
    display: none;
  }

  .top-bar {
    padding: 0 15px;
  }

  .navbar {
    padding: 0 15px;
  }

  .navbar__logo-wrap {
    width: 108px;
    min-width: 108px;
    height: 94px;
    padding: 8px 10px 10px;
  }

  .navbar__logo {
    max-width: 74px;
  }

  .navbar__inner {
    padding-left: 122px;
  }
}

/* ===== FULL WIDTH SECTIONS AFTER PROGRAMS ===== */
.programs-spotlight,
.placements-showcase,
.faculty-showcase,
.institutions-showcase,
.happenings-showcase {
  padding-left: 0;
  padding-right: 0;
}

.programs-spotlight__shell,
.placements-showcase__shell,
.faculty-showcase__shell,
.institutions-showcase__shell,
.happenings-showcase__shell {
  width: 100%;
  max-width: none;

}

@media (max-width: 1024px) {

  .programs-spotlight__shell,
  .placements-showcase__shell,
  .faculty-showcase__shell,
  .institutions-showcase__shell,
  .happenings-showcase__shell {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {

  .programs-spotlight__shell,
  .placements-showcase__shell,
  .faculty-showcase__shell,
  .institutions-showcase__shell,
  .happenings-showcase__shell {
    margin-left: 0;
    margin-right: 0;
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* ===== HAMBURGER MENU ===== */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 100%;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: 1px solid rgba(16, 65, 198, 0.18);
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--color-dark);
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== RESPONSIVE SAFEGUARDS ===== */
@media (max-width: 1200px) {
  .top-bar {
    height: auto;
    padding: 6px 20px;
  }

  .top-bar__left {
    padding-left: 0;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .top-bar__primary,
  .top-bar__utility {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .top-bar__utility {
    margin-left: auto;
  }

  .top-bar__right {
    margin-left: 14px;
  }

  .navbar {
    height: auto;
    min-height: 72px;
    width: 100%;
  }

  .navbar__inner {
    padding: 0 20px 0 148px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar__logo-wrap {
    left: 20px;
    width: 142px;
    min-width: 142px;
    height: 132px;
    padding: 12px 14px 14px;
  }

  .navbar__logo {
    max-width: 104px;
  }

  .navbar__nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .navbar__item {
    min-width: 0;
  }

  .navbar__dropdown-shell {
    width: calc(100vw - 40px);
  }

  .hero {
    min-height: 640px;
  }

  .hero__content {
    max-width: 470px;
    padding: 28px 0 24px 28px;
  }

  .hero__heading {
    font-size: 33px;
  }

  .hero__subtext {
    max-width: 400px;
    margin-bottom: 34px;
  }

  .stats-bar {
    width: calc(100% - 40px);
    padding: 24px 28px;
    gap: 18px;
  }

  .stats-bar__item {
    gap: 14px;
    padding: 6px 4px;
  }
}

@media (max-width: 1024px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 4px;
    padding: 10px 0 14px;
    border-top: 1px solid rgba(16, 65, 198, 0.08);
    overflow-x: hidden;
  }

  .navbar__nav--open {
    display: flex;
  }

  .navbar__item {
    flex: unset;
    width: 100%;
    min-width: 0;
  }

  .navbar__item-button {
    width: 100%;
    min-width: 0;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
  }

  .navbar__item-text {
    min-width: 0;
    font-size: 15px;
  }

  .top-bar {
    justify-content: center;
    gap: 10px;
  }

  .top-bar__left,
  .top-bar__right {
    width: 100%;
    justify-content: center;
  }

  .top-bar__right {
    margin-left: 0;
  }

  .navbar {
    padding: 12px 20px 10px;
  }

  .navbar__inner {
    padding-left: 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .navbar__logo-wrap {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
    margin-top: 0;
    align-self: flex-start;
    width: 132px;
    min-width: 132px;
    height: 122px;
    padding: 10px 12px 12px;
  }

  .navbar__logo {
    max-width: 96px;
  }

  .navbar__dropdown-shell {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 8px;
  }

  .about-panel,
  .programs-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
  }

  .about-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-right: 0;
    border-right: none;
  }

  .about-panel__content {
    border-right: none;
    padding-left: 0;
  }

  .about-panel__visual {
    padding-left: 0;
    padding-right: 0;
  }

  .about-panel__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border-right: none;
    padding-right: 0;
  }

  .programs-panel__menu-item {
    border-right: none;
  }

  .programs-panel__menu-item:nth-child(odd) {
    border-right: none;
  }

  .programs-panel__hero {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .programs-panel__cards {
    grid-template-columns: 1fr;
  }

  .programs-panel__card:nth-child(odd) {
    border-right: none;
  }

  .hero {
    min-height: 600px;
    align-items: flex-start;
  }

  .hero__content {
    max-width: 420px;
    padding: 36px 20px 32px;
  }

  .hero__heading {
    font-size: 32px;
  }

  .hero__subtext {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero__buttons {
    gap: 14px;
    flex-wrap: wrap;
  }

  #explore-programs-btn,
  #campus-tour-btn {
    min-width: 0;
  }

  .stats-bar {
    width: calc(100% - 40px);
    margin-top: -44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 20px;
    gap: 16px;
  }

  .stats-bar__item {
    padding: 8px 4px;
  }

  .section-header,
  .placements-showcase__header,
  .faculty-showcase__header,
  .institutions-showcase__header,
  .happenings-showcase__header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .footer__main,
  .footer__newsletter {
    flex-direction: column;
  }

  #view-all-programs-btn,
  .placements-showcase__cta,
  .faculty-showcase__cta,
  .institutions-showcase__cta,
  .happenings-showcase__cta,
  .happenings-showcase__cta-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    padding: 12px 14px 10px;
    overflow-x: hidden;
  }

  .navbar__inner {
    padding-left: 0;
    gap: 0;
  }



  .navbar__nav {
    gap: 10px;
  }

  .navbar__item {
    padding: 2px 0;
  }

  .navbar__item-button {
    border-radius: 8px;
  }

  .navbar__item--active .navbar__item-button {
    padding: 9px 12px;
  }

  .navbar__dropdown-shell {
    width: calc(100vw - 28px);
    left: 14px !important;
    transform: none !important;
  }

  .hero {
    min-height: 560px;
  }

  .hero__bg img {
    object-position: 62% center;
  }

  .hero__content {
    max-width: 100%;
    padding: 26px 16px 30px;
  }

  .hero__heading {
    font-size: 26px;
    line-height: 1.35;
  }

  .hero__subtext {
    max-width: 100%;
  }

  .hero__buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn,
  #explore-programs-btn,
  #campus-tour-btn,
  #view-all-programs-btn,
  .placements-showcase__cta,
  .faculty-showcase__cta,
  .institutions-showcase__cta,
  .happenings-showcase__cta,
  .happenings-showcase__cta-button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .stats-bar {
    width: calc(100% - 28px);
    margin: -28px auto 0;
    grid-template-columns: 1fr;
    padding: 18px 16px;
    gap: 14px;
  }

  .stats-bar__item {
    padding: 10px 0;
  }

  .stats-bar__icon {
    width: 48px;
    height: 48px;
  }

  .stats-bar__number {
    font-size: 28px;
  }

  .stats-bar__label {
    font-size: 15px;
  }

  .programs .section-header,
  .section-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .programs__card {
    height: 220px;
  }

  .about-panel,
  .programs-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
    min-height: auto;
    border-radius: 0;
  }

  .about-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-right: 0;
    border-right: none;
  }

  .about-panel__menu-item {
    min-height: 60px;
    padding: 12px;
    gap: 10px;
  }

  .about-panel__menu-item:first-child {
    border-radius: 8px;
  }

  .about-panel__menu-item:last-child {
    border-radius: 8px;
  }

  .about-panel__content,
  .about-panel__visual {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .about-panel__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .about-panel__stat {
    border-right: none;
    padding: 18px 12px;
  }

  .about-panel__image-wrap {
    min-height: 240px;
  }

  .about-panel__quote {
    right: 12px;
    bottom: 12px;
    max-width: 180px;
  }

  .programs-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    border-right: none;
  }

  .programs-panel__menu-item {
    min-height: 70px;
    padding: 14px 12px;
    gap: 12px;
    border-right: none;
  }

  .programs-panel__menu-item:nth-child(odd) {
    border-right: none;
  }

  .programs-panel__menu-item:nth-child(n + 3) {
    border-top: 1px solid rgba(16, 65, 198, 0.08);
  }

  .programs-panel__hero {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .programs-panel__title {
    font-size: 24px;
  }

  .programs-panel__cards {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .programs-panel__card {
    border-right: none;
    border-bottom: 1px solid rgba(21, 53, 127, 0.1);
    padding: 16px 12px;
  }

  .programs-panel__card:last-child {
    border-bottom: none;
  }

  .happenings-showcase__cta-title-line,
  .happenings-showcase__cta-title-highlight {
    white-space: normal;
  }

  .placements-showcase__title,
  .faculty-showcase__title,
  .institutions-showcase__title {
    white-space: normal;
    font-size: 2rem;
  }
}

.admission-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: radial-gradient(circle at 42% 6%, rgba(255, 184, 0, 0.18), transparent 24%), linear-gradient(180deg, #fefefe, #fbfcff 56%, #f8fbff);
  box-shadow: 0 28px 70px rgba(9, 33, 90, 0.16);
  border: 1px solid rgba(16, 65, 198, 0.06);
  border-radius: 0 0 20px 20px;
  padding: 30px;
  animation: fadeInUp 0.28s ease-out;
}

.admission-panel__top {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr) 350px;
  gap: 30px;
  align-items: stretch;
  min-height: 400px;
}

.admission-panel__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(14, 53, 168, 0.1);
}

.admission-panel__menu-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 69px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid rgba(14, 53, 168, 0.08);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.admission-panel__menu-item:first-child {
  border-radius: 10px 10px 0 0;
}

.admission-panel__menu-item:last-child {
  border-radius: 0 0 10px 10px;
}

.admission-panel__menu-item+.admission-panel__menu-item {
  border-top: none;
}

.admission-panel__menu-item:hover {
  transform: translateX(0);
  border-color: rgba(16, 65, 198, 0.24);
  box-shadow: 0 10px 20px rgba(17, 65, 198, 0.08);
}

.admission-panel__menu-item--accent {
  border-color: rgba(255, 186, 16, 0.4);
  background: linear-gradient(180deg, #fff9ee, #fff4df);
}

.admission-panel__menu-icon {
  width: 36px;
  height: 36px;
  color: #273870;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission-panel__menu-item--accent .admission-panel__menu-icon {
  color: #ffae00;
}

.admission-panel__menu-item.color-green .admission-panel__menu-icon {
  color: #22c55e;
}

.admission-panel__menu-item.color-green:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(180deg, #f0fdf4, #dcfce7);
}

.admission-panel__menu-item.color-purple .admission-panel__menu-icon {
  color: #a855f7;
}

.admission-panel__menu-item.color-purple:hover {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(180deg, #faf5ff, #f3e8ff);
}

.admission-panel__menu-item.color-blue .admission-panel__menu-icon {
  color: #3b82f6;
}

.admission-panel__menu-item.color-blue:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
}

.admission-panel__menu-icon svg,
.admission-panel__menu-arrow svg,
.admission-panel__stat-icon svg,
.admission-panel__cta-arrow svg {
  width: 100%;
  height: 100%;
}

.admission-panel__menu-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.admission-panel__menu-title {
  font-size: 13px;
  font-weight: 700;
  color: #22356e;
}

.admission-panel__menu-description {
  font-size: 11px;
  color: #5f6785;
}

.admission-panel__menu-arrow {
  width: 18px;
  height: 18px;
  color: #22356e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission-panel__content {
  display: flex;
  flex-direction: column;
  padding: 18px 12px 12px 18px;
  border-right: 1px solid rgba(14, 53, 168, 0.1);
}

.admission-panel__eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b82f6;
}

.admission-panel__title {
  margin-top: 14px;
  max-width: 430px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
  color: #1f3776;
}

.admission-panel__title span {
  color: #3b82f6;
}

.admission-panel__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: #3b82f6;
}

.admission-panel__text {
  max-width: 360px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #4a536f;
}

.admission-panel__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.admission-panel__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.admission-panel__stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef4ff, #dfe9ff);
  color: #5171d7;
  padding: 9px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission-panel__stat-icon.color-green {
  background: #dcfce7;
  color: #22c55e;
}

.admission-panel__stat-icon.color-blue {
  background: #dbeafe;
  color: #3b82f6;
}

.admission-panel__stat-icon.color-orange {
  background: #ffedd5;
  color: #f97316;
}

.admission-panel__stat-icon.color-purple {
  background: #f3e8ff;
  color: #a855f7;
}

.admission-panel__stat-value {
  font-size: 20px;
  line-height: 1;
  color: #1f3776;
  margin-bottom: 4px;
}

.admission-panel__stat-value.text-green {
  color: #22c55e;
}

.admission-panel__stat-value.text-blue {
  color: #3b82f6;
}

.admission-panel__stat-value.text-orange {
  color: #f97316;
}

.admission-panel__stat-value.text-purple {
  color: #a855f7;
}

.admission-panel__stat-title {
  font-size: 12px;
  font-weight: 700;
  color: #22356e;
  margin-bottom: 2px;
}

.admission-panel__stat-desc {
  font-size: 10px;
  color: #5f6785;
  line-height: 1.3;
}

.admission-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  padding: 12px 24px;
  border-radius: 10px;
  background: #1f3776;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
  max-width: max-content;
}

.admission-panel__cta:hover {
  transform: translateY(-1px);
  background: #152554;
}

.admission-panel__cta-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission-panel__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 4px;
}

.admission-panel__image-wrap {
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(10, 38, 100, 0.16);
}

.admission-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admission-panel__quote {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 252px;
  padding: 22px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #173f9a, #122f75);
  color: white;
  box-shadow: 0 18px 34px rgba(16, 47, 117, 0.28);
}

.admission-panel__quote-mark {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 46px;
  line-height: 0.7;
  font-weight: 700;
  color: #3b82f6;
}

.admission-panel__quote p {
  font-size: 14px;
  line-height: 1.55;
}

.admission-panel__quote::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: #3b82f6;
}

.admission-panel__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(14, 53, 168, 0.1);
  border-radius: 12px;
  padding: 20px;
  background: white;
  margin-top: 10px;
}

.admission-panel__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.admission-panel__feature:not(:last-child) {
  border-right: 1px solid rgba(14, 53, 168, 0.1);
  padding-right: 15px;
  margin-right: 15px;
}

.admission-panel__feature-icon {
  width: 32px;
  height: 32px;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 50%;
  padding: 6px;
}

.admission-panel__feature-icon svg {
  width: 100%;
  height: 100%;
}

.admission-panel__feature-copy {
  display: flex;
  flex-direction: column;
}

.admission-panel__feature-title {
  font-size: 12px;
  font-weight: 700;
  color: #1f3776;
  margin-bottom: 2px;
}

.admission-panel__feature-desc {
  font-size: 10px;
  color: #5f6785;
  line-height: 1.3;
}

@media (max-width: 1320px) {
  .admission-panel__top {
    grid-template-columns: 286px minmax(0, 1fr) 320px;
    gap: 22px;
  }

  .admission-panel__bottom {
    flex-wrap: wrap;
    gap: 15px;
  }

  .admission-panel__feature {
    min-width: calc(33% - 15px);
  }

  .admission-panel__feature:not(:last-child) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

@media (max-width: 1180px) {
  .admission-panel__top {
    grid-template-columns: 1fr;
  }

  .admission-panel__menu,
  .admission-panel__content {
    border-right: none;
    padding-right: 0;
  }

  .admission-panel__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admission-panel__visual {
    padding-left: 0;
  }

  .admission-panel__image-wrap {
    min-height: 320px;
  }

  .admission-panel__quote {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 1400px) {
  .navbar__inner {
    padding: 0 5%;
    gap: 20px;
  }

  .navbar__nav {
    margin-left: -120px;
    gap: 15px;
  }

  .navbar__logo-wrap {
    position: relative;
    left: 0;
    top: 35px;
    transform: none;
    margin-top: 0;
    width: 150px;
    min-width: 150px;
    height: 140px;
  }

  .navbar__logo {
    max-width: 110px;
  }
}

@media (max-width: 1024px) {
  .navbar__inner {
    padding: 0 20px;
  }

  .navbar__logo-wrap {
    top: 25px;
    width: 120px;
    min-width: 120px;
    height: 110px;
    padding: 12px;
  }

  .navbar__logo {
    max-width: 85px;
  }

  .navbar__nav {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .navbar__logo-wrap {
    top: 15px;
    width: 90px;
    min-width: 90px;
    height: 85px;
    padding: 10px;
  }

  .navbar__logo {
    max-width: 65px;
  }
}

@media (max-width: 1030px) {
  .top-bar {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .navbar {
    min-height: 64px;
    height: auto;
    padding: 0 !important;
    overflow: visible;
  }

  .navbar__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    padding: 8px 14px;
    background: #fff;
  }

  .navbar__mobile-bar .navbar__logo-wrap {
    position: static !important;
    transform: none !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 56px !important;
    margin: 0 !important;
    padding: 6px !important;
    border-radius: 0 !important;
  }

  .navbar__mobile-bar .navbar__logo {
    max-width: 58px !important;
  }

  .navbar__inner {
    display: none !important;
  }

  .navbar__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 23, 54, 0.35);
    z-index: 998;
  }

  .navbar__drawer {
    display: flex;
    max-width: 360px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .navbar__drawer .navbar__nav {
    gap: 0 !important;
    border-top: 0 !important;
  }

  .navbar__drawer .navbar__item {
    padding: 0 !important;
  }

  .navbar__drawer .navbar__item-button {
    border-radius: 0 !important;
  }

  .navbar__dropdown-shell {
    display: none !important;
  }
}

/* INSTITUTIONS PANEL */
.institutions-panel {
  background: radial-gradient(circle at 42% 6%, rgba(255, 184, 0, 0.18), transparent 24%), linear-gradient(180deg, #fefefe, #fbfcff 56%, #f8fbff);
  box-shadow: 0 28px 70px rgba(9, 33, 90, 0.16);
  border: 1px solid rgba(16, 65, 198, 0.06);
  border-radius: 0 0 20px 20px;
  padding: 30px;
  animation: fadeInUp 0.28s ease-out;
}

.student-zone-panel,
.rd-panel {
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(9, 33, 90, 0.16);
  border: 1px solid rgba(16, 65, 198, 0.06);
  border-radius: 0 0 20px 20px;
  padding: 30px;
  animation: fadeInUp 0.28s ease-out;
}

.institutions-panel__top,
.student-zone-panel__top,
.rd-panel__top {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: stretch;
}

.institutions-panel__grid,
.student-zone-panel__grid,
.rd-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.institutions-panel__item,
.student-zone-panel__item,
.rd-panel__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(14, 53, 168, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.institutions-panel__item:hover,
.student-zone-panel__item:hover,
.rd-panel__item:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 65, 198, 0.24);
  box-shadow: 0 10px 20px rgba(17, 65, 198, 0.08);
}

.institutions-panel__item--accent,
.student-zone-panel__item--accent {
  border-color: rgba(255, 186, 16, 0.4);
  background: linear-gradient(180deg, #fff9ee, #fff4df);
}

.institutions-panel__item--accent .institutions-panel__icon,
.student-zone-panel__item--accent .student-zone-panel__icon {
  background: rgba(255, 186, 16, 0.18);
  color: #ffae00;
}

.institutions-panel__icon,
.student-zone-panel__icon,
.rd-panel__icon {
  width: 46px;
  height: 46px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.student-zone-panel__icon {
  background: #fff7ed;
  color: #ea580c;
}

.rd-panel__icon {
  background: #f0f9ff;
  color: #0369a1;
}

.institutions-panel__icon svg,
.student-zone-panel__icon svg,
.rd-panel__icon svg {
  width: 24px;
  height: 24px;
}

.institutions-panel__copy,
.student-zone-panel__copy,
.rd-panel__copy {
  flex: 1;
}

.institutions-panel__name,
.student-zone-panel__name,
.rd-panel__name {
  font-size: 14px;
  font-weight: 700;
  color: #1f3776;
  margin-bottom: 4px;
  line-height: 1.4;
}

.institutions-panel__desc,
.student-zone-panel__desc,
.rd-panel__desc {
  font-size: 11px;
  color: #5f6785;
  line-height: 1.5;
}

.institutions-panel__arrow,
.student-zone-panel__arrow,
.rd-panel__arrow {
  width: 20px;
  height: 20px;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.student-zone-panel__arrow {
  color: #ea580c;
}

.rd-panel__arrow {
  color: #0369a1;
}

.institutions-panel__item:hover .institutions-panel__arrow,
.student-zone-panel__item:hover .student-zone-panel__arrow,
.rd-panel__item:hover .rd-panel__arrow {
  opacity: 1;
}

@media (max-width: 1200px) {

  .institutions-panel__grid,
  .student-zone-panel__grid,
  .rd-panel__grid {
    grid-template-columns: 1fr;
  }
}

.institutions-panel__visual,
.student-zone-panel__visual,
.rd-panel__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.institutions-panel__image-wrap,
.student-zone-panel__image-wrap,
.rd-panel__image-wrap {
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(10, 38, 100, 0.16);
}

.institutions-panel__image,
.student-zone-panel__image,
.rd-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institutions-panel__quote,
.student-zone-panel__quote,
.rd-panel__quote {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 250px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #173f9a, #122f75);
  color: white;
  box-shadow: 0 18px 34px rgba(16, 47, 117, 0.28);
}

.institutions-panel__quote-mark,
.student-zone-panel__quote-mark,
.rd-panel__quote-mark {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 32px;
  line-height: 0.7;
  font-weight: 700;
  color: #ffba10;
}

.institutions-panel__quote p,
.student-zone-panel__quote p,
.rd-panel__quote p {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1024px) {

  .institutions-panel__top,
  .student-zone-panel__top,
  .rd-panel__top {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .institutions-panel,
  .student-zone-panel,
  .rd-panel {
    padding: 20px 15px;
  }

  .institutions-panel__visual,
  .student-zone-panel__visual,
  .rd-panel__visual {
    display: none;
  }
}

@media (max-width: 768px) {

  .institutions-panel__item,
  .student-zone-panel__item,
  .rd-panel__item {
    padding: 15px;
    gap: 12px;
  }

  .institutions-panel__icon,
  .student-zone-panel__icon,
  .rd-panel__icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .institutions-panel__name,
  .student-zone-panel__name,
  .rd-panel__name {
    font-size: 13px;
  }

  .institutions-panel__desc,
  .student-zone-panel__desc,
  .rd-panel__desc {
    font-size: 10px;
  }
}

/* ===== R & D MEGA MENU ===== */
.rd-panel {
  display: block;
  background:
    radial-gradient(circle at 42% 6%, rgba(255, 184, 0, 0.14), transparent 24%),
    linear-gradient(180deg, #fefefe, #fbfcff 56%, #f8fbff);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 28px 70px rgba(9, 33, 90, 0.16);
  border: 1px solid rgba(16, 65, 198, 0.06);
  animation: fadeInUp 0.28s ease-out;
  padding: 28px 26px 22px;
}

.rd-panel__shell {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.rd-panel__top {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 0;
}

/* Menu Column */
.rd-panel__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(14, 53, 168, 0.1);
}

.rd-panel__menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.rd-panel__menu-item:first-child {
  border-radius: 12px 12px 0 0;
}

.rd-panel__menu-item:last-child {
  border-radius: 0 0 12px 12px;
}

.rd-panel__menu-item+.rd-panel__menu-item {
  margin-top: -1px;
}

.rd-panel__menu-item--accent {
  border-left: 4px solid #f59e0b;
  background: #fffbf0;
}

.rd-panel__menu-item:hover {
  border-color: #d0daf0;
  border-left-color: #f59e0b;
  background: #f8faff;
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(14, 53, 168, 0.07);
}

.rd-panel__menu-item--accent:hover {
  background: #fff7e0;
  border-left-color: #f59e0b;
}

/* Menu icon color variants */
.rd-panel__menu-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.rd-panel__menu-icon svg {
  width: 20px;
  height: 20px;
}

.rd-panel__menu-icon--orange {
  background: #fff7ed;
  color: #f59e0b;
}

.rd-panel__menu-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.rd-panel__menu-icon--purple {
  background: #faf5ff;
  color: #7c3aed;
}

.rd-panel__menu-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.rd-panel__menu-item:hover .rd-panel__menu-icon--orange {
  background: #f59e0b;
  color: white;
}

.rd-panel__menu-item:hover .rd-panel__menu-icon--green {
  background: #16a34a;
  color: white;
}

.rd-panel__menu-item:hover .rd-panel__menu-icon--purple {
  background: #7c3aed;
  color: white;
}

.rd-panel__menu-item:hover .rd-panel__menu-icon--blue {
  background: #2563eb;
  color: white;
}

.rd-panel__menu-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #032155;
  margin-bottom: 0.15rem;
}

.rd-panel__menu-desc {
  display: block;
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.35;
}

.rd-panel__menu-arrow {
  color: #cbd5e1;
  transition: all 0.25s ease;
  margin-left: auto;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-panel__menu-item:hover .rd-panel__menu-arrow {
  color: #f59e0b;
  transform: translateX(4px);
}

.rd-panel__content {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  border-right: 1px solid rgba(14, 53, 168, 0.1);
}

.rd-panel__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}

.rd-panel__eyebrow::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #2563eb;
  margin-top: 6px;
}

.rd-panel__title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #032155;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}

.rd-panel__title span {
  color: #2563eb;
}

.rd-panel__text {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.rd-panel__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  overflow: hidden;
}

.rd-panel__metric {
  text-align: center;
  padding: 12px 8px;
  background: white;
  position: relative;
}

.rd-panel__metric:not(:last-child) {
  border-right: 1px solid #e8edf5;
}

.rd-panel__metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.rd-panel__metric-icon svg {
  width: 16px;
  height: 16px;
}

/* Metric icon color variants */
.rd-panel__metric-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.rd-panel__metric-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.rd-panel__metric-icon--purple {
  background: #faf5ff;
  color: #7c3aed;
}

.rd-panel__metric-icon--orange {
  background: #fff7ed;
  color: #f59e0b;
}

.rd-panel__metric-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

/* Metric value color variants */
.rd-panel__metric-value--blue {
  color: #2563eb;
}

.rd-panel__metric-value--green {
  color: #16a34a;
}

.rd-panel__metric-value--purple {
  color: #7c3aed;
}

.rd-panel__metric-value--orange {
  color: #f59e0b;
}

.rd-panel__metric-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.rd-panel__metric-sub {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.3;
}

.rd-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.rd-panel__cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

/* Visual Column */
.rd-panel__visual {
  position: relative;
}

.rd-panel__image-wrap {
  width: 100%;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(10, 38, 100, 0.16);
}

.rd-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.rd-panel__quote {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 270px;
  background: #032155;
  color: white;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(3, 33, 85, 0.38);
}

.rd-panel__quote-mark {
  color: #2563eb;
  margin-bottom: 1rem;
  display: block;
  opacity: 1;
}

.rd-panel__quote p {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

.rd-panel__quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2563eb;
  margin-top: 1rem;
  border-radius: 2px;
}

.rd-panel__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(14, 53, 168, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  background: white;
  margin-top: 14px;
}

.rd-panel__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.rd-panel__feature:not(:last-child) {
  border-right: 1px solid rgba(14, 53, 168, 0.1);
  padding-right: 12px;
  margin-right: 12px;
}

.rd-panel__feature-icon {
  width: 30px;
  height: 30px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
}

.rd-panel__feature-icon svg {
  width: 100%;
  height: 100%;
}

.rd-panel__feature-copy {
  display: flex;
  flex-direction: column;
}

.rd-panel__feature-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1f3776;
  margin-bottom: 1px;
}

.rd-panel__feature-desc {
  font-size: 0.65rem;
  color: #5f6785;
  line-height: 1.3;
}

@media (max-width: 1600px) {
  .rd-panel__top {
    gap: 2rem;
  }
}

@media (max-width: 1400px) {
  .rd-panel__top {
    grid-template-columns: 320px 1fr;
  }

  .rd-panel__visual {
    display: none;
  }
}

@media (max-width: 1024px) {
  .rd-panel {
    border-radius: 0;
  }

  .rd-panel__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rd-panel__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-panel__bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.enquire-now-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: 100% 100%;
  background: #e11d48;
  color: #ffffff;

  padding: 10px 8px;

  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px 8px 0 0;
  z-index: 9999;
  text-decoration: none;
  box-shadow: none;
  margin-top: -85px;
  transition: background 0.2s ease;
}

.enquire-now-btn:hover {
  background: #be1238;
  color: #ffffff;
}



/* ============================================
   RESPONSIVE CSS - Full Website
   ============================================ */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* Default hide mobile elements */
.navbar__mobile-bar { display: none; }
.navbar__overlay { display: none; }
.navbar__drawer { display: none; }

/* ============================================
   TABLET + MOBILE (max-width 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .top-bar { display: none; }

  /* Navbar top bar */
  .navbar { padding: 0 !important; min-height: auto; position: relative; }
  .navbar__mobile-bar { display: flex !important; align-items: center; justify-content: space-between; padding: 8px 20px; width: 100%; background: #fff; min-height: 68px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
  .navbar__inner { display: none !important; }
  .navbar__logo-wrap { position: relative !important; left: 0 !important; top: auto !important; transform: none !important; margin-top: 0 !important; width: 90px !important; min-width: 90px !important; height: 82px !important; padding: 6px 8px !important; flex-shrink: 0 !important; border-radius: 0 !important; }
  .navbar__logo { max-width: 72px !important; }
  .navbar__hamburger { display: flex !important; flex-shrink: 0 !important; width: 42px; height: 42px; border: 1.5px solid rgba(16,65,198,0.2); border-radius: 8px; }

  /* Overlay */
  .navbar__overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 998; }

  /* Full width drawer */
  .navbar__drawer { display: flex; position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background: #fff; z-index: 999; transform: translateX(100%); transition: transform 0.3s ease; overflow: hidden; flex-direction: column; }
  .navbar__drawer--open { transform: translateX(0); }

  /* Drawer header with X button */
  .navbar__drawer-header { display: flex; justify-content: flex-end; align-items: center; padding: 16px 20px; border-bottom: 1px solid rgba(16,65,198,0.08); min-height: 64px; flex: 0 0 auto; }
  .navbar__drawer-close { background: transparent; border: 1.5px solid rgba(16,65,198,0.2); cursor: pointer; color: #162341; padding: 8px; border-radius: 8px; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .navbar__drawer-close:hover { background: #f0f4ff; }

  /* Nav items inside drawer */
  .navbar__drawer .navbar__nav { display: flex !important; flex: 1 1 auto !important; flex-direction: column !important; align-items: stretch !important; justify-content: flex-start !important; width: 100% !important; min-height: 0 !important; padding: 8px 0 24px !important; margin: 0 !important; background: transparent; border: none; overflow-y: auto !important; overflow-x: hidden !important; }
  .navbar__drawer .navbar__item { display: block !important; width: 100%; padding: 0; border-bottom: 1px solid rgba(16,65,198,0.06); flex-shrink: 0; overflow: visible !important; }
  .navbar__drawer .navbar__item--mobile-open { background: #f8faff !important; }
  .navbar__drawer .navbar__item:last-child { border-bottom: none; }
  .navbar__drawer .navbar__item-text { display: block; padding: 14px 24px; font-size: 16px; font-weight: 500; color: #162341; text-decoration: none; }
  .navbar__drawer .navbar__item-button { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; background: transparent; border: none; cursor: pointer; font-family: inherit; }
  .navbar__drawer .navbar__item-button .navbar__item-text { padding: 0; font-size: 16px; }
  .navbar__drawer .navbar__item-arrow { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
  .navbar__drawer .navbar__dropdown-shell { position: static !important; width: 100% !important; transform: none !important; box-shadow: none; }
  .navbar__drawer .about-panel, .navbar__drawer .programs-panel { grid-template-columns: 1fr !important; padding: 12px 20px !important; min-height: 0 !important; box-shadow: none; border-radius: 0; background: #f8faff; }
  .navbar__drawer .about-panel__menu, .navbar__drawer .programs-panel__menu { display: flex; flex-direction: column; gap: 6px; border-right: none; padding-right: 0; }
  .navbar__drawer .about-panel__content, .navbar__drawer .about-panel__visual, .navbar__drawer .programs-panel__main { display: none; }

  /* Mobile subnav dropdowns */
  .navbar__drawer .navbar__mobile-subnav { display: block !important; list-style: none !important; padding: 0 !important; margin: 0 !important; width: 100% !important; background: #f0f5ff; border-top: 1px solid rgba(16,65,198,0.1); overflow: visible !important; max-height: none !important; }
  .navbar__drawer .navbar__mobile-subnav li { display: block !important; width: 100% !important; visibility: visible !important; opacity: 1 !important; height: auto !important; overflow: visible !important; }
  .navbar__drawer .navbar__mobile-subitem { display: flex !important; align-items: center !important; gap: 12px; width: 100% !important; padding: 12px 20px 12px 36px; font-size: 14.5px; font-weight: 500; color: #1041c6; text-decoration: none; border-bottom: 1px solid rgba(16,65,198,0.06); background: #f0f5ff; cursor: pointer; transition: background 0.15s; visibility: visible !important; opacity: 1 !important; height: auto !important; overflow: visible !important; }
  .navbar__drawer .navbar__mobile-subitem:hover { background: #dce8ff; }
  .navbar__drawer .navbar__mobile-subitem-icon { width: 18px; height: 18px; flex-shrink: 0; color: #1041c6; display: flex !important; align-items: center; justify-content: center; }
  .navbar__drawer .navbar__mobile-subitem-icon svg { width: 16px; height: 16px; }
  .navbar__drawer .navbar__mobile-subitem span:not(.navbar__mobile-subitem-icon) { flex: 1; min-width: 0; white-space: normal !important; line-height: 1.4; word-break: break-word; }

  /* Rest of page */
  .hero { min-height: 500px; }
  .hero__content { max-width: 100%; padding: 40px 20px 30px; }
  .hero__heading { font-size: 26px; line-height: 1.3; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
  .hero__subtext { font-size: 15px; line-height: 1.5; font-weight: 500; margin-bottom: 32px; max-width: 100%; }
  .hero__buttons { flex-wrap: wrap; gap: 12px; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .stats-bar { width: calc(100% - 40px); margin-top: -40px; grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 16px; }
  .programs { padding: 50px 0 30px; }
  .programs__shell { padding: 0 20px; }
  .programs-spotlight__shell { padding: 34px 20px 20px !important; }
  .programs-spotlight__hero { grid-template-columns: 1fr; min-height: auto; }
  .programs-spotlight__actions { margin-top: 16px; }
  .programs-spotlight__art { position: relative; right: auto; top: auto; width: 100%; max-width: 280px; height: 200px; margin: 10px auto 0; }
  .programs-spotlight__card { flex-basis: calc(50% - 6px) !important; }
  .programs-spotlight__benefits { grid-template-columns: repeat(2, 1fr); }
  .programs-spotlight__carousel-button { width: 44px; height: 44px; }
  .placements-showcase__shell { padding: 30px 20px !important; }
  .placements-showcase__header { flex-direction: column; gap: 16px; }
  .placements-showcase__grid { grid-template-columns: 1fr; }
  .placements-showcase__card { grid-template-columns: 200px 1fr; }
  .placements-showcase__stats-hero { grid-template-columns: 1fr; }
  .placements-showcase__stats-grid { border-left: none; border-top: 1px solid rgba(25,49,104,0.08); }
  .placements-showcase__partners { grid-template-columns: 1fr; }
  .placements-showcase__partners-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 16px; }
  .faculty-showcase__shell { padding: 30px 20px !important; }
  .faculty-showcase__header { flex-direction: column; margin-top: 40px; }
  .faculty-showcase__card { flex-basis: calc(50% - 12px) !important; }
  .faculty-showcase__tabs { gap: 12px 20px; }
  .institutions-showcase__shell { padding: 28px 20px !important; }
  .institutions-showcase__header { flex-direction: column; }
  .institutions-showcase__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .institutions-showcase__featured { grid-template-columns: 1fr; }
  .institutions-showcase__featured-image { height: 240px; clip-path: none; }
  .happenings-showcase__shell { padding: 34px 20px 18px !important; }
  .happenings-showcase__header { flex-direction: column; }
  .happenings-showcase__events { grid-template-columns: repeat(2, 1fr); }
  .happenings-showcase__announcement-list { grid-template-columns: repeat(2, 1fr); }
  .happenings-showcase__stats-strip { grid-template-columns: repeat(2, 1fr); }
  .happenings-showcase__cta-panel { grid-template-columns: 1fr; padding: 34px 28px; }
  .happenings-showcase__cta-badge { display: none; }
  .home-sections { padding: 30px 20px 60px; }
  .feature-section, .feature-section--reverse { grid-template-columns: 1fr; }
  .feature-section--reverse .feature-section__content, .feature-section--reverse .feature-section__visual { order: initial; }
  .feature-section__highlight-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding-inline: 20px; }
  .footer__shell { padding: 28px 16px 0; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__contact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 24px; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__newsletter { grid-template-columns: 1fr; }
  .footer__brochure { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 16px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-panel { grid-template-columns: 1fr !important; padding: 20px 14px !important; min-height: 0 !important; }
  .about-panel__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-right: none; padding-right: 0; }
  .about-panel__content { border-right: none; padding-left: 0; }
  .about-panel__stats { grid-template-columns: repeat(2, 1fr); }
  .about-panel__image-wrap { min-height: 220px; }
  .programs-panel { grid-template-columns: 1fr !important; padding: 20px 14px !important; min-height: 0 !important; }
  .programs-panel__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-right: none; }
  .programs-panel__hero { grid-template-columns: 1fr; padding-left: 0; }
  .programs-panel__cards { grid-template-columns: 1fr; }
}

/* ============================================
   MOBILE (max-width 768px)
   ============================================ */
@media (max-width: 768px) {
  .navbar__mobile-bar { padding: 6px 14px; min-height: 58px; }
  .navbar__logo-wrap { width: 72px !important; min-width: 72px !important; height: 66px !important; }
  .navbar__logo { max-width: 58px !important; }
  .hero { min-height: 480px; }
  .hero__content { padding: 30px 16px 28px; }
  .hero__heading { font-size: 22px; line-height: 1.35; }
  .hero__subtext { font-size: 14px; max-width: 100%; }
  .hero__bg img { object-position: 65% center; }
  .stats-bar { width: calc(100% - 28px); margin: -24px auto 0; grid-template-columns: 1fr; padding: 24px 20px; gap: 16px; border-radius: 8px; }
  .stats-bar__item { justify-content: flex-start; padding-left: 20px; }
  .stats-bar__icon { width: 46px; height: 46px; }
  .stats-bar__number { font-size: 26px; }
  .stats-bar__label { font-size: 14px; }
  .programs { padding: 40px 0 20px; }
  .programs__shell { padding: 0 14px; }
  .programs-spotlight { padding: 10px 0 40px; }
  .programs-spotlight__shell { padding: 24px 14px 16px !important; }
  .programs-spotlight__title { font-size: 2rem; }
  .programs-spotlight__title-line--lead, .programs-spotlight__title-line { white-space: normal; }
  .programs-spotlight__description { font-size: 14px; }
  .programs-spotlight__cta { width: 100%; min-width: 0; justify-content: center; }
  .programs-spotlight__card { flex-basis: 100% !important; padding: 14px; }
  .programs-spotlight__card-title { font-size: 18px; }
  .programs-spotlight__benefits { grid-template-columns: 1fr; padding: 12px 8px; }
  .programs-spotlight__benefit + .programs-spotlight__benefit { border-top: 1px solid rgba(255,255,255,0.16); border-left: none !important; }
  .programs-spotlight__carousel-button--prev { left: 8px; }
  .programs-spotlight__carousel-button--next { right: 8px; }
  .placements-showcase { padding: 0 0 48px; }
  .placements-showcase__shell { padding: 24px 14px 16px !important; }
  .placements-showcase__title { font-size: 1.8rem; white-space: normal; }
  .placements-showcase__cta { width: 100%; justify-content: center; }
  .placements-showcase__card { grid-template-columns: 1fr; }
  .placements-showcase__photo-wrap { min-height: 220px; }
  .placements-showcase__card-body { padding: 16px; }
  .placements-showcase__package-row { grid-template-columns: 1fr; width: 100%; }
  .placements-showcase__stats-copy { padding: 22px 16px; }
  .placements-showcase__stats-copy h3 { font-size: 22px; }
  .placements-showcase__stats-grid { grid-template-columns: 1fr; }
  .placements-showcase__stat { padding: 18px 16px; }
  .placements-showcase__stat, .placements-showcase__stat:nth-child(odd), .placements-showcase__stat:nth-child(1), .placements-showcase__stat:nth-child(2) { border: none; }
  .placements-showcase__stat + .placements-showcase__stat { border-top: 1px solid rgba(25,49,104,0.08); }
  .placements-showcase__partners { padding: 12px; }
  .placements-showcase__partner-item { min-width: 110px; min-height: 52px; padding: 8px 10px; }
  .faculty-showcase { padding: 0 0 48px; }
  .faculty-showcase__shell { padding: 24px 14px 16px !important; }
  .faculty-showcase__title { font-size: 1.8rem; white-space: normal; }
  .faculty-showcase__subtitle { font-size: 14px; }
  .faculty-showcase__cta { width: 100%; min-width: 0; justify-content: center; }
  .faculty-showcase__card { flex-basis: 100% !important; min-height: 0; }
  .faculty-showcase__portrait-wrap { width: 180px; height: 180px; }
  .faculty-showcase__tabs { gap: 10px; flex-wrap: wrap; }
  .faculty-showcase__tab { font-size: 14px; }
  .faculty-showcase__tab--active::after { width: 100%; }
  .institutions-showcase { padding: 0 0 48px; }
  .institutions-showcase__shell { padding: 22px 14px 16px !important; }
  .institutions-showcase__title { font-size: 1.8rem; white-space: normal; }
  .institutions-showcase__grid { grid-template-columns: 1fr; gap: 16px; }
  .institutions-showcase__card-image { height: 180px; }
  .institutions-showcase__card-title { min-height: 0; font-size: 18px; }
  .institutions-showcase__featured-image { height: 200px; }
  .institutions-showcase__featured-content { padding: 20px 16px; }
  .institutions-showcase__cta { width: 100%; justify-content: center; }
  .happenings-showcase { padding: 0 0 48px; }
  .happenings-showcase__shell { padding: 24px 14px 14px !important; }
  .happenings-showcase__title { font-size: 1.8rem; padding-left: 24px; }
  .happenings-showcase__accent { margin-left: 24px; }
  .happenings-showcase__cta { width: 100%; justify-content: center; }
  .happenings-showcase__events { grid-template-columns: 1fr; }
  .happenings-showcase__event-image { height: 200px; }
  .happenings-showcase__announcement-list { grid-template-columns: 1fr; }
  .happenings-showcase__announcement + .happenings-showcase__announcement { border-top: 1px solid rgba(219,228,244,0.95); border-left: none; }
  .happenings-showcase__stats-strip { grid-template-columns: 1fr; }
  .happenings-showcase__stat + .happenings-showcase__stat { border-top: 1px solid rgba(219,228,244,0.95); border-left: none; }
  .happenings-showcase__cta-panel { flex-direction: column; text-align: center; gap: 24px; padding: 32px 20px; margin: 0 0 30px; border-radius: 16px; box-shadow: none; border-right: 8px solid #fdb515; }
  .happenings-showcase__cta-panel::after { display: none; }
  .happenings-showcase__cta-content { transform: none !important; max-width: 100%; text-align: center; }
  .happenings-showcase__cta-visual { min-height: 0 !important; }
  .happenings-showcase__cta-orbit { width: 140px; height: 140px; }
  .happenings-showcase__cta-orbit svg { width: 72px; height: 72px; }
  .happenings-showcase__cta-title { font-size: 1.6rem; line-height: 1.25; margin: 0 auto; }
  .happenings-showcase__cta-title-line, .happenings-showcase__cta-title-highlight { white-space: normal; display: block; }
  .happenings-showcase__cta-actions { flex-direction: column; align-items: center; width: 100%; margin-top: 24px; }
  .happenings-showcase__cta-button { width: 100%; max-width: 280px; justify-content: center; }
  .happenings-showcase__cta-building { display: none !important; }
  .happenings-showcase__cta-rail { display: none !important; }
  .happenings-showcase__cta-dots { display: none !important; }
  .home-sections { padding: 20px 14px 50px; }
  .feature-section { gap: 16px; }
  .feature-section__content, .feature-section__visual { padding: 20px; border-radius: 18px; }
  .feature-section__title { font-size: 22px; }
  .feature-section__highlight-grid { grid-template-columns: 1fr; }
  .footer { padding-inline: 14px; }
  .footer__shell { padding: 22px 12px 0; border-radius: 16px 16px 0 0; }
  .footer__shell::before, .footer__shell::after { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col, .footer__col + .footer__col { border: none; padding: 16px 10px; }
  .footer__col + .footer__col { border-top: 1px solid rgba(255,255,255,0.12); }
  .footer__newsletter { margin-top: 16px; padding: 12px; }
  .footer__newsletter-form { grid-template-columns: 1fr; gap: 8px; border: none; background: transparent; }
  .footer__newsletter-form input { border: 1px solid rgba(255,255,255,0.16); background: rgba(6,28,77,0.76); border-radius: 8px; }
  .footer__newsletter-form button { border-radius: 8px; }
  .footer__bottom { padding: 14px 12px 16px; }
  .footer__bottom-links { flex-direction: row; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
  .footer__bottom-links a + a::before { display: none !important; }
  .btn { font-size: 14px; height: 46px; }
  .about-panel { grid-template-columns: 1fr !important; padding: 16px 12px !important; min-height: 0 !important; }
  .about-panel__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-right: none; padding-right: 0; }
  .about-panel__content { border-right: none; padding-left: 0; }
  .about-panel__stats { grid-template-columns: repeat(2, 1fr); }
  .about-panel__image-wrap { min-height: 220px; }
  .programs-panel { grid-template-columns: 1fr !important; padding: 16px 12px !important; min-height: 0 !important; }
  .programs-panel__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-right: none; }
  .programs-panel__hero { grid-template-columns: 1fr; padding-left: 0; }
  .programs-panel__cards { grid-template-columns: 1fr; }
}

/* ============================================
   SMALL MOBILE (max-width 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__heading { font-size: 20px; }
  .stats-bar { margin: -20px auto 0; }
  .placements-showcase__title, .faculty-showcase__title, .institutions-showcase__title, .happenings-showcase__title { font-size: 1.6rem; }
  .programs-spotlight__title { font-size: 1.7rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .about-panel__menu { grid-template-columns: 1fr; }
  .programs-panel__menu { grid-template-columns: 1fr; }
  .institutions-showcase__grid { grid-template-columns: 1fr; }
  .happenings-showcase__events { grid-template-columns: 1fr; }
  .feature-section__content, .feature-section__visual { padding: 16px; }
  .programs-spotlight__benefits { padding: 10px 6px; }
  .placements-showcase__partners-rail { padding: 8px 6px; }
}

/* ============================================
   375px
   ============================================ */
@media (max-width: 375px) {
  .navbar__mobile-bar { padding: 6px 12px; }
  .navbar__logo-wrap { width: 68px !important; min-width: 68px !important; height: 62px !important; }
  .navbar__logo { max-width: 54px !important; }
  .hero { min-height: 420px; }
  .hero__content { padding: 24px 12px 22px; }
  .hero__heading { font-size: 18px; line-height: 1.3; }
  .hero__subtext { font-size: 13px; margin-bottom: 20px; }
  .hero__buttons .btn { font-size: 13px; height: 42px; padding: 8px 14px; }
  .stats-bar { width: calc(100% - 24px); padding: 14px 12px; gap: 10px; border-radius: 8px; margin: -18px auto 0; }
  .stats-bar__icon { width: 42px; height: 42px; }
  .stats-bar__number { font-size: 22px; }
  .stats-bar__label { font-size: 13px; }
  .programs-spotlight__shell { padding: 20px 12px 14px !important; }
  .programs-spotlight__title { font-size: 1.5rem; }
  .programs-spotlight__description { font-size: 13px; }
  .programs-spotlight__card { padding: 12px; }
  .programs-spotlight__card-title { font-size: 16px; }
  .programs-spotlight__card-description { font-size: 13px; min-height: 0; }
  .programs-spotlight__carousel-button { width: 36px; height: 36px; }
  .placements-showcase__shell { padding: 20px 12px 14px !important; }
  .placements-showcase__title { font-size: 1.5rem; }
  .placements-showcase__card-body { padding: 14px 12px; }
  .placements-showcase__stats-copy h3 { font-size: 18px; }
  .faculty-showcase__shell { padding: 20px 12px 14px !important; }
  .faculty-showcase__title { font-size: 1.5rem; }
  .faculty-showcase__portrait-wrap { width: 160px; height: 160px; }
  .institutions-showcase__shell { padding: 20px 12px 14px !important; }
  .institutions-showcase__title { font-size: 1.5rem; }
  .institutions-showcase__card-image { height: 160px; }
  .happenings-showcase__shell { padding: 20px 12px 12px !important; }
  .happenings-showcase__title { font-size: 1.5rem; padding-left: 20px; }
  .happenings-showcase__cta-panel { padding: 24px 14px; border-radius: 14px; }
  .happenings-showcase__cta-title { font-size: 1.5rem; }
  .home-sections { padding: 16px 12px 40px; }
  .feature-section__content, .feature-section__visual { padding: 14px; border-radius: 14px; }
  .feature-section__title { font-size: 18px; }
  .footer { padding-inline: 12px; }
  .footer__shell { padding: 18px 10px 0; }
  .btn { font-size: 13px; height: 42px; padding: 8px 14px; }
}

/* ============================================
   320px
   ============================================ */
@media (max-width: 320px) {
  .navbar__mobile-bar { padding: 5px 10px; min-height: 52px; }
  .navbar__logo-wrap { width: 60px !important; min-width: 60px !important; height: 56px !important; }
  .navbar__logo { max-width: 48px !important; }
  .hero__heading { font-size: 16px; }
  .hero__subtext { font-size: 12px; }
  .hero__buttons .btn { font-size: 12px; height: 40px; }
  .stats-bar { padding: 12px 10px; }
  .stats-bar__number { font-size: 20px; }
  .stats-bar__label { font-size: 12px; }
  .placements-showcase__title, .faculty-showcase__title, .institutions-showcase__title, .happenings-showcase__title, .programs-spotlight__title { font-size: 1.4rem; }
  .placements-showcase__card-body, .faculty-showcase__info, .institutions-showcase__card-body { padding: 12px 10px; }
  .footer__col-title { font-size: 13px; }
  .footer__link { font-size: 12px; }
  .btn { font-size: 12px; height: 40px; padding: 6px 12px; }
  .happenings-showcase__announcement { grid-template-columns: 56px 40px 1fr; gap: 8px; }
  .happenings-showcase__announcement-arrow { display: none; }
}

/* ============================================
   LARGE TABLET / LAPTOP (1025px - 1440px)
   ============================================ */
@media (max-width: 700px) {
  .navbar__drawer {
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    max-width: none !important;
    transform: translateX(100%) !important;
    background: #fff !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .navbar__drawer--open {
    transform: translateX(0) !important;
  }

  .navbar__drawer .navbar__nav {
    width: 100% !important;
    padding: 0 0 18px !important;
    gap: 0 !important;
  }

  .navbar__drawer .navbar__item {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .navbar__drawer .navbar__item-button,
  .navbar__drawer .navbar__item-text {
    min-height: 52px;
    padding: 14px 20px !important;
  }

  .navbar__drawer .navbar__item-button .navbar__item-text {
    min-height: 0;
    padding: 0 !important;
  }

  .navbar__drawer .navbar__mobile-subnav {
    display: block !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    background: #f0f5ff !important;
  }

  .navbar__drawer .navbar__mobile-subnav li,
  .navbar__drawer .navbar__mobile-subitem {
    display: flex !important;
    width: 100% !important;
  }

  .navbar__drawer .navbar__mobile-subitem {
    min-height: 46px;
    padding: 12px 20px 12px 34px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .navbar__mobile-bar { display: none !important; }
  .navbar__inner { padding: 0 20px 0 160px !important; }
  .navbar__logo-wrap { width: 140px !important; min-width: 140px !important; height: 128px !important; left: 20px !important; }
  .navbar__nav { gap: 16px; margin-left: 0; }
  .navbar__item-text { font-size: 14px; }
  .stats-bar { padding: 24px 28px; }
  .programs-spotlight__card { flex-basis: calc(33.33% - 8px) !important; }
  .faculty-showcase__card { flex-basis: calc(33.33% - 16px) !important; }
  .institutions-showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .happenings-showcase__events { grid-template-columns: repeat(2, 1fr); }
  .home-sections { padding: 30px 30px 70px; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Final mobile drawer guard: keep drawer full-width and menus stacked on all small screens. */
@media (max-width: 1024px) {
  .navbar__drawer {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
  }

  .navbar__drawer--open {
    transform: translateX(0) !important;
  }

  .navbar__drawer .navbar__mobile-nav {
    display: block !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 0 24px !important;
    list-style: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .navbar__drawer .navbar__mobile-item {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    position: static !important;
    border-bottom: 1px solid rgba(16,65,198,0.08);
  }

  .navbar__drawer .navbar__mobile-subnav {
    display: block !important;
    position: static !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .navbar__drawer .navbar__mobile-subnav li {
    display: block !important;
  }

  .navbar__drawer .navbar__mobile-subitem {
    display: flex !important;
    min-height: 46px;
  }
}
/* ============================================
   PAGES RESPONSIVE CSS
   Covers: FacultyPage, ProgramsPage, ProgramDetailPage,
           OurInstitutions, ContactUs, History, Chairman,
           MissionVision, WhyJoinSeg, ExploreMore,
           ResearchProjects, AwardWinningProjects, etc.
   ============================================ */

/* ── TABLET (max-width: 1024px) ── */
@media (max-width: 1024px) {

  /* FacultyPage hero */
  [style*="gridTemplateColumns: '1fr 560px 240px'"],
  [style*="gridTemplateColumns: '1fr 480px 220px'"],
  [style*="gridTemplateColumns: '1fr 420px 200px'"] {
    grid-template-columns: 1fr 1fr !important;
    padding: 60px 20px 40px !important;
  }

  /* ProgramDetailPage hero */
  [style*="gridTemplateColumns: '1fr 1fr'"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA sections */
  [style*="gridTemplateColumns: '1fr auto'"] {
    grid-template-columns: 1fr !important;
  }

  /* ProgramsPage grid */
  [style*="minmax(360px, 1fr)"],
  [style*="minmax(380px, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* OurInstitutions grid */
  [style*="minmax(380px, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ProgramDetailPage highlights */
  [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ProgramDetailPage why choose */
  [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Specializations grid */
  [style*="gridTemplateColumns: '280px 1fr'"] {
    grid-template-columns: 1fr !important;
  }

  /* FacultyPage filter tabs */
  [style*="overflowX: 'auto'"] {
    overflow-x: auto !important;
  }

  /* FacultyPage programs grid */
  [style*="minmax(300px, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Recruiter section */
  [style*="overflowX: 'auto'"] {
    overflow-x: auto !important;
    padding-bottom: 8px !important;
  }

  /* CTA margin */
  [style*="margin: '0 45px 60px'"],
  [style*="margin: '0 45px 50px'"] {
    margin: 0 20px 40px !important;
    padding: 36px 28px !important;
  }
}

/* ── MOBILE (max-width: 768px) ── */
@media (max-width: 768px) {

  /* FacultyPage hero - stack to column */
  [style*="gridTemplateColumns: '1fr 560px 240px'"],
  [style*="gridTemplateColumns: '1fr 480px 220px'"],
  [style*="gridTemplateColumns: '1fr 420px 200px'"] {
    display: flex !important;
    flex-direction: column !important;
    padding: 40px 16px 30px !important;
    gap: 24px !important;
  }

  /* Hide campus image on mobile */
  [style*="height: '480px'"][style*="borderRadius: '18px'"],
  [style*="height: '400px'"][style*="borderRadius: '18px'"] {
    display: none !important;
  }

  /* Stats column on mobile */
  [style*="flexDirection: 'column'"][style*="gap: '12px'"] {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  /* ProgramsPage grid - single column */
  [style*="minmax(360px, 1fr)"],
  [style*="minmax(380px, 1fr)"],
  [style*="minmax(300px, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* ProgramDetailPage hero */
  [style*="gridTemplateColumns: '1fr 1fr'"] {
    grid-template-columns: 1fr !important;
    padding: 36px 16px !important;
  }

  /* ProgramDetailPage highlights */
  [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 24px 16px !important;
  }

  /* Specializations */
  [style*="gridTemplateColumns: '280px 1fr'"] {
    grid-template-columns: 1fr !important;
    padding: 30px 16px !important;
  }

  [style*="gridTemplateColumns: '1fr 1fr'"][style*="gap: '16px'"] {
    grid-template-columns: 1fr !important;
  }

  /* Why choose */
  [style*="repeat(4, 1fr)"][style*="gap: '24px'"] {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 24px 16px !important;
  }

  /* Career paths */
  [style*="justifyContent: 'center'"][style*="flexWrap: 'wrap'"] {
    gap: 14px !important;
  }

  /* CTA sections */
  [style*="gridTemplateColumns: '1fr auto'"] {
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
  }

  [style*="margin: '0 45px 60px'"],
  [style*="margin: '0 45px 50px'"] {
    margin: 0 14px 30px !important;
    padding: 28px 18px !important;
    border-radius: 14px !important;
  }

  /* Hero banners on pages */
  [style*="padding: '60px 45px 50px'"],
  [style*="padding: '60px 45px 40px'"] {
    padding: 36px 16px 28px !important;
  }

  [style*="fontSize: '2.8rem'"] {
    font-size: 1.8rem !important;
  }

  /* FacultyPage filter tabs */
  [style*="background: '#fff'"][style*="borderRadius: '14px'"][style*="padding: '8px'"] {
    flex-wrap: wrap !important;
    width: 100% !important;
  }

  /* FacultyPage programs grid */
  [style*="padding: '36px 45px'"] {
    padding: 24px 16px !important;
  }

  /* Recruiter section */
  [style*="padding: '40px 45px'"] {
    padding: 28px 16px !important;
  }

  /* OurInstitutions */
  [style*="padding: '44px 45px 0'"] {
    padding: 24px 16px 0 !important;
  }

  /* ProgramsPage hero */
  [style*="padding: '60px 45px 50px'"] {
    padding: 36px 16px 28px !important;
  }

  [style*="padding: '44px 45px 0'"] {
    padding: 24px 16px 0 !important;
  }

  /* Buttons full width on mobile */
  [style*="display: 'flex'"][style*="gap: '14px'"][style*="flexWrap: 'wrap'"] {
    flex-direction: column !important;
  }

  /* Tables responsive */
  .fee-table-container { overflow-x: auto; }
  .fee-table { min-width: 600px; }

  /* Admission process */
  .ap-hero__title { font-size: 2.5rem !important; }
  .ap-hero__floating-card { display: none; }
  .ap-step__card { flex-direction: column !important; }
  .ap-step__illustration { display: none; }
  .ap-checks { grid-template-columns: 1fr !important; }

  /* Eligibility */
  .eligibility-layout { flex-direction: column !important; }
  .eligibility-sidebar { width: 100% !important; }
  .eligibility-tabs { flex-wrap: wrap !important; }

  /* Placements page */
  .placements-hero__title { font-size: 2.2rem !important; }
  .placements-hero__subtitle { font-size: 1.4rem !important; white-space: normal !important; }
  .placements-grid { grid-template-columns: 1fr !important; }
  .placement-card { flex-direction: column !important; }

  /* Program page */
  .program-hero__content { padding: 6rem 5% 3rem !important; }
  .program-hero__title { font-size: 2.5rem !important; }
  .program-info__grid { grid-template-columns: 1fr !important; }
  .program-why__grid { grid-template-columns: 1fr !important; }
  .program-spec__grid { grid-template-columns: 1fr !important; }
  .program-cta__buttons { flex-direction: column !important; align-items: center !important; }

  /* Contact page */
  .cu-hero { padding: 60px 24px 40px !important; }
  .cu-hero__title { font-size: 2.8rem !important; letter-spacing: -1.5px !important; }
  .cu-hero__sub { font-size: 1.1rem !important; margin-bottom: 24px !important; }
  .cu-hero__actions { flex-direction: row !important; gap: 16px !important; justify-content: center !important; }
  .cu-main { padding: 30px 24px !important; }

  /* History page */
  .history-hero { padding: 40px 16px !important; }

  /* Mission Vision */
  .mission-vision-hero { padding: 40px 16px !important; }

  /* Why Join SEG */
  .why-join-hero { padding: 40px 16px !important; }

  /* Chairman */
  .chairman-hero { padding: 40px 16px !important; }

  /* Research pages */
  .research-hero { padding: 40px 16px !important; }
  .research-grid { grid-template-columns: 1fr !important; }

  /* Explore More */
  .explore-hero { padding: 40px 16px !important; }
  .explore-grid { grid-template-columns: 1fr !important; }
}

/* ── SMALL MOBILE (max-width: 480px) ── */
@media (max-width: 480px) {

  [style*="fontSize: '2.8rem'"] { font-size: 1.6rem !important; }
  [style*="fontSize: '2rem'"] { font-size: 1.4rem !important; }

  /* ProgramDetailPage highlights - single column */
  [style*="repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Why choose - single column */
  [style*="repeat(4, 1fr)"][style*="gap: '24px'"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats cards */
  [style*="flexDirection: 'column'"][style*="gap: '12px'"] {
    flex-direction: column !important;
  }

  .ap-hero__title { font-size: 2rem !important; }
  .placements-hero__title { font-size: 1.8rem !important; }
  .program-hero__title { font-size: 2rem !important; }

  /* Fee table */
  .fee-stats-bar { grid-template-columns: 1fr !important; }
  .quota-stats-bar { grid-template-columns: 1fr !important; }
}

/* ── LARGE MOBILE (max-width: 425px) ── */
@media (max-width: 425px) {
  /* Reduce space from top globally for all subpage heroes */
  .ap-hero,
  .placements-hero,
  .program-hero,
  .fee-hero,
  .quota-hero,
  .eligibility-hero,
  .careers-hero,
  .cu-hero,
  .mv-hero,
  .history-hero,
  .wjs-hero,
  .chairman-hero {
    padding: 10px 4% 30px !important;
  }

  .ap-hero__inner,
  .placements-hero__inner,
  .program-hero__inner,
  .fee-hero__inner,
  .quota-hero__inner,
  .eligibility-hero__inner,
  .careers-hero__inner,
  .cu-hero__inner,
  .mv-hero__inner,
  .history-hero__inner,
  .wjs-hero__inner,
  .chairman-hero__shell {
    padding: 15px 10px 10px !important;
    gap: 20px !important;
  }

  .ap-hero__content,
  .placements-hero__content,
  .program-hero__content,
  .fee-hero__content,
  .quota-hero__content,
  .eligibility-hero__content,
  .careers-hero__content,
  .cu-hero__content,
  .mv-hero__content,
  .history-hero__content,
  .wjs-hero__content,
  .chairman-hero__copy {
    padding-top: 10px !important;
  }

  [style*="padding: '60px 45px 50px'"],
  [style*="padding: '60px 45px 40px'"],
  [style*="padding: '36px 16px 28px'"] {
    padding: 24px 12px 20px !important;
  }
  
  [style*="fontSize: '2.8rem'"] { font-size: 1.5rem !important; }
  [style*="fontSize: '2rem'"] { font-size: 1.3rem !important; }
  
  .ap-hero__title { font-size: 1.9rem !important; }
  .placements-hero__title { font-size: 1.7rem !important; }
  .program-hero__title { font-size: 1.9rem !important; }
  .fee-hero__title { font-size: 1.9rem !important; }
  .quota-hero__title { font-size: 1.9rem !important; }
  .eligibility-hero__title { font-size: 2.1rem !important; }

  /* Grid layouts to single column */
  .eligibility-tabs { flex-direction: column !important; }
  .fee-stats-bar, .quota-stats-bar { grid-template-columns: 1fr !important; }
  
  /* Placements list styling adjust */
  .placement-card {
    padding: 0.75rem !important;
    gap: 0.75rem !important;
  }
  .placement-card__image-container {
    max-width: 100% !important;
    min-height: 200px !important;
  }
}

/* ── 375px ── */
@media (max-width: 375px) {
  [style*="padding: '36px 16px 28px'"] { padding: 28px 12px 20px !important; }
  [style*="fontSize: '1.8rem'"] { font-size: 1.5rem !important; }
  .ap-hero__title { font-size: 1.8rem !important; }
  .placements-hero__title { font-size: 1.6rem !important; }
  .program-hero__title { font-size: 1.8rem !important; }
  .fee-hero__title { font-size: 1.8rem !important; }
  .quota-hero__title { font-size: 1.8rem !important; }
  .eligibility-hero__title { font-size: 2rem !important; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  [style*="padding: '28px 12px 20px'"] { padding: 22px 10px 16px !important; }
  [style*="fontSize: '1.5rem'"] { font-size: 1.3rem !important; }
  .ap-hero__title { font-size: 1.5rem !important; }
  .placements-hero__title { font-size: 1.4rem !important; }
  .program-hero__title { font-size: 1.5rem !important; }
  .fee-hero__title { font-size: 1.5rem !important; }
  .eligibility-hero__title { font-size: 1.6rem !important; }
  .eligibility-container { padding: 1rem !important; }
  .quota-info-card { padding: 20px !important; }
  .ap-step__card { padding: 1rem !important; }
}

/* ── Faculty Pages (FacultyPage & FacultyNewPage) Responsiveness ── */
@media (max-width: 1024px) {
  /* Faculty Page (fp-) */
  .fp-container { margin-top: 60px !important; }
  .fp-hero { padding: 60px 24px 40px !important; }
  .fp-hero__title { font-size: 2.8rem !important; }
  .fp-filter-bar { padding: 0 24px !important; }
  .fp-search-bar { padding: 14px 24px !important; }
  .fp-programs { padding: 30px 24px !important; }
  .fp-recruiters { padding: 30px 24px !important; }
  .fp-cta { margin: 0 24px 40px !important; padding: 40px 30px !important; }

  /* Faculty New Page (fnp-) */
  .fnp-hero { padding: 60px 24px 40px !important; }
  .fnp-hero__title { font-size: 2.8rem !important; }
  .fnp-stats { margin-top: 20px !important; padding: 0 24px !important; }
  .fnp-filters { margin: 40px 24px 30px !important; padding: 24px !important; }
  .fnp-section { padding: 30px 24px !important; }
}

@media (max-width: 768px) {
  /* Faculty Page (fp-) */
  .fp-container { margin-top: 20px !important; }
  .fp-hero {
    grid-template-columns: 1fr !important;
    padding: 20px 20px 30px !important;
    gap: 24px !important;
    text-align: center;
  }
  .fp-hero__title { font-size: 2.3rem !important; }
  .fp-hero__sub { margin: 0 auto 20px !important; }
  .fp-hero__actions { justify-content: center !important; }
  .fp-hero__visual { height: 300px !important; max-width: 500px !important; margin: 0 auto !important; width: 100% !important; }
  .fp-hero__stats { grid-column: span 1 !important; flex-direction: row !important; justify-content: center !important; gap: 12px !important; }
  .fp-stat-card { flex: 1 1 160px !important; max-width: 240px !important; padding: 10px 14px !important; }
  .fp-filter-bar { padding: 0 16px !important; }
  .fp-search-bar { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; padding: 14px 16px !important; }
  .fp-search-input { width: 100% !important; }
  .fp-search-sort { text-align: right !important; }
  .fp-programs { padding: 24px 16px !important; }
  .fp-recruiters { padding: 24px 16px !important; }
  .fp-cta { margin: 0 16px 30px !important; padding: 30px 20px !important; grid-template-columns: 1fr !important; gap: 20px !important; text-align: center; }
  .fp-cta__visual { display: none !important; }
  .fp-cta__actions { justify-content: center !important; }

  /* Faculty New Page (fnp-) */
  .fnp-hero { padding: 20px 20px !important; gap: 30px !important; }
  .fnp-hero__title { font-size: 2.3rem !important; }
  .fnp-hero__desc { margin-bottom: 24px !important; font-size: 1rem !important; }
  .fnp-stats { padding: 0 16px !important; gap: 12px !important; }
  .fnp-stat-card { padding: 16px !important; }
  .fnp-filters { margin: 30px 16px 20px !important; padding: 20px !important; }
  .fnp-filters__grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .fnp-section { padding: 24px 16px !important; }
  .fnp-section__header { margin-bottom: 24px !important; }
  .fnp-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .fnp-card__img-wrap { height: 200px !important; }
  .fnp-leader__portrait-wrap { width: 110px !important; height: 110px !important; margin-bottom: 16px !important; }
}

@media (max-width: 480px) {
  /* Faculty Page (fp-) */
  .fp-container { margin-top: 5px !important; }
  .fp-hero { padding-top: 5px !important; padding-bottom: 20px !important; }
  .fp-hero__title { font-size: 1.8rem !important; }
  .fp-hero__actions button { width: 100% !important; justify-content: center !important; }
  .fp-hero__visual { height: 200px !important; }
  .fp-stat-card { flex: 1 1 100% !important; max-width: 100% !important; }
  .fp-grid { grid-template-columns: 1fr !important; }
  .fp-cta__actions button { width: 100% !important; justify-content: center !important; }

  /* Faculty New Page (fnp-) */
  .fnp-hero { padding-top: 5px !important; padding-bottom: 20px !important; }
  .fnp-hero__title { font-size: 1.8rem !important; }
  .fnp-stat-card { flex: 1 1 100% !important; }
  .fnp-filters__grid { grid-template-columns: 1fr !important; }
  .fnp-filters__footer { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; }
  .fnp-view-toggle { justify-content: space-between !important; }
  .fnp-grid { grid-template-columns: 1fr !important; }
}
.programs {
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.programs__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.programs__track--right {
  animation: slideRight 40s linear infinite;
}

.programs__track--left {
  animation: slideLeft 40s linear infinite;
}

.programs__card {
  height: 295px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);

  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.programs__card--big {
  width: calc(40vw - 52px);
}

.programs__card--small {
  width: calc(22vw - 52px);
}

.programs__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .programs__card--big {
    width: 400px;
  }
  .programs__card--small {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .programs {
    padding: 40px 0;
  }
  .programs__card {
    height: 200px;
  }
  .programs__card--big {
    width: 280px;
  }
  .programs__card--small {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .programs__card {
    height: 160px;
  }
  .programs__card--big {
    width: 220px;
  }
  .programs__card--small {
    width: 140px;
  }
}
/* ===== HISTORY OF SEG PAGE ===== */

.history-page {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

/* --- Hero Section --- */
.history-hero {
  position: relative;
  min-height: 700px;
  background: white;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.history-hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 30%;
  width: 250px;
  height: 250px;
  background-image: repeating-radial-gradient(circle at center, transparent 0, transparent 4px, rgba(255, 190, 35, 0.2) 5px, rgba(255, 190, 35, 0.2) 6px);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}

.history-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 80px 45px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.history-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 560px;
  padding-right: 0;
  padding-top: 60px;
}

.history-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1041c6;
  margin-bottom: 30px;
}

.history-hero__breadcrumbs .separator {
  color: #64748b;
  font-size: 12px;
}

.history-hero__breadcrumbs .current {
  color: #2563eb;
}

.history-hero__title {
  font-size: clamp(2.5rem, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #112347;
  margin-bottom: 16px;
}

.history-hero__title .text-blue {
  color: #2563eb;
}

.history-hero__accent-line {
  width: 50px;
  height: 4px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 24px;
}

.history-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
}

.history-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}

.history-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.history-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* --- Stats Bar --- */
.history-stats-bar {
  position: relative;
  z-index: 10;
  width: calc(100% - 90px);
  margin: -50px 45px 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #021a52 0%, #062b80 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 50px 5%;
  gap: 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.history-stats-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 0 10px;
}

.history-stats-bar__item+.history-stats-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.history-stats-bar__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 190, 35, 0.1);
  border: 1px solid rgba(255, 190, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbe23;
}

.history-stats-bar__icon svg {
  width: 32px;
  height: 32px;
}

.history-stats-bar__info {
  display: flex;
  flex-direction: column;
}

.history-stats-bar__value {
  font-size: 28px;
  font-weight: 700;
  color: #ffbe23;
  line-height: 1.1;
}

.history-stats-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.3;
}

/* --- Timeline Section --- */
.history-timeline {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 60px 5%;
}

.history-timeline__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: none;
  margin: 0 auto 60px;
  gap: 40px;
}

.history-timeline__subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.history-timeline__title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.history-timeline__intro-text {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.history-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 36px;
}

.timeline-item__marker-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  position: relative;
}

.timeline-item__icon-wrap {
  background: #ffffff;
  padding: 4px;
  border-radius: 50%;
  margin-bottom: 16px;
  z-index: 2;
}

.timeline-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1041c6;
}

.timeline-item__icon svg {
  width: 28px;
  height: 28px;
}

.timeline-item__year {
  font-size: 28px;
  font-weight: 700;
  color: #1041c6;
  z-index: 2;
  background: #ffffff;
  padding: 4px 0;
}

.timeline-item__line {
  position: absolute;
  top: 70px;
  bottom: -40px;
  /* extends to next item */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  border-left: 2px dashed #94a3b8;
  z-index: 1;
}

/* For the last item's line to be hidden, handled in JS */

.timeline-item__content-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 24px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  min-width: 0;
}

.timeline-item__caret {
  position: absolute;
  left: -8px;
  top: 32px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  transform: rotate(45deg);
}

.timeline-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.timeline-item__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.timeline-item__title {
  font-size: 24px;
  font-weight: 700;
  color: #1041c6;
}

.timeline-item__tag {
  background: #ffbe23;
  color: #1e293b;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.timeline-item__description {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item__visual {
  flex-shrink: 0;
  width: 320px;
}

.timeline-item__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* --- Responsive Styles --- */
@media (max-width: 1200px) {
  .history-hero__image {
    height: 500px;
  }
  .history-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
    gap: 30px;
  }
  .history-stats-bar__item:nth-child(even) {
    border-left: none;
  }
}

@media (max-width: 1024px) {
  .history-hero {
    padding: 60px 5% 100px;
  }

  .history-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .history-hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .history-hero__breadcrumbs {
    margin-top: 0;
    justify-content: center;
  }

  .history-hero__text {
    max-width: 100%;
  }

  .history-hero__visual {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px !important;
  }

  .history-hero__image {
    height: 400px;
  }

  .history-stats-bar {
    margin: -50px 5% 0;
    width: auto;
  }

  .history-timeline {
    padding: 60px 5%;
  }

  .history-timeline__header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .history-timeline__intro-text {
    max-width: 100%;
  }

  .timeline-item__content-card {
    flex-direction: column;
  }

  .timeline-item__visual {
    width: 100%;
  }

  .timeline-item__image {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .history-hero {
    padding: 40px 5% 80px;
  }

  .history-hero__title {
    font-size: 2.5rem;
  }

  .history-stats-bar {
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding: 20px;
  }

  .history-stats-bar__item {
    border-left: none !important;
    padding: 0;
    justify-content: flex-start;
  }

  .timeline-item {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-item__marker-area {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }

  .timeline-item__icon-wrap {
    margin-bottom: 0;
  }

  .timeline-item__line {
    display: none;
  }

  .timeline-item__caret {
    display: none;
  }

  .timeline-item__header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .timeline-item__title {
    font-size: 20px;
  }
}

/* ============================================
   LARGE/MEDIUM/SMALL MOBILE VIEWS (425px, 375px, 320px)
   ============================================ */
@media (max-width: 425px) {
  .history-hero {
    padding: 10px 4% 30px !important;
  }

  .history-hero__inner {
    padding: 15px 10px 10px !important;
    gap: 20px !important;
  }

  .history-hero__content {
    padding-top: 10px !important;
  }

  .history-hero__title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  .history-hero__text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .history-hero__image {
    height: 200px !important;
  }

  .history-stats-bar {
    margin: -30px 10px 0 !important;
    padding: 16px 12px !important;
    border-radius: 10px !important;
    gap: 12px !important;
  }

  .history-stats-bar__icon {
    width: 44px !important;
    height: 44px !important;
  }

  .history-stats-bar__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .history-stats-bar__value {
    font-size: 22px !important;
  }

  .history-stats-bar__label {
    font-size: 11px !important;
  }

  .history-content {
    padding: 40px 12px !important;
  }

  .history-content__title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .history-content__intro {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .timeline-item {
    padding: 16px !important;
    border-radius: 12px !important;
    margin-bottom: 24px !important;
  }

  .timeline-item__year {
    font-size: 20px !important;
  }

  .timeline-item__title {
    font-size: 18px !important;
  }

  .timeline-item__text {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 375px) {
  .history-hero__title {
    font-size: 22px !important;
  }

  .history-stats-bar__value {
    font-size: 20px !important;
  }

  .history-content__title {
    font-size: 20px !important;
  }

  .timeline-item__title {
    font-size: 17px !important;
  }
}

@media (max-width: 320px) {
  .history-hero__title {
    font-size: 20px !important;
  }

  .history-hero__text {
    font-size: 13px !important;
  }

  .history-stats-bar__value {
    font-size: 18px !important;
  }

  .history-content__title {
    font-size: 18px !important;
  }

  .timeline-item__title {
    font-size: 16px !important;
  }
}/* ===== CHAIRMAN PAGE ===== */

.chairman-page {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.chairman-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 750px;
  padding: 44px 0 70px;
  background:
    linear-gradient(135deg, #f4f8ff 0%, #ffffff 38%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chairman-hero::before {
  content: '';
  position: absolute;
  left: -40px;
  bottom: 28px;
  width: 260px;
  height: 160px;
  background:
    radial-gradient(circle at 22% 30%, rgba(36, 102, 255, 0.1) 2px, transparent 3px);
  background-size: 24px 24px;
  opacity: 0.9;
  pointer-events: none;
}

.chairman-hero::after {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -110px;
  width: 380px;
  height: 240px;
  border: 2px solid rgba(65, 138, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.chairman-hero__shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex: 1;
}

.chairman-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 40px 12px 20px 45px;
}

.chairman-hero__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  font-size: 14px;
  font-weight: 600;
  color: #1241c6;
}

.chairman-hero__breadcrumbs .separator {
  color: #5f7096;
  font-size: 11px;
}

.chairman-hero__breadcrumbs .current {
  color: #2d63f3;
}

.chairman-hero__dots {
  position: absolute;
  left: 0;
  top: 120px;
  width: 24px;
  height: 144px;
  background:
    radial-gradient(circle, #ffbe23 1.9px, transparent 2.2px);
  background-size: 24px 16px;
}

.chairman-hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.chairman-hero__title span {
  font-weight: 800;
  color: #0d215f;
}

.chairman-hero__title strong {
  font-weight: 800;
  color: #2b5ef3;
}

.chairman-hero__signature-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.chairman-hero__signature-line {
  flex: 1;
  max-width: 76px;
  height: 2px;
  background: linear-gradient(90deg, #2f6bf8, #5b96ff);
}

.chairman-hero__signature {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1;
  color: #1d66eb;
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.chairman-hero__visual {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: 100%;
  min-height: unset;
  padding-left: 0;
  align-self: stretch;
}

.chairman-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, rgba(244,248,255,1) 0%, rgba(244,248,255,0.5) 50%, rgba(244,248,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.chairman-hero__campus-wrap {
  position: absolute;
  inset: 0 0 72px 120px;
  overflow: hidden;
  border-radius: 0 0 0 150px;
}

.chairman-hero__campus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.chairman-hero__portrait-blob {
  position: absolute;
  left: 84px;
  top: 0;
  width: 330px;
  height: 430px;
  border-radius: 180px 180px 90px 90px;
  background: linear-gradient(180deg, #0f52ea, #1c63f0);
}

.chairman-hero__portrait-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.chairman-hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.04);
}

.chairman-hero__quote {
  position: absolute;
  right: 22px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 470px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.94);
  color: #214078;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.chairman-hero__quote-mark {
  font-size: 70px;
  line-height: 0.8;
  color: #ffbc1e;
  font-weight: 800;
}

.chairman-hero__quote p {
  margin: 0;
}

.chairman-letter {
  padding: 18px 24px 60px;
  background: #ffffff;
}

.chairman-letter__shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 22px 48px rgba(10, 34, 95, 0.08);
  border: 1px solid rgba(20, 72, 201, 0.08);
  overflow: hidden;
}

.chairman-letter__profile {
  position: relative;
  min-height: 820px;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}

.chairman-letter__photo-wrap {
  position: absolute;
  inset: 18px 24px 72px;
  overflow: hidden;
  border-radius: 14px;
}

.chairman-letter__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96);
}

.chairman-letter__nameplate {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(90deg, rgba(9, 76, 212, 0.95), rgba(8, 61, 164, 0.92));
  color: #ffffff;
}

.chairman-letter__nameplate-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  border-radius: 50%;
  background: #ffc539;
  color: #1752cc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chairman-letter__nameplate-icon svg {
  width: 34px;
  height: 34px;
}

.chairman-letter__nameplate-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.chairman-letter__nameplate-copy strong {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.chairman-letter__nameplate-copy span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.chairman-letter__content {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  padding: 46px 38px 36px 18px;
}

.chairman-letter__quote-mark {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 110px;
  line-height: 0.8;
  color: rgba(55, 96, 182, 0.16);
  font-weight: 700;
}

.chairman-letter__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.chairman-letter__rail-line {
  position: absolute;
  top: 18px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(38, 104, 242, 0.65), rgba(38, 104, 242, 0.1));
}

.chairman-letter__rail-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin: 0 0 128px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #4c85ff;
  box-shadow: 0 0 0 4px rgba(76, 133, 255, 0.14);
}

.chairman-letter__rail-dot:last-child {
  margin-bottom: 0;
}

.chairman-letter__body {
  display: flex;
  flex-direction: column;
}

.chairman-letter__point {
  padding: 0 28px 22px 0;
  border-bottom: 1px solid rgba(30, 63, 138, 0.14);
}

.chairman-letter__point + .chairman-letter__point {
  padding-top: 22px;
}

.chairman-letter__point p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  color: #243d76;
}

.chairman-letter__signoff {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 26px;
}

.chairman-letter__signoff-line {
  width: 86px;
  height: 4px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: #ffc539;
}

.chairman-letter__signoff p,
.chairman-letter__signoff strong,
.chairman-letter__signoff span {
  margin: 0;
}

.chairman-letter__signoff p {
  font-size: 17px;
  color: #2f69ea;
  font-weight: 700;
}

.chairman-letter__signoff strong {
  font-size: 20px;
  color: #18306a;
}

.chairman-letter__signoff span {
  font-size: 16px;
  color: #54688f;
}

.chairman-letter__dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 114px;
  height: 88px;
  background: radial-gradient(circle, rgba(70, 126, 255, 0.26) 1.6px, transparent 2px);
  background-size: 18px 18px;
}

@media (max-width: 1280px) {
  .chairman-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .chairman-hero__shell {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  }

  .chairman-hero__copy {
    padding-left: 24px;
  }

  .chairman-hero__visual {
    min-height: 520px;
    padding-left: 50px;
  }

  .chairman-hero__campus-wrap {
    inset: 0 0 74px 92px;
  }

  .chairman-hero__portrait-blob {
    left: 66px;
    width: 290px;
    height: 396px;
  }

  .chairman-hero__portrait-wrap {
    width: 430px;
    height: 520px;
  }

  .chairman-letter {
    padding-left: 22px;
    padding-right: 22px;
  }

  .chairman-letter__shell {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  }

  .chairman-letter__point p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .chairman-hero {
    padding-top: 32px;
    padding-bottom: 0;
    min-height: auto;
  }

  .chairman-hero__shell {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .chairman-hero__copy {
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }

  .chairman-hero__breadcrumbs {
    justify-content: center;
    margin-bottom: 22px;
  }

  .chairman-hero__dots {
    left: 16px;
    top: 18px;
    width: 96px;
    height: 72px;
  }

  .chairman-hero__signature-row {
    width: 100%;
    justify-content: center;
  }

  .chairman-hero__visual {
    position: relative;
    top: 0;
    width: 100vw;
    min-height: 480px;
    padding-left: 0;
    margin-top: 20px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .chairman-hero__campus-wrap {
    inset: 0 0 70px 0;
    border-radius: 28px;
  }

  .chairman-hero__portrait-blob {
    left: 50%;
    top: 18px;
    width: 280px;
    height: 360px;
    transform: translateX(-50%);
  }

  .chairman-hero__portrait-wrap {
    left: 50%;
    bottom: 40px;
    width: 100vw;
    height: 430px;
    transform: translateX(-50%);
  }

  .chairman-hero__quote {
    left: 20px;
    right: 20px;
    bottom: 10px;
    max-width: none;
  }

  .chairman-letter {
    padding-top: 0;
    padding-bottom: 56px;
  }

  .chairman-letter__shell {
    grid-template-columns: 1fr;
  }

  .chairman-letter__profile {
    min-height: 500px;
  }

  .chairman-letter__content {
    padding: 34px 24px 34px 20px;
  }
}

@media (max-width: 768px) {
  .chairman-hero {
    padding: 24px 14px 44px;
  }

  .chairman-hero__title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .chairman-hero__signature-row {
    gap: 12px;
    margin-top: 22px;
  }

  .chairman-hero__signature-line {
    max-width: 42px;
  }

  .chairman-hero__signature {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .chairman-hero__visual {
    width: 100vw;
    min-height: 420px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .chairman-hero__visual::after {
    display: none;
  }

  .chairman-hero__campus-wrap {
    inset: 0;
    border-radius: 0;
  }

  .chairman-hero__campus {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .chairman-hero__portrait-blob {
    display: none;
  }

  .chairman-hero__portrait-wrap {
    left: 0;
    right: 0;
    width: 100vw;
    height: 340px;
    bottom: 70px;
    transform: none;
  }

  .chairman-hero__quote {
    left: 14px;
    right: 14px;
    bottom: 10px;
    max-width: none;
  }

  .chairman-letter {
    padding: 0 14px 44px;
  }

  .chairman-letter__profile {
    min-height: 400px;
  }

  .chairman-letter__photo-wrap {
    inset: 20px 20px 92px;
  }

  .chairman-letter__nameplate {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 14px 16px;
  }

  .chairman-letter__nameplate-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .chairman-letter__nameplate-copy strong {
    font-size: 16px;
  }

  .chairman-letter__nameplate-copy span {
    font-size: 12px;
  }

  .chairman-letter__content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 16px 22px;
  }

  .chairman-letter__rail {
    display: none;
  }

  .chairman-letter__quote-mark {
    font-size: 78px;
    right: 12px;
  }

  .chairman-letter__point,
  .chairman-letter__point + .chairman-letter__point {
    padding-right: 0;
  }

  .chairman-letter__point p {
    font-size: 15px;
  }

  .chairman-letter__signoff strong {
    font-size: 18px;
  }

  .chairman-letter__signoff span {
    font-size: 14px;
  }

  .chairman-letter__dots {
    width: 78px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .chairman-hero {
    padding: 20px 0 36px;
  }
  .chairman-hero__title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
  .chairman-hero__copy {
    padding-left: 12px;
    padding-right: 12px;
  }
  .chairman-hero__visual {
    width: 100vw;
    min-height: 420px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .chairman-hero__visual::after,
  .chairman-hero__portrait-blob {
    display: none;
  }
  .chairman-hero__portrait-wrap {
    left: 0;
    right: 0;
    bottom: 76px;
    width: 100vw;
    height: 330px;
    transform: none;
  }
  .chairman-hero__quote { font-size: 12px; padding: 10px 12px; margin-top: 340px !important; }
  .chairman-letter { padding: 0 0 36px; }
  .chairman-letter__profile {
    min-height: 0;
    order: 2;
  }
  .chairman-letter__content {
    order: 1;
  }
  .chairman-letter__photo-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    border-radius: 0;
    background: #f8faff;
  }
  .chairman-letter__photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
  .chairman-letter__nameplate {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    border-radius: 0;
  }
  .chairman-letter__nameplate-copy strong { font-size: 15px; }
  .chairman-letter__point p { font-size: 14px; }
}

@media (max-width: 375px) {
  .chairman-hero { padding: 16px 0 30px; }
  .chairman-hero__title { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .chairman-hero__visual { min-height: 380px; }
  .chairman-hero__portrait-wrap { width: 100vw; height: 300px; bottom: 68px; }
  .chairman-hero__quote { font-size: 11px; padding: 8px 10px; gap: 6px; margin-top: 308px !important; }
  .chairman-hero__quote-mark { font-size: 32px; }
  .chairman-letter { padding: 0 0 28px; }
  .chairman-letter__profile { min-height: 0; }
  .chairman-letter__photo-wrap { inset: auto; }
  .chairman-letter__nameplate { padding: 10px 12px; }
  .chairman-letter__nameplate-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .chairman-letter__nameplate-copy strong { font-size: 14px; }
  .chairman-letter__nameplate-copy span { font-size: 11px; }
  .chairman-letter__content { padding: 16px 12px; }
  .chairman-letter__point p { font-size: 13px; }
  .chairman-letter__signoff strong { font-size: 15px; }
  .chairman-letter__signoff span { font-size: 12px; }
}

@media (max-width: 320px) {
  .chairman-hero { padding: 14px 0 26px; }
  .chairman-hero__title { font-size: 1.5rem; }
  .chairman-hero__visual { min-height: 270px; }
  .chairman-hero__portrait-wrap { width: 100vw; height: 270px; bottom: 0; }
  .chairman-hero__quote { display: none; }
  .chairman-letter { padding: 0 0 24px; }
  .chairman-letter__profile { min-height: 0; }
  .chairman-letter__point p { font-size: 12px; line-height: 1.6; }
  .chairman-letter__signoff strong { font-size: 14px; }
}
/* ===== MISSION & VISION PAGE ===== */

.mission-vision-page {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

/* --- Hero Section (Matches History Page) --- */
.mv-hero {
  position: relative;
  min-height: 700px;
  background: white;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mv-hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 30%;
  width: 250px;
  height: 250px;
  background-image: repeating-radial-gradient(circle at center, transparent 0, transparent 4px, rgba(255, 190, 35, 0.2) 5px, rgba(255, 190, 35, 0.2) 6px);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}

.mv-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 80px 45px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.mv-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 560px;
  padding-right: 0;
  padding-top: 60px;
}

.mv-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1041c6;
  margin-bottom: 30px;
}

.mv-hero__breadcrumbs a {
  color: #1041c6;
  text-decoration: none;
}

.mv-hero__breadcrumbs a:hover {
  text-decoration: underline;
}

.mv-hero__breadcrumbs .separator {
  color: #64748b;
  font-size: 12px;
}

.mv-hero__breadcrumbs .current {
  color: #2563eb;
}

.mv-hero__title {
  font-size: clamp(2.5rem, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #112347;
  margin-bottom: 16px;
}

.mv-hero__title .text-blue {
  color: #2563eb;
}

.mv-hero__accent-line {
  width: 50px;
  height: 4px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 24px;
}

.mv-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
}

.mv-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}

.mv-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.mv-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-shadow: none;
}

/* --- Stats Bar --- */
.mv-stats-bar {
  position: relative;
  z-index: 10;
  width: calc(100% - 90px);
  margin: -50px 45px 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #021a52 0%, #062b80 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 50px 5%;
  gap: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mv-stats-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 0 10px;
}

.mv-stats-bar__item+.mv-stats-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mv-stats-bar__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 190, 35, 0.1);
  border: 1px solid rgba(255, 190, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbe23;
  flex-shrink: 0;
}

.mv-stats-bar__icon svg {
  width: 32px;
  height: 32px;
}

.mv-stats-bar__info {
  display: flex;
  flex-direction: column;
}

.mv-stats-bar__value {
  font-size: 28px;
  font-weight: 700;
  color: #ffbe23;
  line-height: 1.1;
}

.mv-stats-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.3;
}

/* --- Mission & Vision Content Section --- */
.mv-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 5% 80px;
  position: relative;
}

.mv-content__header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 70px;
}

.mv-content__header-left {
  flex: 0 0 420px;
}

.mv-content__eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.mv-content__eyebrow-line {
  width: 50px;
  height: 4px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 20px;
}

.mv-content__title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.mv-content__header-right {
  flex: 1;
  padding-top: 40px;
}

.mv-content__intro {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}

.mv-content__dots--top-right {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #ffbe23 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.4;
  z-index: 0;
}

/* --- Mission & Vision Cards --- */
.mv-card {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8edf5;
  margin-bottom: 60px;
  position: relative;
}

.mv-card--reverse {
  direction: rtl;
  grid-template-columns: 1.4fr 0.6fr;
}

.mv-card--reverse>* {
  direction: ltr;
}

.mv-card__visual {
  background: linear-gradient(135deg, #eef4ff 0%, #f0f4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 200px;
  overflow: hidden;
}

.mv-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.mv-card__body {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-card__icon-wrap {
  margin-bottom: 20px;
}

.mv-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #112b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(17, 43, 107, 0.25);
}

.mv-card__icon--vision {
  background: #112b6b;
}

.mv-card__icon svg {
  width: 28px;
  height: 28px;
}

.mv-card__title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.mv-card__title-line {
  width: 40px;
  height: 3px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 20px;
}

.mv-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}

.mv-card__dots--right {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 100px;
  height: 140px;
  background-image: radial-gradient(circle, #c8d6e5 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.mv-card__dots--left {
  position: absolute;
  bottom: 20px;
  left: -10px;
  width: 100px;
  height: 140px;
  background-image: radial-gradient(circle, #c8d6e5 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.mv-content::before {
  content: '';
  position: absolute;
  top: 200px;
  left: 10px;
  width: 16px;
  height: 16px;
  background: #ffbe23;
  border-radius: 50%;
  opacity: 0.3;
}

.mv-content::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: 30px;
  width: 12px;
  height: 12px;
  border: 2px solid #2563eb;
  border-radius: 50%;
  opacity: 0.3;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .mv-hero {
    padding: 60px 5% 100px;
  }

  .mv-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .mv-hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mv-hero__visual {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px !important;
  }

  .mv-hero__image {
    height: 400px;
  }

  .mv-stats-bar {
    margin: -50px 5% 0;
    width: auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .mv-stats-bar__item:nth-child(even) {
    border-left: none;
    padding-left: 0;
  }

  .mv-stats-bar__item:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
  }

  .mv-stats-bar__item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
  }

  .mv-content {
    padding: 60px 20px;
  }

  .mv-content__header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  .mv-content__header-left {
    flex: none;
    width: 100%;
  }

  .mv-content__header-right {
    padding-top: 0;
  }

  .mv-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mv-card--reverse {
    direction: ltr;
  }

  .mv-card__body {
    padding: 40px 30px;
  }

  .mv-card__visual {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .mv-hero__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .mv-hero__image {
    height: 260px;
  }

  .mv-stats-bar {
    margin: -42px 14px 0;
    grid-template-columns: 1fr;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .mv-stats-bar__item {
    padding: 0;
    border-left: none !important;
    padding-left: 0 !important;
    justify-content: flex-start;
  }

  .mv-content {
    padding: 52px 14px;
  }

  .mv-content__title {
    font-size: 30px;
  }

  .mv-card {
    margin-bottom: 40px;
  }

  .mv-card__body {
    padding: 30px 20px;
  }

  .mv-card__visual {
    min-height: 240px;
    padding: 24px;
  }

  .mv-card__title {
    font-size: 24px;
  }

  .mv-card__dots--right,
  .mv-card__dots--left {
    display: none;
  }

  .mv-content__dots--top-right {
    display: none;
  }
}

/* ============================================
   LARGE/MEDIUM/SMALL MOBILE VIEWS (425px, 375px, 320px)
   ============================================ */
@media (max-width: 425px) {
  .mv-hero {
    padding: 10px 4% 30px !important;
  }

  .mv-hero__inner {
    padding: 15px 10px 10px !important;
    gap: 20px !important;
  }

  .mv-hero__content {
    padding-top: 10px !important;
  }

  .mv-hero__title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  .mv-hero__text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .mv-hero__image {
    height: 200px !important;
  }

  .mv-stats-bar {
    margin: -30px 10px 0 !important;
    padding: 16px 12px !important;
    border-radius: 10px !important;
    gap: 12px !important;
  }

  .mv-stats-bar__icon {
    width: 44px !important;
    height: 44px !important;
  }

  .mv-stats-bar__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .mv-stats-bar__value {
    font-size: 22px !important;
  }

  .mv-stats-bar__label {
    font-size: 11px !important;
  }

  .mv-content {
    padding: 40px 12px !important;
  }

  .mv-content__title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .mv-content__intro {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .mv-card {
    border-radius: 12px !important;
    margin-bottom: 30px !important;
  }

  .mv-card__visual {
    min-height: 180px !important;
    padding: 12px !important;
  }

  .mv-card__body {
    padding: 20px 16px !important;
  }

  .mv-card__icon {
    width: 48px !important;
    height: 48px !important;
  }

  .mv-card__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .mv-card__title {
    font-size: 20px !important;
  }

  .mv-card__text {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 375px) {
  .mv-hero__title {
    font-size: 22px !important;
  }

  .mv-stats-bar__value {
    font-size: 20px !important;
  }

  .mv-content__title {
    font-size: 20px !important;
  }

  .mv-card__title {
    font-size: 18px !important;
  }
}

@media (max-width: 320px) {
  .mv-hero__title {
    font-size: 20px !important;
  }

  .mv-hero__text {
    font-size: 13px !important;
  }

  .mv-stats-bar__value {
    font-size: 18px !important;
  }

  .mv-content__title {
    font-size: 18px !important;
  }

  .mv-card__title {
    font-size: 17px !important;
  }
}

/* ===== WHY JOIN SEG PAGE ===== */

.wjs-page {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

/* --- Hero (matches History page exactly) --- */
.wjs-hero {
  position: relative;
  min-height: 700px;
  background: white;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.wjs-hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 30%;
  width: 250px;
  height: 250px;
  background-image: repeating-radial-gradient(
    circle at center,
    transparent 0,
    transparent 4px,
    rgba(255, 190, 35, 0.2) 5px,
    rgba(255, 190, 35, 0.2) 6px
  );
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}

.wjs-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 80px 45px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.wjs-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 560px;
  padding-right: 0;
  padding-top: 60px;
}

.wjs-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1041c6;
  margin-bottom: 30px;
}

.wjs-hero__breadcrumbs a {
  color: #1041c6;
  text-decoration: none;
}

.wjs-hero__breadcrumbs a:hover {
  text-decoration: underline;
}

.wjs-hero__breadcrumbs .separator {
  color: #64748b;
  font-size: 12px;
}

.wjs-hero__breadcrumbs .current {
  color: #2563eb;
}

.wjs-hero__title {
  font-size: clamp(2.5rem, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #112347;
  margin-bottom: 16px;
}

.wjs-hero__title .text-blue {
  color: #2563eb;
}

.wjs-hero__accent-line {
  width: 50px;
  height: 4px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 24px;
}

.wjs-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
}

.wjs-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}

.wjs-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.wjs-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-shadow: none;
}

/* --- Stats Bar --- */
.wjs-stats-bar {
  position: relative;
  z-index: 10;
  width: calc(100% - 90px);
  margin: -50px 45px 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #021a52 0%, #062b80 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 50px 5%;
  gap: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wjs-stats-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 22px;
}

.wjs-stats-bar__item + .wjs-stats-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 22px;
}

.wjs-stats-bar__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 190, 35, 0.1);
  border: 1px solid rgba(255, 190, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbe23;
  flex-shrink: 0;
}

.wjs-stats-bar__icon svg {
  width: 32px;
  height: 32px;
}

.wjs-stats-bar__info {
  display: flex;
  flex-direction: column;
}

.wjs-stats-bar__value {
  font-size: 28px;
  font-weight: 700;
  color: #ffbe23;
  line-height: 1.1;
}

.wjs-stats-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.3;
}

/* --- Main Content Section --- */
.wjs-content {
  background: #f0f4ff;
  width: 100%;
  padding: 90px 45px 100px;
}

.wjs-content__heading {
  margin-bottom: 60px;
}

.wjs-content__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.wjs-content__eyebrow-line {
  width: 44px;
  height: 3px;
  background: #ffbe23;
  border-radius: 4px;
  margin-bottom: 18px;
}

.wjs-content__title {
  font-size: clamp(1.8rem, 3.5vw, 40px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wjs-content__title .text-seg-blue {
  color: #2563eb;
}

/* --- Reason Cards --- */
.wjs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.wjs-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e4ecf7;
  position: relative;
  min-height: 160px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wjs-card:hover {
  box-shadow: 0 8px 32px rgba(17, 65, 198, 0.1);
  transform: translateY(-2px);
}

.wjs-card__icon-box {
  flex-shrink: 0;
  width: 160px;
  background: linear-gradient(145deg, #2563eb 0%, #1041c6 60%, #0d35a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wjs-card__icon-box::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wjs-card__icon-box::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wjs-card__icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.wjs-card__icon-circle svg {
  width: 34px;
  height: 34px;
}

.wjs-card__body {
  flex: 1;
  padding: 36px 40px;
  border-left: 4px solid #ffbe23;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.wjs-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
}

.wjs-card__accent-line {
  width: 36px;
  height: 3px;
  background: #ffbe23;
  border-radius: 4px;
  margin-bottom: 14px;
}

.wjs-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}

.wjs-card__dots {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 80px;
  height: 100px;
  background-image: radial-gradient(circle, #c5d3e8 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.55;
  pointer-events: none;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .wjs-hero {
    padding: 60px 5% 100px;
  }

  .wjs-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .wjs-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .wjs-hero__visual {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px !important;
  }

  .wjs-hero__image {
    height: 400px;
  }

  .wjs-stats-bar {
    margin: -50px 20px 0;
    width: auto;
    padding: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .wjs-stats-bar__item {
    padding: 0 10px;
  }

  .wjs-stats-bar__item:nth-child(even) {
    border-left: none;
    padding-left: 0;
  }

  .wjs-stats-bar__item:nth-child(2),
  .wjs-stats-bar__item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
  }

  .wjs-content {
    padding: 70px 20px 80px;
  }

  .wjs-card__icon-box {
    width: 130px;
  }

  .wjs-card__body {
    padding: 28px 30px;
  }

  .wjs-card__dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .wjs-hero__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .wjs-hero__image {
    height: 260px;
  }

  .wjs-stats-bar {
    margin: -42px 14px 0;
    grid-template-columns: 1fr;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .wjs-stats-bar__item {
    padding: 0;
    border-left: none !important;
    padding-left: 0 !important;
    justify-content: flex-start;
  }

  .wjs-content {
    padding: 52px 14px 60px;
  }

  .wjs-content__title {
    font-size: 1.7rem;
  }

  .wjs-card {
    flex-direction: column;
    min-height: auto;
  }

  .wjs-card__icon-box {
    width: 100%;
    height: 120px;
  }

  .wjs-card__body {
    border-left: none;
    border-top: 4px solid #ffbe23;
    padding: 24px 20px;
  }

  .wjs-card__title {
    font-size: 18px;
  }
}

/* ============================================
   LARGE/MEDIUM/SMALL MOBILE VIEWS (425px, 375px, 320px)
   ============================================ */
@media (max-width: 425px) {
  .wjs-hero {
    padding: 10px 4% 30px !important;
  }

  .wjs-hero__inner {
    padding: 15px 10px 10px !important;
    gap: 20px !important;
  }

  .wjs-hero__content {
    padding-top: 10px !important;
  }

  .wjs-hero__title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  .wjs-hero__text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .wjs-hero__image {
    height: 200px !important;
  }

  .wjs-stats-bar {
    margin: -30px 10px 0 !important;
    padding: 16px 12px !important;
    border-radius: 10px !important;
    gap: 12px !important;
  }

  .wjs-stats-bar__icon {
    width: 44px !important;
    height: 44px !important;
  }

  .wjs-stats-bar__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .wjs-stats-bar__value {
    font-size: 22px !important;
  }

  .wjs-stats-bar__label {
    font-size: 11px !important;
  }

  .wjs-content {
    padding: 40px 12px !important;
  }

  .wjs-content__title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .wjs-content__intro {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .wjs-card {
    border-radius: 12px !important;
    margin-bottom: 30px !important;
  }

  .wjs-card__icon-box {
    height: 100px !important;
  }

  .wjs-card__body {
    padding: 20px 16px !important;
  }

  .wjs-card__title {
    font-size: 18px !important;
  }

  .wjs-card__text {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 375px) {
  .wjs-hero__title {
    font-size: 22px !important;
  }

  .wjs-stats-bar__value {
    font-size: 20px !important;
  }

  .wjs-content__title {
    font-size: 20px !important;
  }

  .wjs-card__title {
    font-size: 17px !important;
  }
}

@media (max-width: 320px) {
  .wjs-hero__title {
    font-size: 20px !important;
  }

  .wjs-hero__text {
    font-size: 13px !important;
  }

  .wjs-stats-bar__value {
    font-size: 18px !important;
  }

  .wjs-content__title {
    font-size: 18px !important;
  }

  .wjs-card__title {
    font-size: 16px !important;
  }
}

/* ===== CONTACT US PAGE ===== */
.cu-page {
  width: 100%;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: #fafbfc;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

/* ── Hero ── */
.cu-hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 5% 4rem;
  background-color: #ffffff;
}

.cu-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cu-hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  z-index: 2;
}

.cu-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.cu-hero__logo-card {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 10;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(241, 245, 249, 0.8);
}

.cu-hero__logo-card img {
  height: 55px;
  width: auto;
}

.cu-hero__logo-card span {
  font-size: 0.7rem;
  font-weight: 800;
  color: #c21d1d;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  text-align: center;
}

.cu-hero__container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0;
}

.cu-hero__left {
  flex: 1.2;
  max-width: 600px;
}

.cu-hero__title {
  font-size: 5.5rem;
  font-weight: 900;
  color: #032155;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -3px;
}

.cu-hero__title span {
  color: #2563eb;
}

.cu-hero__sub {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cu-hero__actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-btn svg {
  width: 22px;
  height: 22px;
}

.cu-btn--solid {
  background: #2563eb;
  color: white;
  border: none;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.cu-btn--solid:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

.cu-btn--outline {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.cu-btn--outline:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.cu-hero__secure {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.cu-hero__secure svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
}

.cu-hero__center {
  flex: 1.5;
  display: flex;
  justify-content: center;
  position: relative;
}

.cu-hero__center img {
  width: 120%;
  max-width: 700px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
}

.cu-hero__right {
  flex: 0.2;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 6;
  margin-left: auto;
  transform: translateX(0) translateY(-80px);
}

.cu-feature-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(241, 245, 249, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.cu-feature-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.cu-feature-card__icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
  border: 2px solid #eff6ff;
}

.cu-feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.cu-feature-card__title {
  font-weight: 800;
  color: #032155;
  margin-bottom: 0.15rem;
  font-size: 1.15rem;
}

.cu-feature-card__desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.3;
  font-weight: 600;
}

/* ── Quick Contact Bar ── */
.cu-quickbar-section {
  padding: 0 5%;
  background: transparent;
  position: relative;
  z-index: 20;
  margin-top: -100px;
  /* Shift more up */
}

.cu-quickbar {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cu-quickbar__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(241, 245, 249, 0.5);
}

.cu-quickbar__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cu-quickbar__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-quickbar__icon svg {
  width: 28px;
  height: 28px;
}

.cu-quickbar__info {
  flex: 1;
}

.cu-quickbar__label {
  font-weight: 800;
  color: #032155;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.cu-quickbar__detail {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
}

.cu-quickbar__arrow {
  color: #94a3b8;
  opacity: 0.5;
}

.cu-quickbar__arrow svg {
  width: 24px;
  height: 24px;
}

/* ── Form + Campus Main ── */
.cu-main {
  padding: 4rem 5%;
  background: #fafbfc;
}

.cu-main__container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Form */
.cu-form-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.cu-form-card h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cu-form-card__line {
  width: 60px;
  height: 4px;
  background: #1d4ed8;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.cu-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cu-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cu-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0 1rem;
  background: white;
  transition: border-color 0.2s;
}

.cu-input:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cu-input svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  flex-shrink: 0;
}

.cu-input input,
.cu-input select,
.cu-input textarea {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #334155;
  background: transparent;
  padding: 1rem 0;
  font-family: inherit;
}

.cu-input select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25em;
  padding-right: 2.5rem;
}

.cu-input--full {
  grid-column: 1 / -1;
}

.cu-input--textarea {
  align-items: flex-start;
  padding-top: 1rem;
}

.cu-input--textarea svg {
  margin-top: 0.25rem;
}

.cu-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #1d4ed8;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
}

.cu-submit svg {
  width: 20px;
  height: 20px;
}

.cu-submit:hover {
  background: #1e3a8a;
}

.cu-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.cu-form__privacy svg {
  width: 16px;
  height: 16px;
}

/* Campus */
.cu-campus {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.cu-campus__top {
  position: relative;
  background: #0f172a;
}

.cu-campus__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  opacity: 0.8;
}

.cu-campus__header {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.cu-campus__header-title {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cu-campus__header-line {
  width: 40px;
  height: 3px;
  background: #3b82f6;
  border-radius: 2px;
}

.cu-campus__floating-card {
  position: absolute;
  bottom: -30px;
  left: 5%;
  width: 90%;
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.cu-campus__office {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.cu-campus__office-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-campus__office-icon svg {
  width: 20px;
  height: 20px;
}

.cu-campus__office-title {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.cu-campus__office-addr {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
}

.cu-campus__details {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cu-campus__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cu-campus__detail-icon {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-campus__detail-icon svg {
  width: 16px;
  height: 16px;
}

.cu-campus__detail-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.cu-campus__detail-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.cu-map {
  position: relative;
  flex: 1;
  min-height: 250px;
  margin-top: 40px;
  /* space for floating card */
  background: #f8fafc;
}

.cu-map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
  display: block;
}

.cu-map__open {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: white;
  color: #1d4ed8;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cu-map__open svg {
  width: 16px;
  height: 16px;
}

/* ── FAQ ── */
.cu-faq-section {
  padding: 4rem 5%;
  background: #fafbfc;
}

.cu-faq-container {
  max-width: 100%;
  margin: 0 auto;
}

.cu-faq__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cu-faq__line {
  width: 60px;
  height: 4px;
  background: #1d4ed8;
  border-radius: 2px;
  margin: 0 auto 3rem;
}

.cu-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.cu-faq__card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.2s;
}

.cu-faq__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.cu-faq__card.open {
  border-color: #cbd5e1;
}

.cu-faq__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cu-faq__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-faq__card-icon svg {
  width: 20px;
  height: 20px;
}

.cu-faq__card-icon--blue {
  background: #eff6ff;
  color: #3b82f6;
}

.cu-faq__card-icon--orange {
  background: #fff7ed;
  color: #f97316;
}

.cu-faq__card-icon--green {
  background: #f0fdf4;
  color: #10b981;
}

.cu-faq__card-icon--purple {
  background: #faf5ff;
  color: #a855f7;
}

.cu-faq__card-q {
  flex: 1;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.0625rem;
}

.cu-faq__card-arrow {
  color: #94a3b8;
  transition: transform 0.2s;
}

.cu-faq__card-arrow svg {
  width: 20px;
  height: 20px;
}

.cu-faq__card.open .cu-faq__card-arrow {
  transform: rotate(180deg);
}

.cu-faq__card-body {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  color: #475569;
  line-height: 1.6;
  font-size: 0.9375rem;
  padding-left: 56px;
  /* align with text */
}

/* Trust Badges */
.cu-trust-bar {
  display: flex;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  margin-bottom: 4rem;
}

.cu-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-right: 1px solid #e2e8f0;
}

.cu-trust-item:last-child {
  border-right: none;
}

.cu-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-trust-icon svg {
  width: 24px;
  height: 24px;
}

.cu-trust-icon--blue {
  color: #3b82f6;
  background: #eff6ff;
}

.cu-trust-icon--green {
  color: #10b981;
  background: #f0fdf4;
}

.cu-trust-icon--orange {
  color: #f97316;
  background: #fff7ed;
}

.cu-trust-icon--purple {
  color: #a855f7;
  background: #faf5ff;
}

.cu-trust-title {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.cu-trust-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}

/* CTA Banner */
.cu-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.cu-cta-banner__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cu-cta-banner__icon {
  width: 80px;
  height: 80px;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-cta-banner__icon svg {
  width: 40px;
  height: 40px;
}

.cu-cta-banner__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.cu-cta-banner__desc {
  color: #475569;
  font-size: 1.0625rem;
}

.cu-cta-banner__actions {
  display: flex;
  gap: 1rem;
}

/* ── Responsive ── */
@media (max-width: 1440px) {
  .cu-hero__title {
    font-size: 4rem;
  }

  .cu-hero__right {
    transform: translateX(60px);
    /* Reduce shift for smaller laptops */
  }
}

@media (max-width: 1200px) {
  .cu-hero {
    min-height: auto;
    padding: 8rem 5% 6rem;
    flex-direction: column;
  }

  .cu-hero__bg::after {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
  }

  .cu-hero__container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .cu-hero__left {
    max-width: 100%;
  }

  .cu-hero__title {
    font-size: 3.5rem;
  }

  .cu-hero__sub {
    margin: 0 auto 2rem;
    max-width: 600px;
  }

  .cu-hero__actions,
  .cu-hero__secure {
    justify-content: center;
  }

  .cu-hero__right {
    max-width: 100%;
    transform: none;
    /* Remove shift */
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .cu-feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
  }

  .cu-quickbar-section {
    margin-top: -60px;
  }

  .cu-quickbar {
    grid-template-columns: repeat(2, 1fr);
  }

  .cu-main__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .cu-hero__title {
    font-size: 3rem;
  }

  .cu-quickbar {
    width: 98%;
  }

  .cu-trust-bar {
    flex-direction: column;
  }

  .cu-trust-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .cu-trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .cu-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .cu-hero__logo-card {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .cu-hero__title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .cu-hero__sub {
    font-size: 1.1rem;
  }

  .cu-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cu-btn {
    width: 100%;
    justify-content: center;
  }

  .cu-hero__right {
    flex-direction: column;
    align-items: center;
  }

  .cu-feature-card {
    max-width: 400px;
  }

  .cu-quickbar-section {
    margin-top: 2rem;
    padding: 0 1.5rem;
  }

  .cu-quickbar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cu-quickbar__item {
    padding: 1.5rem;
  }

  .cu-form-card {
    padding: 1.5rem;
  }

  .cu-form__row {
    grid-template-columns: 1fr;
  }

  .cu-campus__floating-card {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 1.5rem;
    border-radius: 0;
  }

  .cu-campus__details {
    flex-direction: column;
  }

  .cu-map {
    margin-top: 0;
    min-height: 280px;
  }

  .cu-faq__title {
    font-size: 2rem;
  }

  .cu-faq__grid {
    grid-template-columns: 1fr;
  }

  .cu-cta-banner {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cu-cta-banner__left {
    flex-direction: column;
  }

  .cu-cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cu-cta-banner__actions .cu-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cu-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .cu-hero__title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .cu-hero__sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cu-hero__actions {
    gap: 1rem;
  }

  .cu-feature-card {
    padding: 1rem;
    gap: 1rem;
    max-width: 100%;
  }

  .cu-feature-card__title {
    font-size: 1rem;
  }

  .cu-feature-card__desc {
    font-size: 0.8rem;
  }

  .cu-quickbar__label {
    font-size: 1rem;
  }

  .cu-quickbar__detail {
    font-size: 0.8rem;
  }

  .cu-form-card {
    padding: 1.25rem;
  }
}

/* Targeted responsive polish for contact page */
.cu-page *,
.cu-page *::before,
.cu-page *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .cu-hero {
    min-height: auto !important;
    padding: 4.75rem 16px 2rem !important;
    align-items: flex-start;
  }

  .cu-hero__container {
    gap: 1.5rem;
  }

  .cu-hero__title {
    font-size: 2.4rem !important;
    line-height: 1.12;
    margin-bottom: 0.75rem;
  }

  .cu-hero__sub {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .cu-hero__actions {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .cu-btn {
    min-height: 46px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .cu-hero__secure {
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cu-feature-card {
    width: 100%;
    min-width: 0;
    max-width: 420px;
    border-radius: 1rem;
  }

  .cu-quickbar-section {
    margin-top: 0 !important;
    padding: 1.25rem 16px 0;
  }

  .cu-quickbar {
    width: 100%;
  }

  .cu-main,
  .cu-faq-section {
    padding: 2rem 16px !important;
  }

  .cu-form-card,
  .cu-campus,
  .cu-faq__card,
  .cu-trust-bar,
  .cu-cta-banner {
    border-radius: 0.875rem;
  }

  .cu-input input,
  .cu-input select,
  .cu-input textarea {
    min-width: 0;
  }

  .cu-campus__image {
    height: 220px;
  }

  .cu-campus__office-addr,
  .cu-campus__detail-val,
  .cu-quickbar__detail,
  .cu-trust-desc {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 425px) {
  .cu-hero {
    padding: 3.75rem 12px 1.5rem !important;
  }

  .cu-hero__container {
    gap: 1.25rem;
  }

  .cu-hero__title {
    font-size: 2rem !important;
    letter-spacing: -0.5px;
  }

  .cu-hero__sub {
    font-size: 0.92rem;
  }

  .cu-hero__actions {
    max-width: 100%;
  }

  .cu-hero__secure {
    align-items: flex-start;
    text-align: left;
  }

  .cu-hero__right {
    gap: 0.75rem;
    width: 100%;
  }

  .cu-feature-card {
    padding: 0.9rem;
    gap: 0.8rem;
  }

  .cu-feature-card__icon {
    width: 44px;
    height: 44px;
  }

  .cu-feature-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .cu-quickbar-section {
    padding: 1rem 12px 0;
  }

  .cu-quickbar__item {
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .cu-quickbar__icon {
    width: 44px;
    height: 44px;
  }

  .cu-quickbar__icon svg {
    width: 21px;
    height: 21px;
  }

  .cu-quickbar__arrow {
    display: none;
  }

  .cu-main,
  .cu-faq-section {
    padding: 1.5rem 12px !important;
  }

  .cu-form-card {
    padding: 1rem;
  }

  .cu-form-card h2,
  .cu-faq__title {
    font-size: 1.55rem;
  }

  .cu-form {
    gap: 0.9rem;
  }

  .cu-input {
    gap: 0.55rem;
    padding: 0 0.75rem;
  }

  .cu-input svg {
    width: 18px;
    height: 18px;
  }

  .cu-input input,
  .cu-input select,
  .cu-input textarea {
    font-size: 0.9rem;
    padding: 0.82rem 0;
  }

  .cu-input select {
    background-position: right 0.25rem center;
    padding-right: 1.75rem;
  }

  .cu-submit {
    min-height: 46px;
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  .cu-form__privacy {
    align-items: flex-start;
    text-align: left;
    font-size: 0.75rem;
  }

  .cu-campus__image {
    height: 190px;
  }

  .cu-campus__header {
    top: 1rem;
    left: 1rem;
  }

  .cu-campus__header-title {
    font-size: 1.4rem;
  }

  .cu-campus__floating-card {
    padding: 1rem;
  }

  .cu-campus__office,
  .cu-campus__detail {
    gap: 0.7rem;
  }

  .cu-campus__details {
    gap: 0.8rem;
  }

  .cu-map,
  .cu-map iframe {
    min-height: 230px;
  }

  .cu-map__open {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .cu-faq__line {
    margin-bottom: 1.5rem;
  }

  .cu-faq__grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .cu-faq__card {
    padding: 1rem;
  }

  .cu-faq__card-header {
    gap: 0.75rem;
  }

  .cu-faq__card-icon {
    width: 34px;
    height: 34px;
  }

  .cu-faq__card-icon svg {
    width: 17px;
    height: 17px;
  }

  .cu-faq__card-q {
    font-size: 0.92rem;
  }

  .cu-faq__card-body {
    padding-left: 0;
    font-size: 0.85rem;
  }

  .cu-trust-bar {
    margin-bottom: 2rem;
  }

  .cu-trust-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .cu-trust-icon {
    width: 38px;
    height: 38px;
  }

  .cu-trust-icon svg {
    width: 19px;
    height: 19px;
  }

  .cu-cta-banner {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .cu-cta-banner__icon {
    width: 54px;
    height: 54px;
  }

  .cu-cta-banner__icon svg {
    width: 27px;
    height: 27px;
  }

  .cu-cta-banner__title {
    font-size: 1.35rem;
  }

  .cu-cta-banner__desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .cu-hero {
    padding-top: 3.25rem !important;
  }

  .cu-hero__title {
    font-size: 1.8rem !important;
  }

  .cu-hero__sub {
    font-size: 0.86rem;
  }

  .cu-btn {
    min-height: 42px;
    font-size: 0.86rem;
    padding: 0.65rem 0.8rem;
  }

  .cu-feature-card__title,
  .cu-quickbar__label,
  .cu-trust-title {
    font-size: 0.92rem;
  }

  .cu-feature-card__desc,
  .cu-quickbar__detail,
  .cu-campus__office-addr,
  .cu-campus__detail-val,
  .cu-trust-desc {
    font-size: 0.78rem;
  }

  .cu-form-card h2,
  .cu-faq__title {
    font-size: 1.4rem;
  }

  .cu-campus__office-title {
    font-size: 1rem;
  }

  .cu-campus__detail-label {
    font-size: 0.68rem;
  }

  .cu-page .cu-cta-banner__actions .cu-btn {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .cu-hero {
    padding: 2.75rem 10px 1.25rem !important;
  }

  .cu-hero__title {
    font-size: 1.55rem !important;
  }

  .cu-hero__sub {
    font-size: 0.8rem;
  }

  .cu-hero__secure {
    font-size: 0.75rem;
  }

  .cu-feature-card,
  .cu-quickbar__item,
  .cu-form-card,
  .cu-faq__card,
  .cu-trust-item,
  .cu-cta-banner {
    padding: 0.85rem;
  }

  .cu-feature-card__icon,
  .cu-quickbar__icon {
    width: 38px;
    height: 38px;
  }

  .cu-feature-card__icon svg,
  .cu-quickbar__icon svg {
    width: 18px;
    height: 18px;
  }

  .cu-main,
  .cu-faq-section {
    padding: 1.25rem 10px !important;
  }

  .cu-input {
    padding: 0 0.6rem;
  }

  .cu-input input,
  .cu-input select,
  .cu-input textarea {
    font-size: 0.82rem;
  }

  .cu-campus__image {
    height: 165px;
  }

  .cu-map,
  .cu-map iframe {
    min-height: 210px;
  }

  .cu-map__open {
    left: 0.75rem;
    right: auto;
  }

  .cu-faq__card-q {
    font-size: 0.84rem;
  }

  .cu-cta-banner__title {
    font-size: 1.15rem;
  }
}
/* ADMISSION PROCESS STYLES */

.admission-process {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  /* very light background for the page */
  padding-bottom: 4rem;
}

/* ==================== HERO SECTION ==================== */
.ap-hero {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 5%;
  background: #ffffff;
}

.ap-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(37, 99, 235, 0.1) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 15% 50%, black, transparent 70%);
  z-index: 1;
}

.ap-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ap-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-hero__logo-card {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.ap-hero__logo-card img {
  height: 45px;
  width: auto;
}

.ap-hero__logo-card span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #c21d1d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ap-hero__content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.ap-hero__title {
  font-size: 7rem;
  font-weight: 800;
  line-height: 0.9;
  color: #1a1a1a;
  margin-bottom: 2rem;
  letter-spacing: -3px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.ap-hero__title span {
  color: #2563eb;
  display: block;
}

.ap-hero__subtitle {
  font-size: 1.75rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.ap-hero__line {
  width: 60px;
  height: 6px;
  background-color: #f59e0b;
  border-radius: 2px;
}

.ap-hero__floating-card {
  position: absolute;
  right: 32%;
  top: 33%;
  transform: translateY(-50%);
  background: #232b85;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  color: white;
  width: 280px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  z-index: 8;
}

.ap-hero__floating-card h3 {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ap-hero__card-line {
  width: 50px;
  height: 5px;
  background-color: #f59e0b;
  border-radius: 2px;
}

.ap-hero__character {
  position: absolute;
  right: 28%;
  bottom: 0;
  z-index: 10;
  height: 480px;
  width: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ap-character-placeholder {
  width: 100%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  position: relative;
}

.ap-character-placeholder::after {
  content: '3D CHARACTER';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
}

/* ==================== PROCEDURE SECTION ==================== */
.ap-procedure {
  padding: 5rem 5%;
  width: 100%;
  margin: 0;
}

.ap-procedure__header {
  text-align: center;
  margin-bottom: 4rem;
}

.ap-procedure__header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.ap-procedure__header p {
  font-size: 1.125rem;
  color: #64748b;
}

/* TIMELINE STYLES */
.ap-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38px;
  width: 2px;
  border-left: 2px dashed #93c5fd;
  z-index: 1;
}

.ap-step {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.ap-step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
  z-index: 2;
}

.ap-step__card {
  flex: 1;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}

.ap-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-step__icon svg {
  width: 40px;
  height: 40px;
}

.ap-step__icon--blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.ap-step__icon--orange {
  background-color: #fffbeb;
  color: #f59e0b;
}

.ap-step__icon--green {
  background-color: #f0fdf4;
  color: #22c55e;
}

.ap-step__icon--purple {
  background-color: #faf5ff;
  color: #7c3aed;
}

.ap-step__icon--blue-light {
  background-color: #eff6ff;
  color: #3b82f6;
}

.ap-step__content {
  flex: 1;
}

.ap-step__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.ap-step__content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.ap-btn:hover {
  transform: translateY(-2px);
}

.ap-btn--blue {
  background-color: #2563eb;
}

.ap-btn--purple {
  background-color: #4f46e5;
}

.ap-btn__arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.ap-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fffbeb;
  border: 1px solid #fcd34d;
  color: #b45309;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.ap-alert__icon {
  font-size: 1.25rem;
}

.ap-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ap-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #334155;
  font-size: 0.875rem;
}

.ap-check__icon {
  color: #22c55e;
  font-weight: bold;
}

.ap-payment-options {
  margin-bottom: 1.5rem;
}

.ap-payment-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-right: 1rem;
}

.ap-payment-icons {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  vertical-align: middle;
}

.ap-pay-icon {
  font-weight: 800;
  font-style: italic;
  font-size: 1.25rem;
}

.ap-pay-icon--visa {
  color: #1a1f71;
}

.ap-pay-icon--paypal {
  color: #003087;
  font-style: normal;
}

.ap-pay-icon--mastercard {
  position: relative;
  width: 40px;
  height: 24px;
}

.mc-circle-1,
.mc-circle-2 {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 0;
}

.mc-circle-1 {
  left: 0;
  background-color: #eb001b;
  opacity: 0.9;
}

.mc-circle-2 {
  left: 16px;
  background-color: #f79e1b;
  opacity: 0.9;
}

.ap-step__subtext {
  font-size: 0.75rem !important;
  color: #64748b !important;
  margin-top: 0.5rem;
  margin-bottom: 0 !important;
}

.ap-step__illustration {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-step__illustration svg {
  width: 100%;
  height: 100%;
}

/* ==================== FOOTER BANNER ==================== */
.ap-help {
  width: 100%;
  margin: 0;
  background: #f1f5f9;
  border-radius: 1rem;
  padding: 2.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ap-help__left h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.ap-help__left p {
  color: #475569;
}

.ap-help__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ap-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ap-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ap-contact-icon svg {
  width: 24px;
  height: 24px;
}

.ap-contact-text {
  display: flex;
  flex-direction: column;
}

.ap-contact-text strong {
  font-size: 1.125rem;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.ap-contact-text span {
  font-size: 0.875rem;
  color: #64748b;
}

.ap-contact-divider {
  width: 1px;
  height: 50px;
  background-color: #cbd5e1;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .ap-hero {
    flex-direction: column;
    padding-top: 6rem;
    text-align: center;
  }

  .ap-hero__line {
    margin: 0 auto;
  }

  .ap-hero__visual {
    margin-top: 3rem;
    justify-content: center;
  }

  .ap-hero__floating-card {
    left: 20px;
    bottom: -30px;
    top: auto;
    transform: none;
  }

  .ap-step__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .ap-step__illustration {
    align-self: center;
  }

  .ap-help {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .ap-timeline::before {
    left: 24px;
  }

  .ap-step {
    gap: 1rem;
  }

  .ap-step__number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .ap-step__card {
    padding: 1.5rem;
  }

  .ap-help__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .ap-contact-divider {
    display: none;
  }

  .ap-hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 420px) {
  .admission-process {
    padding-bottom: 2rem;
  }

  .ap-hero {
    min-height: auto;
    padding: 2rem 1rem 2.5rem !important;
    align-items: flex-start;
  }

  .ap-hero::before {
    background-size: 22px 22px;
  }

  .ap-hero__bg img {
    object-position: center;
    opacity: 0.18;
  }

  .ap-hero__content {
    max-width: 100%;
    text-align: left;
  }

  .ap-hero__title {
    font-size: 2rem !important;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }

  .ap-hero__subtitle {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .ap-hero__line {
    width: 48px;
    height: 4px;
    margin: 0;
  }

  .ap-hero__floating-card,
  .ap-hero__character {
    display: none;
  }

  .ap-procedure {
    padding: 2.5rem 1rem;
  }

  .ap-procedure__header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .ap-procedure__header h2 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .ap-procedure__header p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .ap-timeline {
    gap: 1.25rem;
  }

  .ap-timeline::before {
    left: 18px;
  }

  .ap-step {
    gap: 0.75rem;
  }

  .ap-step__number {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .ap-step__card {
    padding: 1rem !important;
    gap: 1rem;
    border-radius: 0.875rem;
  }

  .ap-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
  }

  .ap-step__icon svg {
    width: 26px;
    height: 26px;
  }

  .ap-step__content h3 {
    font-size: 1.12rem;
    line-height: 1.3;
  }

  .ap-step__content p {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .ap-btn {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
  }

  .ap-alert {
    align-items: flex-start;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .ap-checks {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  .ap-payment-label {
    display: block;
    margin: 0 0 0.75rem;
  }

  .ap-payment-icons {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .ap-help {
    padding: 1.5rem 1rem;
    border-radius: 0;
  }

  .ap-help__left h2 {
    font-size: 1.35rem;
  }

  .ap-help__left p,
  .ap-contact-text span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .ap-help__right {
    width: 100%;
  }

  .ap-contact-item {
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .ap-contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .ap-contact-text {
    min-width: 0;
  }

  .ap-contact-text strong {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 375px) {
  .ap-hero {
    padding: 1.5rem 0.875rem 2rem !important;
  }

  .ap-hero__title {
    font-size: 1.75rem !important;
  }

  .ap-hero__subtitle {
    font-size: 0.95rem;
  }

  .ap-procedure {
    padding: 2rem 0.875rem;
  }

  .ap-step__card {
    padding: 0.875rem !important;
  }

  .ap-step__content h3 {
    font-size: 1.05rem;
  }

  .ap-help {
    padding: 1.25rem 0.875rem;
  }
}

@media (max-width: 320px) {
  .ap-hero {
    padding: 1.25rem 0.75rem 1.75rem !important;
  }

  .ap-hero__title {
    font-size: 1.5rem !important;
    letter-spacing: -0.5px;
  }

  .ap-hero__subtitle {
    font-size: 0.9rem;
  }

  .ap-procedure {
    padding: 1.75rem 0.75rem;
  }

  .ap-procedure__header h2 {
    font-size: 1.25rem;
  }

  .ap-procedure__header p,
  .ap-step__content p {
    font-size: 0.86rem;
  }

  .ap-timeline::before {
    left: 16px;
  }

  .ap-step {
    gap: 0.625rem;
  }

  .ap-step__number {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .ap-step__icon {
    width: 42px;
    height: 42px;
  }

  .ap-step__content h3 {
    font-size: 1rem;
  }

  .ap-btn {
    font-size: 0.86rem;
    padding-inline: 0.75rem;
  }

  .ap-help {
    padding: 1.25rem 0.75rem;
  }
}
/* ── Layout ── */
.af-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 100%);
  min-height: 60vh;
}
.af-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Step Indicator ── */
.af-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 0;
}
.af-step-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.af-step-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.af-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  color: #94a3b8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.af-step--active {
  background: linear-gradient(135deg, #1041c6, #2563eb);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  transform: scale(1.15);
}
.af-step--done {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34,197,94,0.25);
}
.af-step__label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s;
}
.af-step__label--active { color: #1041c6; font-weight: 700; }
.af-step__label--done { color: #16a34a; font-weight: 600; }

/* Line between steps */
.af-step__line {
  width: 80px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 99px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.af-step__line-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 99px;
  transition: width 0.5s ease;
}
.af-step__line--done .af-step__line-fill {
  width: 100%;
}
.af-step__line--active .af-step__line-fill {
  width: 50%;
  background: linear-gradient(90deg, #2563eb, #93c5fd);
  animation: af-line-pulse 1.5s ease-in-out infinite;
}
@keyframes af-line-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Card ── */
.af-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(16, 65, 198, 0.08);
  border: 1px solid #e8eeff;
}

/* ── Step Header ── */
.af-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #f1f5f9;
}
.af-step-header__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.af-step-header__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}
.af-step-header__sub {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ── Fields ── */
.af-step-content { display: flex; flex-direction: column; gap: 0; }
.af-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.af-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.af-field { display: flex; flex-direction: column; }
.af-field--full { margin-bottom: 16px; }
.af-label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.af-label-note { font-weight: 400; color: #94a3b8; font-size: 11px; }
.af-req { color: #f43f5e; margin-left: 2px; }
.af-input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}
.af-input:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.af-input--err { border-color: #f43f5e; background: #fff5f5; }
.af-error { font-size: 11px; color: #f43f5e; margin-top: 4px; }

/* ── Parent Box ── */
.af-parent-box {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border: 1.5px solid #bfdbfe;
  border-radius: 16px;
  padding: 20px;
  margin-top: 8px;
}
.af-parent-box__title {
  font-size: 13px;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 16px;
}

/* ── Education Boxes ── */
.af-edu-box {
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1.5px solid;
}
.af-edu-box--blue { background: linear-gradient(135deg, #eff6ff, #f0f9ff); border-color: #bfdbfe; }
.af-edu-box--purple { background: linear-gradient(135deg, #f5f3ff, #faf5ff); border-color: #ddd6fe; }
.af-edu-box__title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
}
.af-edu-box--blue .af-edu-box__title { color: #1d4ed8; }
.af-edu-box--purple .af-edu-box__title { color: #6d28d9; }

/* ── File Upload ── */
.af-file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.af-file-input { display: none; }
.af-file-btn {
  padding: 9px 18px;
  background: linear-gradient(135deg, #1041c6, #2563eb);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.af-file-btn:hover { opacity: 0.88; }
.af-file-name { font-size: 13px; color: #64748b; }
.af-view-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.af-view-link:hover { text-decoration: underline; }

/* ── Course Cards ── */
.af-course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.af-course-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.af-course-card:hover { border-color: #2563eb; background: #eff6ff; color: #1d4ed8; }
.af-course-card--active {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}
.af-course-card__icon { font-size: 18px; flex-shrink: 0; }
.af-course-card__name { flex: 1; line-height: 1.4; }
.af-course-card__check {
  width: 22px;
  height: 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Selection Preview ── */
.af-selection-preview {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
}
.af-selection-preview__title { font-size: 13px; font-weight: 700; color: #166534; margin: 0 0 8px; }
.af-selection-preview p { font-size: 14px; color: #15803d; margin: 4px 0; }

/* ── Payment ── */
.af-fee-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1.5px solid #bfdbfe;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.af-fee-box__label { font-size: 13px; color: #64748b; margin: 0 0 6px; }
.af-fee-box__amount { font-size: 36px; font-weight: 800; color: #1e40af; margin: 0; }
.af-fee-box__badge {
  background: #1e40af;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}
.af-payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.af-payment-method {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  background: #f8fafc;
}
.af-payment-method:hover { border-color: #2563eb; color: #1d4ed8; background: #eff6ff; }
.af-demo-notice {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
}
.af-demo-notice__title { font-size: 13px; font-weight: 700; color: #92400e; margin: 0 0 6px; }
.af-demo-notice__text { font-size: 13px; color: #78350f; margin: 0; }

/* ── Review ── */
.af-review-section {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  margin-bottom: 14px;
}
.af-review-section__head {
  background: linear-gradient(90deg, #1041c6, #2563eb);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.af-review-section__body { padding: 14px 18px; background: #f8fafc; }
.af-review-row { display: flex; gap: 10px; margin-bottom: 8px; }
.af-review-row:last-child { margin-bottom: 0; }
.af-review-row__key { font-size: 13px; color: #64748b; width: 100px; flex-shrink: 0; }
.af-review-row__val { font-size: 13px; font-weight: 600; color: #0f172a; }

/* ── Buttons ── */
.af-btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.af-btn--primary {
  background: linear-gradient(135deg, #1041c6, #2563eb);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.af-btn--primary:hover { opacity: 0.9; transform: translateY(-1px); }
.af-btn--secondary { background: #f1f5f9; color: #475569; }
.af-btn--secondary:hover { background: #e2e8f0; }
.af-btn--full { width: 100%; margin-top: 8px; padding: 15px; font-size: 15px; }
.af-btn--disabled { background: #94a3b8 !important; cursor: not-allowed; box-shadow: none; transform: none !important; }

/* ── Nav ── */
.af-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid #f1f5f9;
}

/* ── Success ── */
.af-success {
  text-align: center;
  padding: 2rem 1rem;
}
.af-success__icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: af-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes af-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.af-success__title { font-size: 28px; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.af-success__sub { font-size: 15px; color: #64748b; margin: 0 0 24px; }
.af-success__id-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1.5px solid #bfdbfe;
  border-radius: 16px;
  padding: 20px 32px;
  display: inline-block;
  margin-bottom: 20px;
}
.af-success__id-label { font-size: 13px; color: #64748b; margin: 0 0 6px; }
.af-success__id { font-size: 32px; font-weight: 800; color: #1041c6; letter-spacing: 3px; margin: 0; }
.af-success__note { font-size: 13px; color: #64748b; line-height: 1.7; margin-bottom: 28px; }
.af-success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .af-section { padding: 2rem 4%; }
  .af-step__line { width: 36px; }
  .af-step { width: 40px; height: 40px; }
  .af-step svg { width: 16px; height: 16px; }
  /* Hide labels on tablet, show only active */
  .af-step__label { display: none; }
  .af-step__label--active { display: block; font-size: 10px; }
}

@media (max-width: 640px) {
  .af-section { padding: 1.5rem 3%; }
  .af-card { padding: 1.25rem; border-radius: 16px; }
  .af-grid-2, .af-grid-3, .af-course-grid { grid-template-columns: 1fr; }
  .af-payment-methods { grid-template-columns: 1fr 1fr; }
  .af-fee-box { flex-direction: column; gap: 12px; text-align: center; }

  /* Step indicator compact */
  .af-steps { gap: 0; }
  .af-step__line { width: 24px; height: 3px; margin-bottom: 22px; }
  .af-step { width: 36px; height: 36px; }
  .af-step svg { width: 15px; height: 15px; }
  .af-step__label { display: none; }
  .af-step__label--active { display: block; font-size: 10px; }

  /* Nav buttons full width stacked */
  .af-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .af-nav .af-btn {
    width: 100%;
    justify-content: center;
  }

  /* File upload wrap */
  .af-file-label { flex-wrap: wrap; gap: 8px; }
  .af-file-name { width: 100%; }

  /* Step header */
  .af-step-header__title { font-size: 18px; }
  .af-step-header__icon { width: 42px; height: 42px; font-size: 20px; }

  /* Success actions */
  .af-success__actions { flex-direction: column; }
  .af-success__actions .af-btn { width: 100%; }
}
/* ELIGIBILITY CRITERIA STYLES */

.eligibility-page {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: #fafbfc;
  padding-bottom: 4rem;
}

/* ==================== HERO SECTION ==================== */
.eligibility-hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0f2c72; /* Deep blue from screenshot */
}

.eligibility-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  z-index: 1;
}

/* Dot pattern overlay */
.eligibility-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
}

/* Diagonal lines overlay */
.eligibility-hero::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 12px
  );
  z-index: 1;
}

.eligibility-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.eligibility-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.eligibility-hero__line {
  width: 60px;
  height: 4px;
  background-color: #f59e0b;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.eligibility-hero__subtitle {
  font-size: 1.125rem;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== BREADCRUMB ==================== */
.eligibility-breadcrumb-wrapper {
  background-color: white;
  border-bottom: 1px solid #f1f5f9;
}

.eligibility-breadcrumb {
  width: 100%;
  margin: 0;
  padding: 1rem 5%;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.eligibility-breadcrumb a {
  color: #1e293b;
  text-decoration: none;
}

.eligibility-breadcrumb span {
  color: #f59e0b;
}

/* ==================== MAIN CONTENT ==================== */
.eligibility-main {
  padding: 4rem 5%;
}

.eligibility-container {
  width: 100%;
  margin: 0;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 3rem;
}

.eligibility-layout {
  display: flex;
  gap: 3rem;
}

/* LEFT SIDEBAR */
.eligibility-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.eligibility-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eligibility-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2c72;
  margin-bottom: 0.5rem;
}

.eligibility-card__line {
  width: 40px;
  height: 3px;
  background-color: #f59e0b;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.eligibility-card__icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.eligibility-card__icon-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #10b981, #f59e0b, #2563eb) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-card__icon svg {
  width: 40px;
  height: 40px;
}

.eligibility-card__text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.eligibility-card__btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  background-color: #0f2c72;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.eligibility-card__btn:hover {
  background-color: #1e3a8a;
}

.eligibility-card__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-card__btn-icon svg {
  width: 24px;
  height: 24px;
}

.eligibility-card__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.eligibility-card__btn-text strong {
  font-size: 0.875rem;
}

.eligibility-card__btn-text span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.eligibility-card__btn-arrow {
  font-weight: bold;
}

/* RIGHT CONTENT */
.eligibility-content {
  flex: 1;
}

.eligibility-content__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f2c72;
  margin-bottom: 2rem;
  text-align: center;
}

/* TABS */
.eligibility-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.eligibility-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  background: white;
  color: #475569;
  transition: all 0.2s;
}

.eligibility-tab svg {
  width: 18px;
  height: 18px;
}

.eligibility-tab:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.eligibility-tab.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

/* ACCORDION */
.eligibility-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eligibility-accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: white;
}

.eligibility-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
}

.eligibility-accordion-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eligibility-accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-accordion-icon svg {
  width: 20px;
  height: 20px;
}

.eligibility-accordion-icon--blue { background: #eff6ff; color: #3b82f6; }
.eligibility-accordion-icon--orange { background: #fff7ed; color: #f97316; }
.eligibility-accordion-icon--purple { background: #faf5ff; color: #a855f7; }

.eligibility-accordion-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.eligibility-accordion-arrow {
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-accordion-arrow svg {
  width: 20px;
  height: 20px;
}

.eligibility-accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.eligibility-accordion-body--purple {
  background: #faf5ff;
  padding: 1.5rem;
  border-top: 1px solid #f3e8ff;
}

.eligibility-accordion-item.open .eligibility-accordion-header {
  border-bottom: 1px solid #f1f5f9;
}

.eligibility-accordion-item.open:has(.eligibility-accordion-body--purple) .eligibility-accordion-header {
  background: #faf5ff;
  border-bottom: 1px solid #f3e8ff;
}

/* CHECKLIST */
.eligibility-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eligibility-check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #334155;
  font-weight: 500;
}

.eligibility-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #a855f7;
  color: white;
  flex-shrink: 0;
}

.eligibility-check-icon svg {
  width: 12px;
  height: 12px;
}

.eligibility-check-line {
  height: 1px;
  background-color: rgba(168, 85, 247, 0.2);
  margin-left: 2.25rem;
}

/* ==================== FOOTER FEATURES ==================== */
.eligibility-features-section {
  width: 100%;
  margin: 0;
  padding: 0 5%;
}

.eligibility-features {
  display: flex;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.eligibility-feature {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.eligibility-feature:not(:last-child) {
  border-right: 1px solid #f1f5f9;
}

.eligibility-feature__icon {
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eligibility-feature__icon svg {
  width: 24px;
  height: 24px;
}

.eligibility-feature__icon--blue { background: #eff6ff; color: #2563eb; }
.eligibility-feature__icon--green { background: #f0fdf4; color: #10b981; }
.eligibility-feature__icon--orange { background: #fff7ed; color: #ef4444; }
.eligibility-feature__icon--purple { background: #faf5ff; color: #8b5cf6; }

.eligibility-feature__content h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.eligibility-feature__content p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .eligibility-layout {
    flex-direction: column;
  }

  .eligibility-sidebar {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .eligibility-features {
    flex-wrap: wrap;
  }

  .eligibility-feature {
    min-width: 50%;
  }

  .eligibility-feature:nth-child(2) {
    border-right: none;
  }
  
  .eligibility-feature:nth-child(1),
  .eligibility-feature:nth-child(2) {
    border-bottom: 1px solid #f1f5f9;
  }
}

@media (max-width: 768px) {
  .eligibility-hero__title {
    font-size: 2.5rem;
  }

  .eligibility-container {
    padding: 1.5rem;
  }

  .eligibility-tabs {
    flex-direction: column;
  }

  .eligibility-feature {
    min-width: 100%;
    border-right: none !important;
  }
  
  .eligibility-feature:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
  }
}
/* PLACEMENTS PAGE STYLES */

.placements-page {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: #fafbfc;
  padding-bottom: 4rem;
}

/* ==================== HERO SECTION ==================== */
.placements-hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 5%;
}

.placements-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.placements-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placements-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.placements-hero__title {
  font-size: 5.5rem;
  font-weight: 800;
  color: #032155;
  margin-bottom: 0rem;
  letter-spacing: 0.5px;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.1;
}

.placements-hero__subtitle {
  font-size: 3.8rem;
  font-style: italic;
  color: #f78d1e;
  font-family: "Georgia", serif;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
  display: block;
  white-space: nowrap;
}

.placements-hero__text {
  font-size: 1.35rem;
  color: #3e527a;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 3.5rem;
  max-width: 520px;
}

.placements-hero__stats {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.placements-hero__stat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.placements-hero__stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placements-hero__stat-card:nth-child(1) .placements-hero__stat-icon {
  background: #fff4e5;
  color: #f78d1e;
}

.placements-hero__stat-card:nth-child(2) .placements-hero__stat-icon {
  background: #ebf5ff;
  color: #032155;
}

.placements-hero__stat-icon svg {
  width: 28px;
  height: 28px;
}

.placements-hero__stat-info {
  display: flex;
  flex-direction: column;
}

.placements-hero__stat-info strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #032155;
  line-height: 1.2;
}

.placements-hero__stat-info span {
  font-size: 0.95rem;
  color: #5b6e94;
  font-weight: 600;
}

/* ==================== BREADCRUMB ==================== */
.placements-breadcrumb-wrapper {
  background-color: white;
  border-bottom: 1px solid #f1f5f9;
}

.placements-breadcrumb {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 5%;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.placements-breadcrumb a {
  color: #1e293b;
  text-decoration: none;
}

.placements-breadcrumb span {
  color: #f59e0b;
}

/* ==================== MAIN CONTENT ==================== */
.placements-main {
  padding: 4rem 5%;
}

.placements-container {
  max-width: 100%;
  margin: 0 auto;
}

/* ==================== GRID ==================== */
.placements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.placement-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 1rem 1rem 0.75rem;
  display: flex;
  gap: 1rem;
  border: 1px solid #f1f5f9;
  transition: transform 0.2s, box-shadow 0.2s;
}

.placement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.placement-card__image-container {
  position: relative;
  width: 160px;
  min-height: 220px;
  flex-shrink: 0;
}

.placement-card__image {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  background-color: #f1f5f9;
}

.placement-card__quote-icon {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3b82f6;
  font-family: serif;
  line-height: 1;
}

.placement-card__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.placement-card__logo-placeholder {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f2c72;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.placement-card__logo-placeholder::before {
  content: '+';
  color: #f59e0b;
  font-size: 1rem;
  font-weight: bold;
}

.placement-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f2c72;
  margin-bottom: 1rem;
}

.placement-card__info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.placement-card__info-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.placement-card__info-list svg {
  width: 16px;
  height: 16px;
  color: #64748b;
}

.placement-card__package {
  margin-top: auto;
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ==================== STATS BAR ==================== */
.placements-stats-bar {
  display: flex;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  margin-bottom: 3rem;
}

.placements-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.placements-stat-item:not(:last-child) {
  border-right: 1px solid #f1f5f9;
}

.placements-stat-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.placements-stat-item__icon svg {
  width: 28px;
  height: 28px;
}

.placements-stat-item__icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.placements-stat-item__icon--green {
  background: #f0fdf4;
  color: #10b981;
}

.placements-stat-item__icon--orange {
  background: #fff7ed;
  color: #f97316;
}

.placements-stat-item__icon--purple {
  background: #faf5ff;
  color: #8b5cf6;
}

.placements-stat-item__content h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.placements-stat-item__content p {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* ==================== PAGINATION ==================== */
.placements-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.placements-pagination__btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.placements-pagination__btn--prev {
  background: white;
  border: 1px solid #e2e8f0;
  color: #64748b;
}

.placements-pagination__btn--prev:hover {
  background: #f8fafc;
  color: #0f172a;
}

.placements-pagination__text {
  font-weight: 700;
  color: #0f172a;
}

.placements-pagination__btn--next {
  background: #1e3a8a;
  border: none;
  color: white;
}

.placements-pagination__btn--next:hover {
  background: #172554;
}

.placements-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f1f5f9 !important;
  color: #94a3b8 !important;
  border: 1px solid #e2e8f0 !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .placements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placements-stats-bar {
    flex-wrap: wrap;
  }

  .placements-stat-item {
    min-width: 50%;
  }

  .placements-stat-item:nth-child(2) {
    border-right: none;
  }

  .placements-stat-item:nth-child(1),
  .placements-stat-item:nth-child(2) {
    border-bottom: 1px solid #f1f5f9;
  }
}

@media (max-width: 768px) {
  .placements-hero {
    padding: 3rem 5%;
  }

  .placements-hero__title {
    font-size: 2.5rem;
  }

  .placements-hero__subtitle {
    font-size: 1.5rem;
  }

  .placements-hero__stats {
    flex-direction: column;
  }

  .placements-grid {
    grid-template-columns: 1fr;
  }

  .placement-card {
    flex-direction: column;
  }

  .placement-card__image-container {
    width: 100%;
    max-width: 260px;
    min-height: 240px;
    margin: 0 auto;
  }

  .placements-stat-item {
    min-width: 100%;
    border-right: none !important;
  }

  .placements-stat-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
  }
}/* EXPLORE MORE (LIFE @ SEG) PAGE STYLES */

.explore-more {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  padding: 8rem 0 6rem;
}

.explore-container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}

/* ==================== HEADER SECTION ==================== */
.explore-header {
  margin-bottom: 3rem;
}

.explore-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.explore-title span {
  color: #f97316;
  margin: 0 0.5rem;
  font-family: serif;
  font-style: italic;
}

.explore-title .seg-text {
  color: #0f2c72;
}

.explore-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #0f2c72;
  border-radius: 2px;
}

.explore-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
}

/* ==================== FILTER BAR ==================== */
.explore-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.explore-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn svg {
  width: 18px;
  height: 18px;
}

.filter-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.filter-btn:hover:not(.active) {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* ==================== GALLERY GRID ==================== */
.explore-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.gallery-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.gallery-label svg {
  width: 14px;
  height: 14px;
}

.gallery-title {
  font-size: 1rem;
  font-weight: 700;
}

/* Main large item */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.large .gallery-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gallery-item.large .gallery-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  align-self: flex-end;
}

.gallery-btn:hover {
  transform: scale(1.1);
}

/* ==================== STATS BAR ==================== */
.explore-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.stat-item:not(:last-child) {
  border-right: 1px solid #f1f5f9;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Stat Icon Colors */
.stat-icon.blue { background: #eff6ff; color: #2563eb; }
.stat-icon.indigo { background: #eef2ff; color: #4f46e5; }
.stat-icon.sky { background: #f0f9ff; color: #0ea5e9; }
.stat-icon.rose { background: #fff1f2; color: #f43f5e; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .explore-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .explore-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .explore-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .stat-item {
    min-width: 40%;
    border-right: none !important;
  }
}

@media (max-width: 768px) {
  .explore-more {
    padding-top: 4rem;
  }

  .explore-title {
    font-size: 2.5rem;
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-item.large .gallery-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .explore-more {
    padding-top: 3rem;
  }

  .explore-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .stat-item {
    min-width: 100%;
  }
}

@media (max-width: 425px) {
  .explore-more {
    padding-top: 2rem;
  }
}

@media (max-width: 375px) {
  .explore-more {
    padding-top: 1.5rem;
  }
}

@media (max-width: 320px) {
  .explore-more {
    padding-top: 1rem;
  }
}
/* FEE STRUCTURE PAGE STYLES */

.fee-structure-page {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

/* --- Hero Section --- */
.fee-hero {
  position: relative;
  min-height: 700px;
  background: white;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.fee-hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 30%;
  width: 250px;
  height: 250px;
  background-image: repeating-radial-gradient(circle at center, transparent 0, transparent 4px, rgba(255, 190, 35, 0.2) 5px, rgba(255, 190, 35, 0.2) 6px);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}

.fee-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 80px 45px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.fee-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 560px;
  padding-right: 0;
  padding-top: 60px;
}

.fee-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1041c6;
  margin-bottom: 30px;
}

.fee-hero__breadcrumbs a { color: #1041c6; text-decoration: none; }
.fee-hero__breadcrumbs .separator {
  color: #64748b;
  font-size: 12px;
}

.fee-hero__breadcrumbs .current {
  color: #2563eb;
}

.fee-hero__title {
  font-size: clamp(2.5rem, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #112347;
  margin-bottom: 16px;
}

.fee-hero__title .text-blue {
  color: #2563eb;
}

.fee-hero__accent-line {
  width: 50px;
  height: 4px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 24px;
}

.fee-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
}

.fee-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}

.fee-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.fee-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* --- Stats Bar --- */
.fee-stats-bar {
  position: relative;
  z-index: 10;
  width: calc(100% - 90px);
  margin: -50px 45px 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #021a52 0%, #062b80 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 50px 5%;
  gap: 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.fee-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 0 10px;
}

.fee-stat-item+.fee-stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.fee-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 190, 35, 0.1);
  border: 1px solid rgba(255, 190, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbe23;
}

.fee-stat-icon svg {
  width: 32px;
  height: 32px;
}

.fee-stat-info {
  display: flex;
  flex-direction: column;
}

.fee-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffbe23;
  line-height: 1.1;
}

.fee-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.3;
}

/* Main Content Area */
.fee-content {
  padding: 60px 5% 80px;
}

.fee-section {
  margin-bottom: 60px;
}

.fee-section__header {
  margin-bottom: 30px;
  text-align: center;
}

.fee-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.fee-section__desc {
  font-size: 16px;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Table Design */
.fee-table-container {
  overflow-x: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.fee-table th {
  background: #f8fafc;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 2px solid #e2e8f0;
}

.fee-table td {
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 15px;
}

.fee-table tr:hover td {
  background: #f8fafc;
}

.fee-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.fee-badge--blue { background: #eff6ff; color: #2563eb; }
.fee-badge--green { background: #f0fdf4; color: #16a34a; }

/* Responsive */
@media (max-width: 1200px) {
  .fee-hero__image {
    height: 500px;
  }
  .fee-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
    gap: 30px;
  }
  .fee-stat-item:nth-child(even) {
    border-left: none;
  }
}

@media (max-width: 1024px) {
  .fee-hero {
    padding: 60px 5% 100px;
  }

  .fee-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .fee-hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fee-hero__breadcrumbs {
    margin-top: 0;
    justify-content: center;
  }

  .fee-hero__text {
    max-width: 100%;
  }

  .fee-hero__visual {
    position: relative;
    width: 100%;
  }

  .fee-hero__image {
    height: 400px;
    border-radius: 12px;
  }

  .fee-hero__visual::after {
    display: none;
  }

  .fee-stats-bar {
    margin: -50px 5% 0;
    width: auto;
  }
}

@media (max-width: 768px) {
  .fee-hero {
    padding: 40px 5% 80px;
  }

  .fee-hero__title {
    font-size: 2.5rem;
  }

  .fee-stats-bar {
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding: 20px;
  }

  .fee-stat-item {
    border-left: none !important;
    padding: 0;
    justify-content: flex-start;
  }
}
/* MANAGEMENT QUOTA PAGE STYLES */

.quota-page {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

/* --- Hero Section --- */
.quota-hero {
  position: relative;
  min-height: 700px;
  background: white;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.quota-hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 30%;
  width: 250px;
  height: 250px;
  background-image: repeating-radial-gradient(circle at center, transparent 0, transparent 4px, rgba(255, 190, 35, 0.2) 5px, rgba(255, 190, 35, 0.2) 6px);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}

.quota-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 80px 45px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.quota-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 560px;
  padding-right: 0;
  padding-top: 60px;
}

.quota-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1041c6;
  margin-bottom: 30px;
}

.quota-hero__breadcrumbs a { color: #1041c6; text-decoration: none; }
.quota-hero__breadcrumbs .separator {
  color: #64748b;
  font-size: 12px;
}

.quota-hero__breadcrumbs .current {
  color: #2563eb;
}

.quota-hero__title {
  font-size: clamp(2.5rem, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #112347;
  margin-bottom: 16px;
}

.quota-hero__title .text-blue {
  color: #2563eb;
}

.quota-hero__accent-line {
  width: 50px;
  height: 4px;
  background-color: #ffbe23;
  border-radius: 4px;
  margin-bottom: 24px;
}

.quota-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
}

.quota-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}

.quota-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.quota-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* --- Stats Bar --- */
.quota-stats-bar {
  position: relative;
  z-index: 10;
  width: calc(100% - 90px);
  margin: -50px 45px 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #021a52 0%, #062b80 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 50px 5%;
  gap: 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.quota-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 0 10px;
}

.quota-stat-item+.quota-stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.quota-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 190, 35, 0.1);
  border: 1px solid rgba(255, 190, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbe23;
}

.quota-stat-icon svg {
  width: 32px;
  height: 32px;
}

.quota-stat-info {
  display: flex;
  flex-direction: column;
}

.quota-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffbe23;
  line-height: 1.1;
}

.quota-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.3;
}

/* Content Section */
.quota-content {
  padding: 60px 5% 80px;
}

.quota-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.quota-info-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.quota-info-card__title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.quota-info-card__title svg { color: #2563eb; }

.quota-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quota-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.quota-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.quota-cta {
  margin-top: 40px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
}

.quota-cta h3 { font-size: 20px; color: #1e293b; margin-bottom: 15px; }

.btn-quota {
  display: inline-block;
  padding: 12px 30px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-quota:hover { background: #1d4ed8; }

/* Responsive */
@media (max-width: 1200px) {
  .quota-hero__image {
    height: 500px;
  }
  .quota-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
    gap: 30px;
  }
  .quota-stat-item:nth-child(even) {
    border-left: none;
  }
}

@media (max-width: 1024px) {
  .quota-hero {
    padding: 60px 5% 100px;
  }

  .quota-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .quota-hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .quota-hero__breadcrumbs {
    margin-top: 0;
    justify-content: center;
  }

  .quota-hero__text {
    max-width: 100%;
  }

  .quota-hero__visual {
    position: relative;
    width: 100%;
  }

  .quota-hero__image {
    height: 400px;
    border-radius: 12px;
  }

  .quota-hero__visual::after {
    display: none;
  }

  .quota-stats-bar {
    margin: -50px 5% 0;
    width: auto;
  }

  .quota-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .quota-hero {
    padding: 40px 5% 80px;
  }

  .quota-hero__title {
    font-size: 2.5rem;
  }

  .quota-stats-bar {
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding: 20px;
  }

  .quota-stat-item {
    border-left: none !important;
    padding: 0;
    justify-content: flex-start;
  }
}
/* ===== R&D PROJECTS PAGE ===== */
.rd-projects-page {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ── Hero ── */
.rd-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 4rem 5%;
  background: #032155; /* Fallback */
  color: white;
  overflow: hidden;
}

.rd-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  z-index: 1;
}

.rd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.8;
}

.rd-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #032155 0%, #032155 30%, rgba(3, 33, 85, 0.8) 50%, rgba(3, 33, 85, 0) 100%);
  z-index: 2;
}

.rd-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rd-hero__content {
  margin-top: 3rem;
}

.rd-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.rd-hero__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffbe23;
  margin-top: 1rem;
}

.rd-hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: 3rem;
}

.rd-hero__features {
  display: flex;
  gap: 5rem;
  margin-top: 3rem;
}

.rd-hero__feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rd-hero__feature-icon {
  width: 48px;
  height: 48px;
  background: #ffbe23;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #032155;
}

.rd-hero__feature-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rd-hero__feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.rd-hero__feature-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

.rd-hero__quote-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 300px;
  justify-self: end;
  position: relative;
}

.rd-hero__quote-icon {
  font-size: 3rem;
  color: #ffbe23;
  margin-bottom: 1rem;
  display: block;
  font-family: serif;
}

.rd-hero__quote-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.rd-hero__quote-line {
  width: 40px;
  height: 3px;
  background: #ffbe23;
  margin-top: 1.5rem;
}

/* ── Breadcrumbs ── */
.rd-breadcrumbs-wrapper {
  background: white;
  padding: 1.5rem 0;
}

.rd-breadcrumbs {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.rd-breadcrumbs-card {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: -30px;
  position: relative;
  z-index: 5;
}

.rd-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}

.rd-breadcrumbs .current {
  color: #2563eb;
}

/* ── Intro Section ── */
.rd-intro {
  padding: 5rem 5%;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.rd-intro__title {
  font-size: 3rem;
  font-weight: 800;
  color: #032155;
  margin-bottom: 1.5rem;
}

.rd-intro__text {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── Stats Bar ── */
.rd-stats {
  width: 100%;
  margin: 2rem auto 5rem;
  padding: 0 5%;
}

.rd-stats__inner {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem;
  gap: 2rem;
  border: 1px solid #f1f5f9;
}

.rd-stats__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.rd-stats__item:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.rd-stats__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-stats__item--projects .rd-stats__icon { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.rd-stats__item--researchers .rd-stats__icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.rd-stats__item--faculty .rd-stats__icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.rd-stats__item--awards .rd-stats__icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.rd-stats__info {
  display: flex;
  flex-direction: column;
}

.rd-stats__value {
  font-size: 2rem;
  font-weight: 800;
  color: #032155;
}

.rd-stats__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Tabs ── */
.rd-tabs-section {
  padding: 2rem 5% 8rem;
  background-color: #f8fafc;
}

.rd-tabs-container {
  width: 100%;
  margin: 0 auto;
}

.rd-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.rd-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: white;
  border-radius: 12px;
  font-weight: 700;
  color: #64748b;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.rd-tab.active {
  background: #2563eb;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.rd-tab__icon {
  width: 24px;
  height: 24px;
}

/* ── Projects Grid ── */
.rd-projects-panel {
  background: white;
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

.rd-projects__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.rd-projects__header-icon {
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-projects__header-title {
  font-size: 2rem;
  font-weight: 800;
  color: #032155;
}

.rd-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rd-project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rd-project-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.rd-project-card__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.rd-project-card__icon {
  color: #2563eb;
  opacity: 0.8;
}

.rd-project-card__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e293b;
  line-height: 1.4;
}

.rd-project-card__arrow {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.rd-project-card:hover .rd-project-card__arrow {
  transform: translateX(5px);
  color: #2563eb;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .rd-hero__title { font-size: 3.5rem; }
  .rd-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-stats__inner { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
  .rd-stats__item:nth-child(2) { border-right: none; }
}

@media (max-width: 992px) {
  .rd-hero__container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .rd-hero__title::after { margin: 1rem auto 0; }
  .rd-hero__subtitle { margin: 0 auto 3rem; }
  .rd-hero__features { justify-content: center; }
  .rd-hero__quote-card { justify-self: center; }
  .rd-tabs { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .rd-hero__title { font-size: 2.75rem; }
  .rd-projects-grid { grid-template-columns: 1fr; }
  .rd-stats__inner { grid-template-columns: 1fr; }
  .rd-stats__item { border-right: none !important; border-bottom: 1px solid #e2e8f0; padding-bottom: 1.5rem; }
  .rd-stats__item:last-child { border-bottom: none; }
  .rd-projects-panel { padding: 2rem; }
  .rd-hero__features { flex-direction: column; align-items: center; gap: 2.5rem; }
  .rd-hero__bg { width: 100%; left: 0; }
  .rd-hero__overlay { background: linear-gradient(180deg, rgba(3, 33, 85, 0.7) 0%, rgba(3, 33, 85, 0.9) 100%); }
}

@media (max-width: 425px) {
  .rd-hero__container {
    text-align: left;
  }

  .rd-hero__title::after {
    margin-left: 0;
    margin-right: 0;
  }

  .rd-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .rd-hero__features {
    align-items: flex-start;
    width: 100%;
  }

  .rd-hero__feature {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 1rem;
  }

  .rd-hero__feature-icon {
    flex: 0 0 48px;
  }

  .rd-hero__feature-info {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 320px) {
  .rd-hero {
    padding: 2rem 4%;
  }

  .rd-hero__container {
    gap: 1.5rem;
  }

  .rd-hero__content {
    margin-top: 1rem;
  }

  .rd-hero__title {
    margin-bottom: 0.75rem;
  }

  .rd-hero__subtitle {
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .rd-hero__features {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
/* ===== TECHNOLOGIES DEVELOPED PAGE ===== */
.tech-dev-page {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #fafbfc;
  overflow-x: hidden;
}

/* ── Hero ── */
.td-hero {
  position: relative;
  background: white;
  padding: 4rem 5% 0;
  display: flex;
  flex-direction: column;
}

.td-hero__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  margin-top: 60px; /* Added margin to clear navbar logo */
}

.td-hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #032155;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.td-hero__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #ffbe23;
  margin-top: 1rem;
}

.td-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  max-width: 650px;
}

.td-hero__visual {
  position: relative;
  height: 450px;
  border-radius: 24px;
  overflow: visible; /* To allow quote to float */
}

.td-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.td-hero__quote {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  z-index: 5;
  border: 1px solid #f1f5f9;
}

.td-hero__quote-icon {
  width: 32px;
  height: 32px;
  color: #2563eb;
  margin-bottom: 1rem;
}

.td-hero__quote-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.td-hero__quote-author {
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 600;
}

/* ── Features Bar ── */
.td-features {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: -40px;
  position: relative;
  z-index: 10;
  border: 1px solid #f1f5f9;
}

.td-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
}

.td-feature:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.td-feature__icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.td-feature__info {
  display: flex;
  flex-direction: column;
}

.td-feature__title {
  font-weight: 700;
  font-size: 1rem;
  color: #032155;
}

.td-feature__desc {
  font-size: 0.85rem;
  color: #64748b;
}

/* ── Table Section ── */
.td-table-section {
  padding: 8rem 5% 5rem;
  background-color: #f8fafc;
}

.td-table-container {
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.td-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.td-table thead {
  background: #2563eb;
  color: white;
}

.td-table th {
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.td-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}

.td-table__sr {
  width: 80px;
  text-align: center;
}

.td-table__sr-box {
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 700;
  color: #2563eb;
}

.td-table__details {
  font-weight: 600;
  color: #1e293b;
}

.td-table__tag {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Department Tag Colors */
.tag-math { background: #f3e8ff; color: #9333ea; }
.tag-mech { background: #dcfce7; color: #166534; }
.tag-pharm { background: #ffedd5; color: #9a3412; }
.tag-elec { background: #e0f2fe; color: #0369a1; }

/* ── Footer Note ── */
.td-footer-note {
  max-width: 600px;
  margin: 4rem auto;
  background: #eff6ff;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 1px solid #dbeafe;
}

.td-footer-note__icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
}

.td-footer-note__text {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a8a;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .td-hero__top { grid-template-columns: 1fr; gap: 3rem; }
  .td-hero__visual { max-width: 800px; margin: 0 auto; height: 400px; }
  .td-hero__quote { right: 0; top: auto; bottom: -40px; transform: none; width: 100%; max-width: none; }
  .td-features { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .td-feature:nth-child(2) { border-right: none; }
}

@media (max-width: 992px) {
  .td-table-container { overflow-x: auto; }
  .td-table { min-width: 900px; }
}

@media (max-width: 768px) {
  .td-hero { padding-top: 2rem; }
  .td-hero__top { margin-top: 2rem; }
  .td-features { grid-template-columns: 1fr; }
  .td-feature { border-right: none !important; border-bottom: 1px solid #e2e8f0; padding-bottom: 1.5rem; }
  .td-feature:last-child { border-bottom: none; }
  .td-hero__title { text-align: center; }
  .td-hero__text { text-align: center; margin: 0 auto; }
}

@media (max-width: 425px) {
  .td-hero {
    padding-top: 1.5rem;
  }

  .td-hero__top {
    margin-top: 1.5rem;
  }

  .td-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .td-hero__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
  }

  .td-hero__quote {
    position: static;
    width: auto;
    max-width: none;
    transform: none;
    padding: 1.25rem;
    border-radius: 16px;
  }
}

@media (max-width: 375px) {
  .td-hero {
    padding-top: 1.25rem;
  }

  .td-hero__top {
    margin-top: 1rem;
  }
}

@media (max-width: 320px) {
  .td-hero {
    padding-top: 1rem;
  }

  .td-hero__top {
    margin-top: 0.5rem;
    gap: 1.5rem;
  }

  .td-hero__image {
    height: 210px;
  }

  .td-hero__quote {
    padding: 1rem;
  }

  .td-hero__quote-text {
    font-size: 1rem;
  }
}
/* ===== AWARD WINNING PROJECTS PAGE ===== */
.award-projects-page {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #fafbfc;
  overflow-x: hidden;
}

/* ── Hero ── */
.aw-hero {
  position: relative;
  background: white;
  padding: 2.5rem 5% 4rem;
  overflow: hidden;
  margin-top: 30px; /* Clear navbar logo */
}

.aw-hero__container {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.aw-hero__center-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aw-hero__trophy {
  width: 100%;
  max-width: 450px;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.aw-hero__content {
  max-width: none;
}

.aw-hero__card {
  width: 100%;
}

.aw-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #032155;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.aw-hero__line {
  width: 50px;
  height: 4px;
  background: #ffbe23;
  margin-bottom: 2rem;
}

.aw-hero__text {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 500px;
}

/* ── Layout Grid ── */
.aw-main {
  padding: 2rem 5% 6rem;
}

.aw-main__container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

/* ── Accordion ── */
.aw-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aw-accordion__item {
  background: white;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.aw-accordion__item.active {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.aw-accordion__header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: white;
}

.aw-accordion__header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.aw-accordion__icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.aw-accordion__item.active .aw-accordion__icon {
  background: #2563eb;
  color: white;
}

.aw-accordion__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.aw-accordion__chevron {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.aw-accordion__item.active .aw-accordion__chevron {
  transform: rotate(180deg);
  color: #2563eb;
}

.aw-accordion__content {
  padding: 0 2rem 2rem 6.5rem;
  display: none;
}

.aw-accordion__item.active .aw-accordion__content {
  display: block;
}

.aw-projects-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aw-projects-list__title {
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
  display: block;
}

.aw-project-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #f1f5f9;
}

.aw-project-row:last-child {
  border-bottom: none;
}

.aw-project-row__check {
  color: #2563eb;
  flex-shrink: 0;
}

/* ── Right Column Cards ── */
.aw-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Impact Card */
.aw-card--impact {
  background: linear-gradient(180deg, #032155 0%, #0849bc 100%);
  color: white;
  padding: 4.5rem 2.5rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(3, 33, 85, 0.15);
}

.aw-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.aw-card__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #ffbe23;
  margin-top: 0.75rem;
}

.aw-metrics {
  display: flex;
  flex-direction: row; /* Changed from column to row */
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.aw-metric {
  text-align: center;
}

.aw-metric__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.aw-metric__value {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.aw-metric__label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 600;
}

/* Funding Card */
.aw-card--funding {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}

.aw-funding__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.aw-funding__icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-funding__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #032155;
}

.aw-funding__text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.aw-collab {
  display: flex;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.aw-collab__icon {
  color: #2563eb;
  flex-shrink: 0;
}

.aw-collab__text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

/* ── Footer Bar ── */
.aw-footer-bar {
  margin: -3rem 5% 5rem;
  background: white;
  padding: 1.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.aw-footer-bar__icon {
  width: 56px;
  height: 56px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-footer-bar__info {
  display: flex;
  flex-direction: column;
}

.aw-footer-bar__title {
  font-weight: 800;
  font-size: 1.15rem;
  color: #032155;
}

.aw-footer-bar__desc {
  font-size: 1rem;
  color: #64748b;
}

.aw-footer-bar__visual {
  margin-left: auto;
  opacity: 0.3;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .aw-hero {
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5%) clamp(2rem, 5vw, 4rem);
  }

  .aw-hero__container { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 3rem;
  }
  .aw-hero__title { 
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .aw-hero__line { margin: 0 auto 2rem; }
  .aw-hero__text { margin: 0 auto; }
  .aw-hero__trophy { max-width: 250px; }
  .aw-hero__card { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 992px) {
  .aw-main {
    padding: 2rem clamp(1rem, 5vw, 5%) 6rem;
  }

  .aw-main__container {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .aw-sidebar { flex-direction: column; }
}

@media (max-width: 768px) {
  .aw-hero { margin-top: 20px; }
  .aw-hero__container { gap: 2rem; }
  .aw-hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .aw-hero__text { font-size: 1rem; }
  .aw-accordion__header { padding: 1.25rem; }
  .aw-accordion__header-left { min-width: 0; }
  .aw-accordion__name { min-width: 0; overflow-wrap: anywhere; }
  .aw-accordion__chevron { flex-shrink: 0; }
  .aw-accordion__content { padding: 0 1.25rem 1.5rem 4.5rem; }
  .aw-card--impact { padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem); }
  .aw-card--funding { padding: clamp(1.5rem, 4vw, 2.5rem); }
  .aw-metrics { flex-direction: column; flex-wrap: wrap; gap: 2rem; }
  .aw-metric { flex: 1 1 92px; min-width: 0; }
  .aw-footer-bar { flex-direction: column; text-align: center; padding: 2rem; }
  .aw-footer-bar__visual { display: none; }
  .aw-footer-bar__icon { margin-bottom: 1rem; }
}

@media (max-width: 560px) {
  .aw-hero {
    padding: 1.5rem 1rem 2rem;
    margin-top: 8px;
  }

  .aw-hero__container {
    gap: 1.5rem;
  }

  .aw-hero__line {
    margin-bottom: 1.25rem;
  }

  .aw-hero__trophy {
    max-width: 210px;
  }

  .aw-card--impact,
  .aw-card--funding {
    border-radius: 16px;
  }

  .aw-card__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .aw-metrics {
    gap: 1.25rem;
  }

  .aw-metric {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon value"
      "icon label";
    column-gap: 1rem;
    align-items: center;
    text-align: left;
  }

  .aw-metric__icon {
    grid-area: icon;
    margin: 0;
  }

  .aw-metric__value {
    grid-area: value;
    font-size: 1.7rem;
  }

  .aw-metric__label {
    grid-area: label;
  }

  .aw-footer-bar__icon {
    flex-shrink: 0;
  }

  .aw-footer-bar__info {
    min-width: 0;
  }

  .aw-footer-bar__title {
    overflow-wrap: anywhere;
  }

  .aw-main {
    padding: 1.25rem 1rem 4rem;
  }

  .aw-accordion {
    gap: 1rem;
  }

  .aw-accordion__item {
    border-radius: 14px;
  }

  .aw-accordion__header {
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .aw-accordion__header-left {
    gap: 0.75rem;
  }

  .aw-accordion__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .aw-accordion__name {
    font-size: 1rem;
    line-height: 1.35;
  }

  .aw-accordion__content {
    padding: 0 1rem 1.25rem;
  }

  .aw-projects-list__title {
    margin-bottom: 0.5rem;
  }

  .aw-project-row {
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .aw-funding__header {
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .aw-collab {
    gap: 0.875rem;
  }

  .aw-footer-bar {
    width: calc(100% - 2rem);
    margin: -2rem auto 3rem;
    gap: 0.75rem;
    border-radius: 16px;
  }

  .aw-footer-bar__icon {
    width: 48px;
    height: 48px;
  }

  .aw-footer-bar__title {
    font-size: 1rem;
  }

  .aw-footer-bar__desc {
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .aw-hero,
  .aw-main {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .aw-hero__title {
    font-size: 1.8rem;
  }

  .aw-card--impact,
  .aw-card--funding {
    padding: 1.25rem;
  }

  .aw-accordion__header {
    padding: 0.875rem;
  }

  .aw-accordion__icon {
    display: none;
  }

  .aw-footer-bar {
    width: calc(100% - 1.5rem);
    padding: 1.25rem 1rem;
  }
}
/* ===== RESEARCH PUBLICATIONS PAGE ===== */
.rp-page {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #fafbfc;
  overflow-x: hidden;
}

/* ── Hero ── */
.rp-hero {
  position: relative;
  background: linear-gradient(to right, #ffffff 40%, #f8fbff 100%);
  padding: 6rem 5% 4rem;
  overflow: hidden;
  margin-top: 0;
}

.rp-hero__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rp-hero__content {
  max-width: 480px;
}

.rp-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #032155;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.rp-hero__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffbe23;
  margin-top: 1rem;
}

.rp-hero__subtitle {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.rp-hero__visual {
  width: 980px;
  position: relative;
  z-index: 2;
  margin-right: -5%;
  margin-top: -6rem;
  align-self: flex-start;
  isolation: isolate;
}

.rp-hero__img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  display: block;
  filter: contrast(1.05) brightness(1.02);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
}

/* ── Breadcrumbs ── */
.rp-breadcrumbs-bar {
  background: white;
  padding: 1rem 0;
  border-top: 1px solid #f1f5f9;
}

.rp-breadcrumbs {
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

.rp-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}

.rp-breadcrumbs .current {
  color: #f59e0b;
}

/* ── Table Section ── */
.rp-section {
  padding: 5rem 5% 8rem;
  background-color: #f8fafc;
}

.rp-section__header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.rp-section__dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.rp-section__dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  opacity: 0.6;
}

.rp-section__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #032155;
}

/* Tabs */
.rp-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.rp-tab {
  padding: 0.85rem 1.75rem;
  background: white;
  border-radius: 12px;
  font-weight: 700;
  color: #64748b;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rp-tab.active {
  background: #2563eb;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.rp-tab--more {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Table */
.rp-table-container {
  width: 100%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.rp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.rp-table thead {
  background: #0849bc;
  color: white;
}

.rp-table th {
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.rp-table th .icon {
  margin-right: 0.75rem;
  opacity: 0.8;
}

.rp-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.rp-table__faculty {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
  color: #032155;
}

.rp-table__faculty-icon {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-table__tag {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.tag--int { background: #eff6ff; color: #2563eb; }
.tag--nat { background: #f0fdf4; color: #166534; }

.rp-table__year-tag {
  background: #eff6ff;
  color: #2563eb;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .rp-hero__container { flex-direction: column; text-align: center; }
  .rp-hero__title::after { margin: 1rem auto 0; }
  .rp-hero__visual { 
    width: 90%; 
    max-width: 400px;
    margin-top: 2rem; 
    align-self: center;
  }
  .rp-hero__img {
    transform: none;
  }
  .rp-table-container { overflow-x: auto; }
  .rp-table { min-width: 1000px; }
}

@media (max-width: 768px) {
  .rp-hero__title { font-size: 2.5rem; }
  .rp-section__title { font-size: 1.75rem; }
  .rp-tabs { gap: 0.75rem; }
  .rp-tab { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
}

@media (max-width: 425px) {
  .rp-hero {
    padding-top: 1.5rem;
  }
}

@media (max-width: 375px) {
  .rp-hero {
    padding-top: 1.25rem;
  }
}

@media (max-width: 320px) {
  .rp-hero {
    padding-top: 1.25rem;
  }
}
.fnp-hero {
  padding: 80px 5% 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.fnp-hero__content {
  z-index: 2;
}

.fnp-hero__breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 600;
  color: #1e293b;
}

.fnp-hero__breadcrumb a {
  text-decoration: none;
  color: #64748b;
}

.fnp-hero__tag {
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: block;
}

.fnp-hero__title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #162341;
  line-height: 1.05;
  margin-bottom: 24px;
}

.fnp-hero__desc {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 48px;
}

.fnp-hero__visual {
  position: relative;
  height: 600px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fnp-hero__bg-shape {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 100%;
  height: 100%;
  background: #0a275d;
  border-radius: 60px;
  transform: rotate(-8deg);
  z-index: 0;
}

.fnp-hero__img-main {
  position: absolute;
  width: 440px;
  height: 480px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.fnp-hero__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fnp-hero__img-sub1 {
  position: absolute;
  width: 280px;
  height: 240px;
  bottom: 0;
  left: 0;
  border-radius: 24px;
  border: 6px solid #fff;
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.fnp-hero__img-sub1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fnp-hero__img-sub2 {
  position: absolute;
  width: 320px;
  height: 260px;
  bottom: -40px;
  right: -20px;
  border-radius: 24px;
  border: 6px solid #fff;
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.fnp-hero__img-sub2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fnp-hero__dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 2;
}

.fnp-hero__dots--top {
  top: -40px;
  right: 15%;
}

.fnp-hero__dots--bottom {
  bottom: 20%;
  right: -5%;
}

.fnp-hero__swirl {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 100px;
  z-index: 5;
}

.fnp-stats {
  display: flex;
  gap: 20px;
  margin-top: -40px;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}

.fnp-stat-card {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 35, 90, 0.06);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fnp-stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.fnp-stat-card__val {
  font-size: 24px;
  font-weight: 800;
  color: #162341;
  line-height: 1;
}

.fnp-stat-card__label {
  font-size: 12px;
  color: #8a9bbf;
  margin-top: 4px;
  font-weight: 600;
}

.fnp-filters {
  background: #fff;
  margin: 60px 5% 40px;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}

.fnp-filters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.fnp-filter__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  outline: none;
  font-size: 14px;
}

.fnp-filter__select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 14px;
  color: #64748b;
  cursor: pointer;
}

.fnp-filters__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fnp-view-toggle {
  display: flex;
  gap: 10px;
}

.fnp-view-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fnp-view-btn--active {
  background: #f0f7ff;
  border-color: #2563eb;
  color: #2563eb;
}

.fnp-section {
  padding: 40px 5% 60px;
}

.fnp-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.fnp-section__title {
  font-size: 28px;
  font-weight: 800;
  color: #162341;
  position: relative;
}

.fnp-section__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #ffbe23;
  margin-top: 8px;
}

.fnp-section__link {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fnp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fnp-grid--list {
  display: flex;
  flex-direction: column;
}

.fnp-grid--list .fnp-card {
  width: 100%;
}

/* Featured Card */
.fnp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}

.fnp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fnp-card__img-wrap {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #eef2f7;
}

.fnp-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.fnp-card__socials {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fnp-card__social-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fnp-card__body {
  padding: 20px;
}

.fnp-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
}

.fnp-card__role {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 2px;
}

.fnp-card__dept {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.fnp-card__edu {
  font-size: 13px;
  color: #1e293b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.fnp-card__edu span {
  color: #2563eb;
}

.fnp-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.fnp-card__tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: #f0f7ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
}

.fnp-card__btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid #2563eb;
  background: transparent;
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fnp-card__btn:hover {
  background: #2563eb;
  color: #fff;
}

/* Leader Card (Dean) */
.fnp-leader {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}

.fnp-leader:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.fnp-leader__portrait-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 12px;
  border: 2px dashed #e2e8f0;
  margin-bottom: 24px;
  position: relative;
}

.fnp-leader__portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #2563eb;
  border-radius: 50%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.fnp-leader__portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.fnp-leader__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fnp-leader__name {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

.fnp-leader__accent {
  width: 24px;
  height: 2px;
  background: #ffbe23;
  margin-bottom: 16px;
}

.fnp-leader__role {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
  min-height: 40px;
}

.fnp-leader__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

@media (max-width: 1440px) {
  .fnp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .fnp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .fnp-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .fnp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fnp-hero__desc {
    margin-inline: auto;
  }

  .fnp-hero__visual {
    display: none;
  }

  .fnp-stats {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .fnp-filters__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fnp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fnp-grid {
    grid-template-columns: 1fr;
  }

  .fnp-filters__grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════════
   Privacy Policy Page – Premium Design
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.pp-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
  padding: 3.5rem 2rem 3rem;
  border-radius: 0 0 18px 18px;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.pp-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pp-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── Body ── */
.pp-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

/* ── Section ── */
.pp-section {
  margin-bottom: 2.8rem;
  scroll-margin-top: 90px;
}
.pp-section__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pp-section__heading--no-border { border-bottom: none; padding-bottom: 0; }
.pp-section__heading--contact { border-bottom: none; padding-bottom: 0.4rem; }
.pp-section__number { color: #1e293b; }

/* ── Intro text ── */
.pp-intro-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.75;
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.pp-body-text {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.pp-muted {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.pp-sub-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  margin: 1.5rem 0 0.8rem;
}

/* ── Callouts ── */
.pp-callout {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.pp-callout__bar {
  width: 5px;
  flex-shrink: 0;
  border-radius: 5px 0 0 5px;
}
.pp-callout__content {
  padding: 1.2rem 1.5rem;
  flex: 1;
}
.pp-callout__label {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 5px;
}
.pp-callout__text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
/* blue */
.pp-callout--blue { background: #eff6ff; border: 1px solid #dbeafe; }
.pp-callout--blue .pp-callout__bar { background: #2563eb; }
.pp-callout--blue .pp-callout__label { color: #1d4ed8; }
.pp-callout--blue .pp-callout__text { color: #1e40af; }
/* amber */
.pp-callout--amber { background: #fffbeb; border: 1px solid #fde68a; }
.pp-callout--amber .pp-callout__bar { background: #f59e0b; }
.pp-callout--amber .pp-callout__label { color: #b45309; }
.pp-callout--amber .pp-callout__text { color: #78350f; }
/* purple */
.pp-callout--purple { background: #f5f3ff; border: 1px solid #ddd6fe; }
.pp-callout--purple .pp-callout__bar { background: #7c3aed; }
.pp-callout--purple .pp-callout__label { color: #6d28d9; }
.pp-callout--purple .pp-callout__text { color: #4c1d95; }

/* ── TOC ── */
.pp-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2.5rem;
}
.pp-toc__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1rem;
}
.pp-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.pp-toc__list li {
  counter-increment: toc;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pp-toc__list li::before {
  content: counter(toc) ".";
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  min-width: 22px;
}
.pp-toc__link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #2563eb;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}
.pp-toc__link:hover { color: #1d4ed8; text-decoration: underline; }

/* ── Dual info cards ── */
.pp-dual-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.pp-info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
}
.pp-info-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 1rem;
}
.pp-info-card ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0;
}
.pp-info-card li {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2px;
}

/* ── Collect grid ── */
.pp-collect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 1.5rem;
}
.pp-collect-card {
  text-align: left;
}
.pp-collect-card__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.6rem;
}
.pp-collect-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.3rem;
}
.pp-collect-card p {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* ── Usage list ── */
.pp-usage-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pp-usage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}
.pp-usage-item__icon { flex-shrink: 0; margin-top: 1px; }
.pp-usage-item__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 3px;
}
.pp-usage-item__desc {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* ── Legal basis ── */
.pp-legal-basis {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 1.5rem;
}
.pp-legal-basis__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #166534;
  margin: 0 0 1.1rem;
}
.pp-legal-basis__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pp-legal-basis__item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #16a34a;
  margin: 0 0 3px;
}
.pp-legal-basis__item-desc {
  font-size: 0.85rem;
  color: #166534;
  margin: 0;
  line-height: 1.5;
}

/* ── Table ── */
.pp-table-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.pp-table {
  width: 100%;
  border-collapse: collapse;
}
.pp-table thead { background: #f8fafc; }
.pp-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #e2e8f0;
}
.pp-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.pp-table tr:last-child td { border-bottom: none; }
.pp-table__bold { font-weight: 600; color: #1e293b; }

/* ── Security grid ── */
.pp-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.pp-security-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.9rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}
.pp-security-item svg { flex-shrink: 0; margin-top: 2px; }

/* ── Security icon grid (3 col) ── */
.pp-security-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pp-sec-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.3rem 1.2rem;
  transition: box-shadow 0.2s;
}
.pp-sec-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.pp-sec-card__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.7rem;
}
.pp-sec-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.4rem;
}
.pp-sec-card p {
  font-size: 0.87rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Rights grid v2 (bordered 2-col) ── */
.pp-rights-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pp-rights-card2 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pp-rights-card2:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.pp-rights-card2 h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.4rem;
}
.pp-rights-card2 p {
  font-size: 0.87rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Third-Party services grid ── */
.pp-third-party-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}
.pp-tp-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
}
.pp-tp-chip svg {
  flex-shrink: 0;
}

/* ── Notification list ── */
.pp-notif-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pp-notif-list li {
  font-size: 0.9rem;
  color: #b45309;
  font-weight: 500;
  position: relative;
  padding-left: 1.2rem;
}
.pp-notif-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d97706;
  font-size: 1.2rem;
  line-height: 1;
  top: -1px;
}

/* ── Generic card ── */
.pp-card {
  padding: 1.1rem 1.4rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.pp-card--icon {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pp-card__icon { flex-shrink: 0; margin-top: 2px; }
.pp-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #334155;
  line-height: 1.65;
}

/* ── Contact card ── */
.pp-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.pp-contact-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}
.pp-contact-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.4rem 1.5rem;
}
.pp-contact-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}
.pp-contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  margin: 0 0 0.6rem;
  line-height: 1.5;
}
.pp-contact-card__item svg { flex-shrink: 0; margin-top: 1px; }


/* ── Acceptance card ── */
.pp-acceptance-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
}
.pp-acceptance-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.8rem;
}
.pp-acceptance-card__text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pp-hero { padding: 2.5rem 1.2rem 2rem; border-radius: 0; }
  .pp-hero__title { font-size: 1.5rem; }
  .pp-body { padding: 1.5rem 1rem 3rem; }
  .pp-dual-cards { grid-template-columns: 1fr; }
  .pp-collect-grid { grid-template-columns: 1fr; }
  .pp-legal-basis__grid { grid-template-columns: 1fr; }
  .pp-security-grid { grid-template-columns: 1fr; }
  .pp-rights-grid { grid-template-columns: 1fr; }
  .pp-rights-grid2 { grid-template-columns: 1fr; }
  .pp-security-icon-grid { grid-template-columns: 1fr; }
  .pp-third-party-grid { grid-template-columns: 1fr; }
  .pp-contact-card__body { grid-template-columns: 1fr; gap: 1rem; }
  .pp-section__heading { font-size: 1.15rem; }
  .pp-table th, .pp-table td { padding: 0.7rem 0.8rem; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .pp-hero__title { font-size: 1.3rem; }
  .pp-card--icon { flex-direction: column; gap: 8px; }
}
/* ═══════════════════════════════════════════════════
   Terms & Conditions Page – Premium Design
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.tnc-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
  padding: 3.5rem 2rem 3rem;
  border-radius: 0 0 18px 18px;
  position: relative;
  overflow: hidden;
}

.tnc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.tnc-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.tnc-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

.tnc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  letter-spacing: 0.01em;
}

/* ── Body wrapper ── */
.tnc-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

/* ── Important Notice ── */
.tnc-notice {
  display: flex;
  gap: 0;
  background: #eff6ff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid #dbeafe;
}

.tnc-notice__bar {
  width: 5px;
  flex-shrink: 0;
  background: #2563eb;
  border-radius: 5px 0 0 5px;
}

.tnc-notice__content {
  padding: 1.2rem 1.5rem;
}

.tnc-notice__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  margin: 0 0 4px;
}

.tnc-notice__text {
  font-size: 0.92rem;
  color: #1e40af;
  line-height: 1.6;
  margin: 0;
}

/* ── Section ── */
.tnc-section {
  margin-bottom: 2.5rem;
}

.tnc-section__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tnc-section__heading--contact {
  border-bottom: none;
  padding-bottom: 0.4rem;
}

.tnc-section__number {
  color: #1e293b;
}

/* ── Generic card row (check / bolt / info) ── */
.tnc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.1rem 1.4rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.tnc-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.tnc-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #334155;
  line-height: 1.65;
}

/* ── Services grid ── */
.tnc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.tnc-service-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.93rem;
  color: #334155;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tnc-service-chip:hover {
  border-color: #93c5fd;
  box-shadow: 0 2px 12px rgba(37,99,235,0.08);
}

.tnc-muted {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── Table ── */
.tnc-table-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.tnc-table {
  width: 100%;
  border-collapse: collapse;
}

.tnc-table thead {
  background: #f8fafc;
}

.tnc-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid #e2e8f0;
}

.tnc-table td {
  padding: 0.85rem 1.4rem;
  font-size: 0.93rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.tnc-table tr:last-child td {
  border-bottom: none;
}

.tnc-table__req {
  font-weight: 600;
  color: #1e293b;
}

/* ── Dual policy cards ── */
.tnc-dual-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.tnc-policy-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
}

.tnc-policy-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.9rem;
}

.tnc-policy-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}

.tnc-policy-card li {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2px;
}

/* ── Callout boxes (amber, red) ── */
.tnc-callout {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.tnc-callout__bar {
  width: 5px;
  flex-shrink: 0;
  border-radius: 5px 0 0 5px;
}

.tnc-callout__content {
  padding: 1.1rem 1.4rem;
  flex: 1;
}

.tnc-callout__label {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.tnc-callout__text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* amber variant */
.tnc-callout--amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.tnc-callout--amber .tnc-callout__bar {
  background: #f59e0b;
}
.tnc-callout--amber .tnc-callout__label {
  color: #d97706;
}
.tnc-callout--amber .tnc-callout__text {
  color: #92400e;
}

/* red variant */
.tnc-callout--red {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}
.tnc-callout--red .tnc-callout__bar {
  background: #ef4444;
}
.tnc-callout--red .tnc-callout__label {
  color: #dc2626;
}
.tnc-callout--red .tnc-callout__text {
  color: #991b1b;
}

/* ── Contact card ── */
.tnc-contact-section {
  margin-top: 1rem;
}

.tnc-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.tnc-contact-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}

.tnc-contact-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.4rem 1.5rem;
}

.tnc-contact-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.tnc-contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  margin: 0 0 0.6rem;
  line-height: 1.5;
}

.tnc-contact-card__item svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .tnc-hero {
    padding: 2.5rem 1.2rem 2rem;
    border-radius: 0;
  }
  .tnc-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .tnc-hero__title {
    font-size: 1.5rem;
  }
  .tnc-body {
    padding: 1.5rem 1rem 3rem;
  }
  .tnc-services-grid {
    grid-template-columns: 1fr;
  }
  .tnc-dual-cards {
    grid-template-columns: 1fr;
  }
  .tnc-contact-card__body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tnc-section__heading {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .tnc-hero__title {
    font-size: 1.3rem;
  }
  .tnc-card {
    flex-direction: column;
    gap: 8px;
  }
}
/* ── Page ── */
.jap-page {
  min-height: 100vh;
  background: #f1f5f9;
}

.jap-layout {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
}

/* ══════════════════════════════
   LEFT SIDEBAR
══════════════════════════════ */
.jap-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(175deg, #0a275d 0%, #1041c6 100%);
  align-self: stretch;
}

.jap-sidebar__sticky {
  position: sticky;
  top: 0;
  padding: 120px 32px 48px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jap-sidebar__logo {
  width: 80px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.jap-sidebar__divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px 0;
}

.jap-sidebar__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  display: block;
}

.jap-sidebar__job {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.jap-sidebar__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(253,181,21,0.15);
  border: 1px solid rgba(253,181,21,0.35);
  color: #fdb515;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
}

.jap-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fdb515;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.jap-sidebar__section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.jap-sidebar__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.jap-sidebar__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.jap-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(253,181,21,0.2);
  color: #fdb515;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jap-sidebar__tagline {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
}

.jap-sidebar__tagline span { font-size: 28px; }

.jap-sidebar__tagline p {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.jap-sidebar__tagline small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════
   MAIN CONTENT
══════════════════════════════ */
.jap-main {
  flex: 1;
  padding: 48px 48px 80px;
  min-width: 0;
}

/* Breadcrumb */
.jap-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 28px;
}

.jap-breadcrumb button {
  background: none;
  border: none;
  color: #1041c6;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.jap-breadcrumb button:hover { text-decoration: underline; }
.jap-breadcrumb span:last-child { color: #475569; font-weight: 600; }

/* Card */
.jap-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 32px rgba(16,65,198,0.07);
  overflow: hidden;
}

.jap-card__header {
  padding: 32px 40px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
}

.jap-card__header-text h1 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.jap-card__header-text p {
  font-size: 14px;
  color: #64748b;
}

.jap-card__header-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1041c6, #0a275d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(16,65,198,0.3);
}

/* Form */
.jap-form {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Section */
.jap-section {
  padding: 32px 40px;
  border-bottom: 1px solid #f1f5f9;
}

.jap-section:last-of-type { border-bottom: none; }

.jap-section__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.jap-section__num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1041c6, #0a275d);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Grid */
.jap-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Field */
.jap-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.jap-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 4px;
}

.jap-hint {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
}

.req { color: #ef4444; }

.jap-field input {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #1e293b;
  background: #fafafa;
  outline: none;
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.jap-field input::placeholder { color: #b0bac9; }

.jap-field input:focus {
  border-color: #1041c6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16,65,198,0.09);
}

/* Upload box */
.jap-upload-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px dashed #d1d5db;
  border-radius: 12px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.jap-upload-box:hover {
  border-color: #1041c6;
  background: #f0f4ff;
}

.jap-upload-icon {
  font-size: 26px;
  width: 48px;
  height: 48px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jap-upload-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.jap-upload-text span {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.jap-upload-text small {
  font-size: 11px;
  color: #9ca3af;
}

/* Footer */
.jap-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: #fafbff;
  border-top: 1px solid #f1f5f9;
}

.jap-btn-cancel {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #64748b;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s;
}

.jap-btn-cancel:hover {
  border-color: #1041c6;
  color: #1041c6;
  background: #f0f4ff;
}

.jap-btn-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1041c6 0%, #0a275d 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(16,65,198,0.3);
  transition: all 0.18s;
}

.jap-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16,65,198,0.4);
}

/* ══════════════════════════════
   SUCCESS SCREEN
══════════════════════════════ */
.jap-success-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.jap-success {
  background: #fff;
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(16,65,198,0.12);
}

.jap-success__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1041c6, #0a275d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(16,65,198,0.35);
}

.jap-success h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.jap-success p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.jap-success p strong { color: #1041c6; }

.jap-btn-back {
  background: linear-gradient(135deg, #1041c6, #0a275d);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(16,65,198,0.3);
  transition: all 0.18s;
}

.jap-btn-back:hover { transform: translateY(-2px); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1100px) {
  .jap-sidebar { width: 260px; }
  .jap-sidebar__sticky { padding: 100px 24px 40px; }
  .jap-main { padding: 40px 32px 80px; }
  .jap-section { padding: 28px 32px; }
  .jap-card__header { padding: 28px 32px; }
  .jap-form-footer { padding: 22px 32px; }
}

/* Tablet portrait — stack layout */
@media (max-width: 900px) {
  .jap-layout { flex-direction: column; align-items: stretch; }

  .jap-sidebar {
    width: 100%;
    align-self: auto;
  }
  .jap-sidebar__sticky {
    position: static;
    height: auto;
    padding: 80px 32px 36px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
  }
  .jap-sidebar__logo { margin-bottom: 0; width: 64px; }
  .jap-sidebar__divider { display: none; }
  .jap-sidebar__eyebrow { font-size: 9px; }
  .jap-sidebar__job { font-size: 18px; margin-bottom: 8px; }
  .jap-sidebar__perks { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .jap-sidebar__perks li { font-size: 12px; }
  .jap-sidebar__tagline { margin-top: 0; width: 100%; }

  /* Group left info and right perks side by side */
  .jap-sidebar__sticky > *:nth-child(-n+5) { flex: 0 0 auto; }
  .jap-sidebar__sticky > .jap-sidebar__section-title,
  .jap-sidebar__sticky > .jap-sidebar__perks { flex: 1 1 100%; }

  .jap-main { padding: 32px 24px 60px; }
  .jap-section { padding: 24px 28px; }
  .jap-card__header { padding: 24px 28px; }
  .jap-form-footer { padding: 20px 28px; }
}

/* Mobile large */
@media (max-width: 640px) {
  .jap-sidebar__sticky {
    padding: 72px 20px 28px;
    flex-direction: column;
    gap: 0;
  }
  .jap-sidebar__logo { width: 60px; margin-bottom: 20px; }
  .jap-sidebar__divider { display: block; }
  .jap-sidebar__job { font-size: 17px; }
  .jap-sidebar__perks { flex-direction: column; gap: 10px; }
  .jap-sidebar__tagline { margin-top: 20px; }

  .jap-main { padding: 24px 16px 50px; }

  .jap-card { border-radius: 14px; }
  .jap-card__header {
    padding: 20px 20px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .jap-card__header-text h1 { font-size: 18px; }
  .jap-card__header-text p { font-size: 12px; }
  .jap-card__header-badge { width: 44px; height: 44px; font-size: 20px; border-radius: 10px; flex-shrink: 0; }

  .jap-section { padding: 20px; }
  .jap-section__label { font-size: 11px; margin-bottom: 16px; }
  .jap-section__num { width: 24px; height: 24px; font-size: 10px; }

  .jap-grid-2 { grid-template-columns: 1fr; gap: 14px; }

  .jap-field label { font-size: 12px; }
  .jap-field input { padding: 10px 12px; font-size: 13px; border-radius: 8px; }

  .jap-upload-box { padding: 12px 14px; gap: 10px; }
  .jap-upload-icon { width: 40px; height: 40px; font-size: 20px; border-radius: 8px; }
  .jap-upload-text span { font-size: 12px; max-width: 160px; }

  .jap-form-footer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 10px;
  }
  .jap-btn-cancel, .jap-btn-submit { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14px; }

  .jap-breadcrumb { font-size: 12px; margin-bottom: 16px; }
}

/* Mobile small */
@media (max-width: 400px) {
  .jap-sidebar__sticky { padding: 68px 16px 24px; }
  .jap-sidebar__job { font-size: 15px; }
  .jap-sidebar__badge { font-size: 11px; padding: 5px 10px; }
  .jap-sidebar__perks li { font-size: 11px; }
  .jap-sidebar__tagline { padding: 12px; gap: 10px; }
  .jap-sidebar__tagline span { font-size: 22px; }
  .jap-sidebar__tagline p { font-size: 12px; }

  .jap-main { padding: 20px 12px 40px; }
  .jap-card { border-radius: 12px; }
  .jap-card__header { padding: 16px; }
  .jap-card__header-text h1 { font-size: 16px; }
  .jap-card__header-badge { width: 38px; height: 38px; font-size: 18px; }

  .jap-section { padding: 16px; }
  .jap-section__label { font-size: 10px; gap: 8px; }
  .jap-section__num { width: 22px; height: 22px; font-size: 9px; border-radius: 6px; }

  .jap-field input { padding: 9px 11px; font-size: 13px; }
  .jap-upload-box { padding: 10px 12px; }
  .jap-upload-icon { width: 36px; height: 36px; font-size: 18px; }
  .jap-upload-text span { font-size: 11px; max-width: 130px; }

  .jap-form-footer { padding: 14px 16px; }
  .jap-btn-cancel, .jap-btn-submit { padding: 12px 16px; font-size: 13px; }

  .jap-success { padding: 36px 20px; }
  .jap-success__circle { width: 64px; height: 64px; }
  .jap-success h2 { font-size: 20px; }
  .jap-success p { font-size: 13px; }
  .jap-btn-back { padding: 12px 24px; font-size: 13px; }
}
/* Institutions Page Layout */
.institutions-page {
  background: #f8fbff;
  min-height: 100vh;
  padding-top: 100px;
}

.institutions-container {
  max-width: 100%;
  margin: 0;
  display: flex;
  gap: 40px;
  padding: 0 40px 80px;
}

/* Sidebar Styling */
.institutions-sidebar {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-brand-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px; /* SPACE BETWEEN LOGO AND MENU */
}

.sidebar-brand-header {
  background: #1041c6;
  height: 80px;
  width: 100%;
}

.sidebar-brand-content {
  padding: 0 20px 24px;
  margin-top: -40px;
  text-align: center;
}

.sidebar-brand-logo {
  width: 100%;
  max-width: 120px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sidebar-brand-tagline {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-menu {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2ff;
  margin-top: 80px; /* Extra margin to be sure */
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item.active {
  background: #1041c6;
  color: #fff;
}

.sidebar-item:hover:not(.active) {
  background: #f8fafc;
  color: #1041c6;
}

.sidebar-icon {
  font-size: 18px;
}

/* Main Content Styling */
.institutions-main {
  flex-grow: 1;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.header-text h1 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.header-text p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  max-width: 800px;
}

.subscribe-box {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.subscribe-input {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  width: 240px;
}

.subscribe-btn {
  background: #1041c6;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 10px;
}

.filter-tab {
  padding: 8px 16px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.filter-tab.active {
  background: #1041c6;
  color: #fff;
  border-color: #1041c6;
}

.filter-controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search-input {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  width: 240px;
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  color: #64748b;
  background: #fff;
}

/* Institutions Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 35px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 65, 198, 0.1);
}

.news-card__media {
  position: relative;
  height: 220px;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-card__date strong {
  font-size: 18px;
  color: #1041c6;
  line-height: 1;
}

.news-card__date span {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.news-card__body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #1041c6;
  background: #eff6ff;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.news-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link {
  margin-top: auto;
  color: #1041c6;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card__link:hover {
  text-decoration: underline;
}

/* Responsive Refinement */
@media (max-width: 1200px) {
  .institutions-container {
    gap: 30px;
    padding: 0 20px 60px;
  }
  .institutions-sidebar {
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .institutions-container {
    flex-direction: column;
    padding: 0 15px 60px;
  }
  .institutions-sidebar {
    width: 100%;
    gap: 25px;
  }
  .sidebar-brand-card {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
  }
  .sidebar-brand-header {
    display: none;
  }
  .sidebar-brand-content {
    margin-top: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
  .sidebar-brand-logo {
    max-width: 80px;
    margin-bottom: 0;
    padding: 10px;
  }
  .sidebar-menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin-top: 0;
  }
  .sidebar-item {
    border-right: 1px solid #f1f5f9;
  }
}

@media (max-width: 768px) {
  .content-header {
    flex-direction: column;
    gap: 25px;
  }
  .header-text h1 {
    font-size: 26px;
  }
  .subscribe-box {
    width: 100%;
    padding: 20px;
    flex-direction: column;
  }
  .subscribe-input {
    width: 100%;
  }
  .subscribe-btn {
    width: 100%;
  }
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .filter-controls {
    width: 100%;
    flex-direction: column;
  }
  .search-input, .sort-select {
    width: 100%;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .sidebar-menu {
    grid-template-columns: 1fr;
  }
  .sidebar-brand-content {
    flex-direction: column;
    text-align: center;
  }
  .news-card__media {
    height: 180px;
  }
}.careers-page {
  background: #f8fbff;
  min-height: 100vh;
}

/* Hero Section */
.careers-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 2% 80px;
  color: #fff;
  overflow: hidden;
}

.careers-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 20% 50%,
    rgba(16, 65, 198, 0.15),
    transparent
  );
}

.careers-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 96%;
  margin: 0 auto;
}

.careers-hero__text {
  flex: 1;
}

.careers-hero__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.careers-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.careers-hero__title .text-highlight {
  color: #fdb515;
}

.careers-hero__desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 540px;
}

.careers-hero__image-wrap {
  flex: 1;
  position: relative;
}

.careers-hero__image {
  width: 100%;
  max-width: 800px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.careers-hero__info-card {
  position: absolute;
  bottom: -40px;
  right: 0;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  width: 400px;
  color: #1e293b;
}

.info-card__icon {
  font-size: 32px;
  background: #eff6ff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.info-card__body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card__body p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.info-card__link {
  font-size: 13px;
  font-weight: 700;
  color: #1041c6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Categories Section */
.careers-categories {
  padding: 80px 2% 40px;
  max-width: 96%;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.category-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.category-card:hover {
  border-color: #1041c6;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(16, 65, 198, 0.08);
}

.category-card.active {
  background: #1041c6;
  border-color: #1041c6;
  color: #fff;
}

.category-label.active{
  color:white;

}
.category-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.category-card.active .category-icon {
  background: rgba(255, 255, 255, 0.2);
}

.category-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.category-count {
  font-size: 12px;
  color: #64748b;
}

.category-card.active .category-count {
  color: rgba(255, 255, 255, 0.8);
}

.category-card.active .category-label{
  color:white}

/* Job List Section */
.careers-list {
  padding: 40px 2% 100px;
  max-width: 96%;
  margin: 0 auto;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.list-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
}

.open-count {
  font-size: 14px;
  font-weight: 600;
  color: #1041c6;
  background: #eff6ff;
  padding: 6px 14px;
  border-radius: 99px;
}

.jobs-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid transparent;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.job-card.border-blue {
  border-left-color: #3b82f6;
}
.job-card.border-violet {
  border-left-color: #8b5cf6;
}
.job-card.border-green {
  border-left-color: #10b981;
}
.job-card.border-orange {
  border-left-color: #f59e0b;
}

.job-card__main {
  display: flex;
  gap: 24px;
  flex: 1;
}

.job-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.bg-blue {
  background: #eff6ff;
  color: #3b82f6;
}
.bg-violet {
  background: #f5f3ff;
  color: #8b5cf6;
}
.bg-green {
  background: #ecfdf5;
  color: #10b981;
}
.bg-orange {
  background: #fffbeb;
  color: #f59e0b;
}

.job-info {
  flex: 1;
}

.job-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.job-title-row h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}

.job-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.tag-blue {
  background: #dbeafe;
  color: #1e40af;
}
.tag-violet {
  background: #ede9fe;
  color: #5b21b6;
}
.tag-green {
  background: #d1fae5;
  color: #065f46;
}
.tag-orange {
  background: #fef3c7;
  color: #92400e;
}

.job-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
}

.meta-value {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-details {
  padding: 10px 20px;
  border: 1px solid #e2e8f0;
  background: transparent;
  color: #475569;
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.btn-apply {
  padding: 10px 24px;
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-apply.bg-blue {
  background: #1041c6;
}
.btn-apply.bg-violet {
  background: #7c3aed;
}
.btn-apply.bg-green {
  background: #059669;
}
.btn-apply.bg-orange {
  background: #d97706;
}

.btn-bookmark {
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
}

/* CTA Section */
.careers-cta {
  padding: 0 2% 100px;
  max-width: 96%;
  margin: 0 auto;
}

.cta-content {
  background: linear-gradient(135deg, #1041c6 0%, #0f2c72 100%);
  border: 1px solid rgba(253, 181, 21, 0.28);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 16px;
  color: #dbeafe;
  max-width: 440px;
}

.btn-submit-resume {
  background: #fdb515;
  border: 1px solid #fdb515;
  padding: 16px 32px;
  border-radius: 12px;
  color: #0f2c72;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.btn-submit-resume:hover {
  background: #fff;
  border-color: #fff;
  color: #1041c6;
}

.cta-logo {
  width: 140px;
  opacity: 0.18;
}

/* Responsive */
@media (max-width: 1024px) {
  .careers-page {
    background: #f8fbff;
  }

  /* Hero Section */
  .careers-hero {
    padding: 60px 5% 50px;
  }

  .careers-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .careers-hero__title {
    font-size: 44px;
  }

  .careers-hero__desc {
    margin: 0 auto;
    max-width: 100%;
  }

  .careers-hero__image-wrap {
    width: 100%;
  }

  .careers-hero__image {
    max-width: 100%;
  }

  .careers-hero__info-card {
    position: relative;
    bottom: 0;
    margin: 30px auto 0;
    width: 100%;
    max-width: 440px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Categories */
  .careers-categories {
    padding: 50px 5% 30px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .category-card {
    padding: 18px;
  }

  /* Job List */
  .careers-list {
    padding: 30px 5% 80px;
  }

  .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .list-header h2 {
    font-size: 24px;
  }

  .job-card {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 24px;
  }

  .job-card__main {
    flex-direction: column;
    gap: 16px;
  }

  .job-icon {
    width: 56px;
    height: 56px;
  }

  .job-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .job-title-row h3 {
    font-size: 18px;
  }

  .job-meta {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .job-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .btn-details,
  .btn-apply {
    flex: 1;
    min-width: 120px;
  }

  /* CTA Section */
  .careers-cta {
    padding: 0 5% 80px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 24px;
  }

  .cta-text h3 {
    font-size: 28px;
  }

  .cta-text p {
    max-width: 100%;
  }

  .cta-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 40px 5% 35px;
  }

  .careers-hero__content {
    gap: 30px;
  }

  .careers-hero__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .careers-hero__eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .careers-hero__desc {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .careers-hero__image {
    border-radius: 16px;
  }

  .careers-hero__info-card {
    padding: 20px;
    margin-top: 20px;
    width: 100%;
  }

  .info-card__icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
  }

  .info-card__body h4 {
    font-size: 16px;
  }

  .info-card__body p {
    font-size: 13px;
  }

  /* Categories */
  .careers-categories {
    padding: 35px 5% 25px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 16px;
    gap: 12px;
  }

  .category-icon {
    font-size: 20px;
    width: 44px;
    height: 44px;
  }

  .category-label {
    font-size: 13px;
  }

  .category-count {
    font-size: 11px;
  }

  /* Job List */
  .careers-list {
    padding: 25px 5% 60px;
  }

  .list-header h2 {
    font-size: 20px;
  }

  .list-header {
    margin-bottom: 20px;
  }

  .jobs-container {
    gap: 16px;
  }

  .job-card {
    padding: 18px;
    gap: 16px;
  }

  .job-card__main {
    gap: 12px;
  }

  .job-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .job-title-row h3 {
    font-size: 16px;
  }

  .job-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  .job-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .meta-label {
    font-size: 10px;
  }

  .meta-value {
    font-size: 13px;
  }

  .job-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-details,
  .btn-apply,
  .btn-bookmark {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    justify-content: center;
  }

  .btn-bookmark {
    width: auto;
  }

  /* CTA Section */
  .careers-cta {
    padding: 0 5% 60px;
  }

  .cta-content {
    padding: 30px 20px;
    gap: 20px;
  }

  .cta-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .btn-submit-resume {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 30px 4% 25px;
  }

  .careers-hero__title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .careers-hero__desc {
    font-size: 13px;
  }

  .careers-hero__image-wrap {
    position: relative;
    min-height: 280px;
  }

  .careers-hero__image {
    width: 100%;
    border-radius: 12px;
  }

  .careers-hero__info-card {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 16px;
    margin: 20px 0 0;
  }

  /* Categories */
  .careers-categories {
    padding: 30px 4% 20px;
    margin-top: 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-card {
    padding: 14px;
    border-radius: 12px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .category-label {
    font-size: 12px;
    font-weight: 600;
  }

  .category-count {
    font-size: 10px;
  }

  /* Job List */
  .careers-list {
    padding: 20px 4% 50px;
  }

  .list-header {
    margin-bottom: 18px;
  }

  .list-header h2 {
    font-size: 18px;
  }

  .open-count {
    font-size: 12px;
    padding: 5px 10px;
  }

  .job-card {
    padding: 16px;
    gap: 14px;
    border-radius: 12px;
  }

  .job-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .job-title-row {
    gap: 6px;
    margin-bottom: 12px;
  }

  .job-title-row h3 {
    font-size: 15px;
  }

  .job-tag {
    font-size: 9px;
    padding: 2px 6px;
  }

  .job-meta {
    gap: 10px;
  }

  .meta-label {
    font-size: 9px;
  }

  .meta-value {
    font-size: 12px;
  }

  .job-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn-details,
  .btn-apply {
    width: 100%;
    padding: 11px 12px;
    font-size: 12px;
    border-radius: 6px;
  }

  .btn-bookmark {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  /* CTA Section */
  .careers-cta {
    padding: 0 4% 50px;
  }

  .cta-content {
    padding: 24px 16px;
    border-radius: 16px;
    gap: 16px;
  }

  .cta-text h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .cta-text p {
    font-size: 13px;
  }

  .btn-submit-resume {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 8px;
  }

  .btn-submit-resume .icon {
    font-size: 16px;
  }
}

/* Job Details Modal */
.job-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.job-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.2s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.job-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid #e2e8f0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-modal__close:hover {
  background: #f1f5f9;
}

.job-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.job-modal__title {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.job-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: #f8fbff;
  border-radius: 12px;
}

.job-modal__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-modal__footer {
  display: flex;
}
.event-detail {
  background: #f8fbff;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.event-detail__container {
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Main Content Area */
.event-detail__main {
  background: #fff;
  border-radius: 24px;
  padding: 0 0 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.event-hero__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.8 / 1;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.event-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero__date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-width: 70px;
}

.event-hero__date-day {
  font-size: 1.8rem;
  font-weight: 800;
  color: #162341;
  line-height: 1;
}

.event-hero__date-month {
  font-size: 0.9rem;
  font-weight: 700;
  color: #5f6785;
  text-transform: uppercase;
}

.event-hero__category {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1041c6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(16, 65, 198, 0.2);
}

/* Header Content */
.event-header {
  padding: 0 40px;
  margin-bottom: 40px;
}

.event-header__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #162341;
  line-height: 1.2;
  margin-bottom: 20px;
}

.event-header__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5f6785;
  font-weight: 500;
}

.event-meta-item svg {
  color: #1041c6;
}

.event-header__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.share-label {
  font-size: 12px;
  font-weight: 700;
  color: #8a9bbf;
  text-transform: uppercase;
}

.share-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: transform 0.2s;
}

.share-icon:hover {
  transform: translateY(-2px);
}

.share-icon--fb { background: #1877f2; }
.share-icon--tw { background: #1da1f2; }
.share-icon--in { background: #0077b5; }
.share-icon--link { background: #64748b; }

/* Summary Box */
.event-summary-box {
  background: #f0f7ff;
  border: 1px solid #e0eeff;
  border-radius: 16px;
  padding: 32px;
  margin: 0 40px 40px;
}

.event-summary-box__text {
  font-size: 1rem;
  color: #162341;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
}

.event-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.event-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1041c6;
  box-shadow: 0 4px 12px rgba(16, 65, 198, 0.08);
}

.event-feature__title {
  font-size: 11px;
  font-weight: 700;
  color: #5f6785;
  line-height: 1.4;
}

/* Article Content */
.event-article {
  padding: 0 40px;
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
}

.event-article p {
  margin-bottom: 20px;
}

/* Sidebar */
.event-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
}

.sidebar-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #162341;
}

.view-all-link {
  font-size: 12px;
  font-weight: 700;
  color: #1041c6;
  text-decoration: none;
}

/* Upcoming Events */
.upcoming-event {
  display: flex;
  gap: 16px;
  padding: 14px 0;
}

.upcoming-event:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.upcoming-event__date {
  background: #f8faff;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  min-width: 60px;
}

.upcoming-event__day {
  font-size: 1.25rem;
  font-weight: 800;
  color: #162341;
  display: block;
}

.upcoming-event__month {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a9bbf;
  text-transform: uppercase;
}

.upcoming-event__info {
  flex: 1;
}

.upcoming-event__title {
  font-size: 13px;
  font-weight: 700;
  color: #162341;
  margin-bottom: 6px;
  line-height: 1.4;
}

.upcoming-event__location {
  font-size: 11px;
  color: #8a9bbf;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.category-item {
  background: #f8faff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.category-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.category-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.category-label {
  font-size: 12px;
  font-weight: 700;
  color: #162341;
}

/* Responsive */
@media (max-width: 1200px) {
  .event-detail__container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .event-detail__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .event-detail {
    padding-top: 100px;
  }
  .event-header__title {
    font-size: 1.8rem;
  }
  .event-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .event-detail {
    padding-top: 20px;
  }
  .event-detail__sidebar {
    grid-template-columns: 1fr;
  }
  .event-hero__image-wrap {
    aspect-ratio: 16 / 9;
  }
  .event-header {
    padding: 0 20px;
  }
  .event-header__meta {
    gap: 15px;
  }
  .event-header__share {
    width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
  }
  .event-summary-box {
    margin: 0 20px 30px;
    padding: 24px;
  }
  .event-article {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .event-detail {
    padding-top: 10px;
  }
  .event-detail__container {
    padding: 0 10px;
  }
  .event-header__title {
    font-size: 1.5rem;
  }
  .event-features {
    grid-template-columns: 1fr;
  }
  .event-hero__image-wrap {
    aspect-ratio: 4 / 3;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-primary);
}

/* Tooltip Styles */
.chatbot-tooltip {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  padding: 12px 18px 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  margin-right: 15px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  border: 1px solid rgba(0,0,0,0.04);
}

.chatbot-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--color-white) transparent transparent transparent;
  display: block;
  width: 0;
}

.tooltip-close {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.tooltip-close:hover {
  color: #ffae00;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Toggle Button with Pulse */
.chatbot-toggle-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 65, 198, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.chatbot-toggle-btn svg {
  z-index: 2;
}

.chatbot-toggle-btn.active {
  transform: rotate(90deg);
  background: var(--color-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chatbot-toggle-btn:hover:not(.active) {
  transform: scale(1.1);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  background-color: var(--color-primary);
  opacity: 0.6;
  animation: pulse 2s ease-out infinite;
}

.chatbot-toggle-btn.active .pulse-ring {
  display: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  80% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Chat Window */
.chatbot-window {
  width: 360px;
  height: 500px;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0,0,0,0.05);
  animation: slideUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  transform-origin: bottom right;
}

@keyframes slideUp {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Header */
.chatbot-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chatbot-avatar-icon {
  display: flex;
  width: 100%;
  height: 100%;
}

.chatbot-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chatbot-header-text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.status-indicator {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-indicator::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  transition: color 0.2s, transform 0.2s;
}

.close-btn:hover {
  color: #ffae00;
  transform: scale(1.1);
}

/* Messages Area */
.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f8fbff; /* Match website subtle background */
}

.chatbot-date-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.chatbot-date-divider span {
  background-color: rgba(0,0,0,0.05);
  color: #666;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.message-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.message-wrapper.user {
  justify-content: flex-end;
}

.message-avatar {
  width: 28px;
  height: 28px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.message.bot {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px 16px 16px 4px;
}

.message.user {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border-radius: 16px 16px 4px 16px;
}

.message p {
  margin: 0;
}

/* Chatbot Options/Buttons */
.chatbot-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 36px; /* Align with bot message, accounting for avatar */
  margin-top: -8px;
  margin-bottom: 4px;
}

.chatbot-option-btn {
  background-color: transparent;
  color: #f6b435; /* Lighter orange/yellow accent */
  border: 1.5px solid #f6b435;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-primary);
}

.chatbot-option-btn:hover {
  background-color: #f6b435;
  color: var(--color-white);
}

/* Input Area */
.chatbot-input {
  display: flex;
  padding: 16px;
  background-color: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #f9f9f9;
}

.chatbot-input input:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(16, 65, 198, 0.1);
}

.send-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(16, 65, 198, 0.2);
}

.send-btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(16, 65, 198, 0.3);
}

.send-btn svg {
  margin-left: -2px;
  margin-top: 1px;
}

/* Responsive styles for Chatbot */
@media (max-width: 576px) {
  .chatbot-container {
    bottom: 16px;
    right: 16px;
  }
  
  .chatbot-window {
    width: calc(100vw - 32px);
    height: calc(100vh - 110px);
    max-height: 480px;
    margin-bottom: 16px;
    border-radius: 14px;
  }
  
  .chatbot-toggle-btn {
    width: 54px;
    height: 54px;
  }
  
  .chatbot-tooltip {
    margin-right: 8px;
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 16px;
  }
  
  .chatbot-messages {
    padding: 16px;
    gap: 12px;
  }
  
  .message {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .chatbot-options {
    padding-left: 32px;
    gap: 6px;
  }
  
  .chatbot-option-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .chatbot-input {
    padding: 12px;
    gap: 8px;
  }
  
  .chatbot-input input {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .send-btn {
    width: 38px;
    height: 38px;
  }
}

/* Ultra small screens */
@media (max-width: 360px) {
  .chatbot-container {
    bottom: 12px;
    right: 12px;
  }
  
  .chatbot-window {
    width: calc(100vw - 24px);
    height: calc(100vh - 90px);
    max-height: 440px;
    margin-bottom: 12px;
  }
  
  .chatbot-tooltip {
    font-size: 12px;
    padding: 8px 12px;
    margin-bottom: 12px;
  }
}
