:root {
  --highlight-color: #f6b707;
  --htext: #fff;
  --hmuted: #6b7280;
  --hborder: #e5e7eb;

  --topBg: #f6f7f8;
  --menuBg: #ffffff;

  --maxH: 110px;
  /* total header height normal */
  --compactH: 72px;
  /* total header height compact */
  --topH: 38px;
  /* top micro row height */
  --navH: 72px;
  /* nav row height (normal) */
  --radius: 14px;
  --bg: #335862;
        --bg2: #2a4a53;
        --text: #fff;
        --muted: rgba(255, 255, 255, .78);
        --border: rgba(255, 255, 255, .14);
        --card: rgba(255, 255, 255, .08);
        --accent: #ff3158;
        --link: #f3ce68;
        --shadow: 0 12px 30px rgba(0, 0, 0, .22);
        --r: 14px;
}


/* Spacer keeps page content from jumping when header is fixed */
.hcHeaderSpacer {
  height: var(--maxH);
}

/* Fixed header (no jitter) */
.hcHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;

  background: var(--menuBg);
  /* border-bottom: 1px solid var(--hborder); */

  height: var(--maxH);
  transition: height .22s ease, box-shadow .22s ease;
  will-change: height;
}

/* shadow after scroll */
.hcHeader.isCompact {
  height: var(--compactH);
  box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
}

/* container */
.hcWrap {
  /* max-width: 1320px; */
  margin: 0 auto;
  /* padding: 0 18px; */
}

/* two rows inside header */
.hcInner {
  height: 100%;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  grid-template-rows: var(--topH) 1fr;
  /* column-gap: 18px; */
  align-items: center;
  position: relative;
}


/* left logo spans both rows (NORMAL) */
.hcLogo {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: 0px auto;
}

.hcLogo img {
  height: 60px;
  width: auto;
  display: block;
}

/* top micro bar (row 1, right side) */
.hcTopRow {
  grid-column: 2 / span 2;
  grid-row: 1;

  height: var(--topH);
  background: #cd2029;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 14px;

  transition: opacity .18s ease;
  will-change: opacity;
}


/* Contact details (left side) */
.hcContact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hcContact li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--htext);
  text-decoration: none;
}

.hcContact li a i {
  font-size: 14px;
  color: var(--highlight-color);
}

.hcContact li a:hover {
  color: var(--highlight-color);
}


/* micro right */
.hcTopRight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hcSocial {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 6px;
}

.hcSocial a {
  font-size: 14px;
  color: var(--htext);
  transition: color .15s ease;
}

.hcSocial a:hover {
  color: var(--highlight-color);
}

/* actions/buttons */
.hcBtn {
  height: 30px;
  padding: 0 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.hcBtnOutline {
  color: #ffff;
  border-color: rgba(31, 143, 90, .55);
  background: rgba(31, 143, 90, .03);
}

.hcBtnOutline:hover {
  background: rgba(31, 143, 90, .08);
}

.hcBtnSolid {
  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 208, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #001a23, #002935);
  color: #fff;
  border-color: var(--highlight-color);
  /* box-shadow: 0 8px 18px rgba(31, 143, 90, .18); */
}

.hcBtnSolid:hover {
  filter: brightness(.96);
}

/* nav row (row 2 center) */
.hcNavRow {
  grid-column: 2;
  grid-row: 2;
  height: var(--navH);
  /* border-left: 1px solid var(--hborder); */
  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #001a23, #002935);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 14px;
  white-space: nowrap;
}

/* right actions row 2 */
.hcRightRow {
  grid-column: 3;
  grid-row: 2;

  height: var(--navH);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* nav link */
.hcLink {
  position: relative;
  text-decoration: none;
  color: var(--htext);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 2px;
  transition: color .15s ease;
}

.hcLink:hover {
  color: var(--highlight-color);
}

.hcLink.isActive {
  color: var(--highlight-color);
}

.hcLink.isActive::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  border-radius: 3px;
  background: var(--highlight-color);
}

/* ======================
   ✅ COMPACT FIX (LOGO + NAV ALIGN PERFECT)
   ====================== */

/* collapse top row to 0 (NO translate needed) */
.hcHeader.isCompact .hcInner {
  grid-template-rows: 0 1fr;
  column-gap: 18px;
}

/* hide top row cleanly */
.hcHeader.isCompact .hcTopRow {
  height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* logo should NOT span two rows in compact */
.hcHeader.isCompact .hcLogo {
  grid-row: 2;
  /* only main row */
  align-self: center;
}

/* keep nav and right actions aligned */
.hcHeader.isCompact .hcNavRow,
.hcHeader.isCompact .hcRightRow {
  height: 100%;
  align-items: center;
}

/* optional: slightly smaller logo in compact */
.hcHeader.isCompact .hcLogo img {
  height: 40px;
}

/* ======================
   DESKTOP DROPDOWN
   ====================== */


.hcDrop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hcDropBtn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 2px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--htext);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.hcDropBtn:hover {
  color: var(--highlight-color);
}

.hcChevron {
  font-size: 12px;
  opacity: .7;
  transition: transform .15s ease;
}

.hcDrop.isOpen .hcChevron {
  transform: rotate(180deg);
}

/* base dropdown panel */
.hcDropMenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);

  background: #fff;
  border: 1px solid var(--hborder);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(17, 24, 39, .10);

  display: none;
  overflow: visible;
  padding: 10px;
}

/* open by click */
.hcDrop.isOpen .hcDropMenu {
  display: grid;
}

/* open by hover also (works with click too) */
.hcDrop:hover .hcDropMenu {
  display: grid;
}

/* mega sizing + grid */
/* .hcDropMenuMega {
  width: min(1100px, calc(100vw - 40px));
  padding: 14px;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 12px;
} */

.hcDropItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #002935;
  font-weight: 650;
  font-size: 14px;
}

.hcDropItem:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}

/* each column */
.hcDropCol {
  position: relative;
  border-radius: 14px;
  padding: 3px;
}

.hcDropCol:hover {
  background: rgba(0, 0, 0, .03);
}

/* third-level flyout */
.hcDropSub {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 10px;

  background: #fff;
  border: 1px solid var(--hborder);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 24, 39, .10);

  padding: 10px;
  display: none;
  z-index: 9999;

  min-width: 320px;
  /* ✅ not fixed width, only minimum */
  max-width: 460px;
  /* ✅ prevent too huge */
  white-space: normal;
  /* ✅ allow wrap */
  overflow: visible;
  /* ✅ no clipping */
}


.hcDropCol:hover .hcDropSub,
.hcDropSub:hover {
  display: grid;
  /* gap: 8px; */
}

.hcDropLeaf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* pushes arrow to right */
  gap: 14px;
  /* space between text & arrow */
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #002935;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  white-space: normal;
}

.hcDropLeaf:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}

.hcDropLeafChild {
  margin-top: 6px;
  display: grid;
  gap: 6px;
  padding-left: 10px;
  border-left: 2px solid rgba(0, 0, 0, .08);
}

.hcDropLeafChildLink {
  text-decoration: none;
  color: #002935;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.hcDropLeafChildLink:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}

/* ======================
   MOBILE
   ====================== */
.hcMenuBtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 208, 0.14), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.20), transparent 55%),
    linear-gradient(180deg, #001a23, #002935);
  box-shadow: 0 10px 22px rgba(17, 24, 39, .16);
  color: #fff;

  display: none;
  /* stays desktop hidden */
  align-items: center;
  justify-content: center;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.hcMenuBtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hcMenuBtn:active {
  transform: translateY(0);
}

/* The 3 lines */
.hcMenuBtn span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: .95;
}

/* top / middle / bottom */
.hcMenuBtn span:nth-child(1) {
  top: 14px;
}

.hcMenuBtn span:nth-child(2) {
  top: 21px;
  width: 16px;
  opacity: .85;
}

.hcMenuBtn span:nth-child(3) {
  top: 28px;
}




/* bottom sheet */
.hcSheetWrap {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.hcSheetWrap.open {
  pointer-events: auto;
  opacity: 1;
}

.hcBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.hcSheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  background: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -18px 40px rgba(17, 24, 39, .12);

  transform: translateY(102%);
  transition: transform .22s ease;
  padding: 14px 14px 18px;
}

.hcSheetWrap.open .hcSheet {
  transform: translateY(0);
}

.hcSheetHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 12px;
}

.hcSheetTitle {
  font-weight: 900;
  color: var(--htext);
}

.hcClose {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--hborder);
  background: #fff;
  cursor: pointer;
}

/* mobile list */
.hcMList {
  display: grid;
  gap: 10px;
}

.hcMItem {
  border: 1px solid var(--hborder);
  border-radius: 14px;
  overflow: hidden;
}

.hcMBtn {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 850;
  color: var(--htext);
}

.hcMSub {
  display: none;
  padding: 0 10px 10px;
}

.hcMItem.open .hcMSub {
  display: grid;
  gap: 8px;
}

.hcMSub a {
  text-decoration: none;
  color: var(--htext);
  font-weight: 650;
  padding: 10px 10px;
  border-radius: 12px;
  background: #f9fafb;
}

.hcMSub a:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}

.hcSheetBottom {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.hcSheetCTA {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  background: var(--highlight-color);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(31, 143, 90, .18);
}

.hcMiniContact {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hcMiniContact a {
  color: var(--hmuted);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}


@media (max-width: 1399px) {
  .hcInner {
    grid-template-columns: 200px 1fr auto;
  }
}

@media (max-width: 1299px) {
  .hcInner {
    grid-template-columns: 170px 1fr auto;
  }
}

@media (max-width: 1199px) {
  .hcInner {
    grid-template-columns: 120px 1fr auto;
  }


  .hcNavRow {
    gap: 4px;
  }
}


/* breakpoints */
@media (max-width: 999px) {
  .hcInner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
  }

  .hcLogo {
    align-items: left;
    margin-left: 20px;
  }

  .hcTopRow {
    display: none;
  }

  .hcNavRow {
    display: none;
  }

  .hcRightRow {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
  }

  .hcHeader {
    height: 72px;
  }

  .hcHeaderSpacer {
    height: 72px;
  }

  .hcMenuBtn {
    display: inline-flex;
  }
}


/* ===== Mobile full screen sheet (like your screenshot) ===== */
/* ===== Mobile full screen sheet ===== */
.hcSheetFull {
  height: 90vh;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Mobile top bar */
.hcMobileTopBar {
  height: 64px;
  background: #003d49;
  color: #fff;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  padding: 0 8px;
}

.hcMobileTitle {
  font-weight: 900;
  font-size: 18px;
  text-align: left;
}

.hcBackBtn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hcCloseWhite {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* Sliding panels */
.hcPanels {
  position: relative;
  flex: 1;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #001a23, #002935);
}

.hcPanel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  transition: transform .22s ease;
}

.hcPanelMain {
  transform: translateX(0);
}

.hcPanelSub {
  transform: translateX(100%);
}

.hcPanels.isSub .hcPanelMain {
  transform: translateX(-100%);
}

.hcPanels.isSub .hcPanelSub {
  transform: translateX(0);
}

/* Menu row */
.hcMobileList {
  display: grid;
}

.hcMobileRow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 18px 18px;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;

  font-size: 18px;
  font-weight: 800;
  color: #fff;

  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hcMobileBottom {
  padding: 14px;
  background: #fff;
  border-top: 1px solid var(--hborder, #e5e7eb);
}

/* Make sure old accordion styles don't break slide menu */
@media (max-width: 999px) {
  .hcMList {
    display: none;
  }

  .hcSheetHead {
    display: none;
  }
}

/* Compact apply for DESKTOP only */
.hcCompactApply {
  display: none;
}

.hcCompactApply.show {
  display: inline-flex;
}

/* Hide compact apply on mobile (because sheet button exists) */
@media (max-width: 999px) {
  .hcCompactApply {
    display: none !important;
  }
}




/* each column */
.hcDropCol {
  position: relative;
  border-radius: 14px;
  padding: 3px;
}

.hcDropCol:hover {
  background: rgba(0, 0, 0, .03);
}

/* third-level flyout */
.hcDropSub {
  position: absolute;
  top: 6px;
  left: calc(100% + 0px);
  width: 100%;
  background: #fff;
  border: 1px solid var(--hborder);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 24, 39, .10);
  display: none;
  z-index: 50;
  text-align: left;
}

.hcDropCol:hover .hcDropSub,
.hcDropCol:focus-within .hcDropSub,
.hcDropSub:hover {
  display: grid;
  /* gap: 8px; */
}

.hcLeafWrap:hover .hcLeafSub,
.hcLeafSub:hover {
  display: grid;
}

.hcDropLeaf {
  display: flex;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #002935;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  white-space: normal;
  /* ✅ wrap */
  word-break: break-word;
  /* ✅ long words */
}


.hcDropLeaf:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}

.hcDropLeafChild {
  margin-top: 6px;
  display: grid;
  gap: 6px;
  padding-left: 10px;
  border-left: 2px solid rgba(0, 0, 0, .08);
}

.hcDropLeafChildLink {
  text-decoration: none;
  color: #002935;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.hcDropLeafChildLink:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}

/* leaf wrapper inside the 2nd-level flyout */
.hcLeafWrap {
  position: relative;
}

/* 4th level flyout (Doctorate -> ED/DBA) */
.hcLeafSub {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--hborder);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 24, 39, .10);
  padding: 10px;
  display: none;
  z-index: 99999;
}

.hcLeafWrap.hasLeafSub:hover .hcLeafSub {
  display: grid;
  gap: 8px;
}

.hcLeafSubLink {
  text-decoration: none;
  color: #002935;
  font-weight: 650;
  padding: 10px 10px;
  border-radius: 12px;
}

.hcLeafSubLink:hover {
  background: rgba(31, 143, 90, .08);
  color: var(--highlight-color);
}


.hcDropMenu {
  top: 100%;
  margin-top: 0;
}

.hcDropSub {
  margin-left: 0;
}

.hcLeafSub {
  left: 100%;
}


@media (max-width: 999px) {

  .hcInner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    align-items: center;
  }

  /* ✅ stop desktop spanning + auto centering */
  .hcLogo {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    justify-self: start;
    padding-left: 16px;
  }

  .hcRightRow {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    padding-right: 16px;
    /* ✅ gives nice right space */
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  /* ✅ keep same behavior after scroll */
  .hcHeader.isCompact .hcLogo {
    grid-row: 1;
  }

  .hcHeader.isCompact .hcRightRow {
    height: 100%;
    align-items: center;
  }
}

@media (max-width: 999px) {

  /* force single-row layout always on mobile (even compact) */
  .hcInner,
  .hcHeader.isCompact .hcInner {
    grid-template-columns: 1fr auto !important;
    grid-template-rows: 1fr !important;
    align-items: center !important;
  }

  /* logo always in row 1 */
  .hcLogo,
  .hcHeader.isCompact .hcLogo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    justify-self: start;
    align-self: center;
    padding-left: 16px;
  }

  /* right row always in row 1 */
  .hcRightRow,
  .hcHeader.isCompact .hcRightRow {
    grid-column: 2 !important;
    grid-row: 1 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding-right: 16px;
  }

  /* optional: prevent logo from being too tall */
  .hcLogo img {
    height: 46px;
    object-fit: contain;
  }

  .hcHeader.isCompact .hcLogo img {
    height: 42px;
  }
}

/* ===============================
   Professional Small EMBA Button
================================ */

.embaLaunchBtn {
  position: relative;
  display: inline-flex;
  width: 112px;
  height: 48px;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.22s ease, filter 0.22s ease;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.22));
}

.embaLaunchBtn:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.28));
}

/* Desktop spacing */
.embaDesktopBtn {
  margin-left: 12px;
}

/* Hide mobile button on desktop */
.embaMobileBtn {
  display: none;
}

/* Top White NEW LAUNCH Label */
.embaLaunchTag {
  position: absolute;
  top: 0;
  left: 2px;
  width: 90px;
  height: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
  color: #101827;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 1.25px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px 4px 4px 13px;
  z-index: 5;
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 3px 7px rgba(0, 0, 0, 0.18);
}

.embaLaunchTag::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
  transform: skewX(-22deg);
  border-radius: 0 4px 4px 0;
  z-index: -1;
}

/* Red Back Layer */
.embaLaunchBtn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 95px;
  height: 42px;
  background: #002935;
  clip-path: polygon(9% 0, 100% 0, 89% 100%, 0 100%);
  transform: translate(5px, -3px);
  z-index: 1;
}

/* Main Red EMBA Shape */
.embaLaunchMain {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 102px;
  height: 33px;
  background: linear-gradient(135deg, #d41627 0%, #a80013 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  clip-path: polygon(8% 0, 100% 0, 90% 100%, 0 100%);
  z-index: 3;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
}

/* Soft shine */
.embaLaunchMain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.18) 50%,
      transparent 62%,
      transparent 100%);
  transform: translateX(-120%);
  animation: embaShine 3s ease-in-out infinite;
}

@keyframes embaShine {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

/* ===============================
   Mobile
================================ */
@media (max-width: 999px) {
  .embaDesktopBtn {
    display: none;
  }

  .embaMobileBtn {
    display: inline-flex;
    margin-left: 0;
    margin-right: 8px;
  }

  .embaLaunchBtn {
    width: 90px;
    height: 40px;
    filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.2));
  }

  .embaLaunchTag {
    width: 74px;
    height: 16px;
    font-size: 7px;
    letter-spacing: 0.85px;
    border-radius: 10px 3px 3px 10px;
  }

  .embaLaunchTag::after {
    right: -8px;
    width: 15px;
    height: 16px;
  }

  .embaLaunchMain {
    width: 82px;
    height: 28px;
    font-size: 17px;
    letter-spacing: 1.4px;
    padding-top: 4px;
  }

  .embaLaunchBtn::after {
    width: 77px;
    height: 27px;
    bottom: 2px;
    transform: translate(4px, -3px);
    background: #6f000b;
  }

}
.froot {
        background: var(--bg);
        color: var(--text);
    }

    .fwrap {
        width: min(1320px, 100% - 32px);
        margin: 0 auto;
        /* max-width: 1320px; */
    }

    .ftop {
        background: linear-gradient(180deg, var(--bg), var(--bg2));
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
    }

    .ftop__row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .ftop__brand {
        font-weight: 900;
        font-size: 18px;
    }

    .ftop__tag {
        margin-top: 4px;
        font-size: 13px;
        color: var(--muted);
    }

    .ftop__cta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
    }

    .fbtn {
        border: 1px solid var(--border);
        background: transparent;
        color: var(--link);
        padding: 5px 13px;
        /* border-radius:999px; */
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: transform .15s, background .15s, border .15s;
    }

    .ftbtn {
        border: 1px solid var(--border);
        background: transparent;
        color: #fff;
        padding: 9px 13px;
        /* border-radius:999px; */
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: transform .15s, background .15s, border .15s;
    }

    .fbtn:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, .08);
        border-color: rgba(255, 255, 255, .22);
    }

    .fbtn--primary {
        background: var(--accent);
        border-color: var(--accent);
    }

    .fbtn--primary:hover {
        background: #ff2a52;
    }

    .fbtn--icon {
        width: 38px;
        height: 38px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .fmain {
        padding: 22px 0 18px;
    }

    .fgrid {
        display: grid;
        grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
        gap: 16px;
        align-items: start;
    }

    .fsec__title {
        font-weight: 950;
        font-size: 15px;
        margin: 0 0 10px;
    }

    .fsec__title::after {
        content: "";
        display: block;
        width: 34px;
        height: 2px;
        background: var(--accent);
        margin-top: 8px;
        border-radius: 2px;
    }

    .fcard {

        text-align: start;
        padding: 14px;

    }

    .flabel {
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .4px;
        opacity: .9;
        margin-bottom: 6px;
    }

    .flabel2 {
        font-size: 12px;
        font-weight: 900;
        opacity: .9;
        margin-bottom: 6px;
    }

    .fmuted {
        color: var(--muted);
    }

    .fstrong {
        font-weight: 950;
    }

    .fsp8 {
        margin-top: 8px;
    }

    .fsp12 {
        margin-top: 12px;
    }

    .fdivider {
        height: 1px;
        background: var(--border);
        margin: 12px 0;
    }

    .flink {
        color: var(--link);
        text-decoration: none;
        display: block;
        padding: 4px 0;
    }

    .flink:hover {
        color: var(--accent);
    }

    .falert {
        margin-top: 12px;
        display: block;
        /* padding: 10px 12px;
        border-radius: 10px;
        background: rgba(255, 49, 88, .14);
        border: 1px solid rgba(255, 49, 88, .35); */
        color: #fff;
        text-decoration: none;
        font-weight: 900;
        font-size: 13px;
    }

    .flist {
        display: block;
    }

    .frowBtns {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .flogoRow {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .flogoBox {
        background: rgba(255, 255, 255, .92);
        padding: 10px;
        border-radius: 14px;
        display: inline-flex;
    }

    .flogo {
        width: 150px;
        height: auto;
        display: block;
    }

    .fbadgeBox {
        background: rgba(255, 255, 255, .92);
        padding: 5px;
        border-radius: 3px;
        display: inline-flex;
    }

    .fbadge {
        width: 70px;
        height: auto;
        display: block;
    }

    .fsocial {
        margin-top: 14px;
        display: flex;
        gap: 10px;
    }

    .fsocial a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, .10);
        border: 1px solid var(--border);
        color: #fff;
        text-decoration: none;
    }

    .fsocial a:hover {
        background: rgba(255, 255, 255, .16);
        transform: translateY(-1px);
    }

    .flist2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .fbottom {
        border-top: 1px solid var(--border);
        background: #26454d;
        padding: 14px 0;
    }

    .fbottom__row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .fcopy {
        color: rgba(255, 255, 255, .8);
        font-weight: 800;
        font-size: 14px;
        text-align: center;
    }

    .fcopy small{
        color: rgba(255, 255, 255, .8);
        font-weight: 300;
        font-size: 12px;
        text-align: center;
    }

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

    /* Drawer */
    .fdrawer {
        position: fixed;
        inset: 0;
        z-index: 9999;
    }

    .fdrawer__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .55);
    }

    .fdrawer__panel {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: min(520px, 92vw);
        background: #1f3d45;
        border-left: 1px solid rgba(255, 255, 255, .12);
        box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
        display: flex;
        flex-direction: column;
    }

    .fdrawer__head {
        padding: 14px 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .fdrawer__title {
        font-weight: 950;
        font-size: 16px;
    }

    .fdrawer__body {
        padding: 14px;
        overflow: auto;
    }

    .fsearchHint {
        font-size: 13px;
        color: rgba(255, 255, 255, .75);
        margin-bottom: 10px;
    }

    .fdrawerList {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .fdrawerLink {
        display: block;
        padding: 2px 12px;
        border-radius: 12px;
        /* background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10); */
        color: var(--link);
        text-decoration: none;
        text-align: left;
        font-weight: 85;
        grid-column: 1 / -1;
    }

    .fdrawerLink:hover {
        color: #fff;
        border-color: rgba(255, 49, 88, .35);
        background: rgba(255, 49, 88, .12);
    }



    .fprogSection {
        margin-bottom: 18px;
    }

    .fprogTitle {
        font-weight: 950;
        font-size: 14px;
        letter-spacing: .2px;
        color: #fff;
        margin: 6px 0 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        text-align: start;
    }

    .fprogTitle .fprogTitleLink {
        font-size: 16px;
        font-weight: 900;
        text-align: start;
        color:#646cff;
    }

    .fdrawerHeading {
        grid-column: 1 / -1;
        /* full width inside 2-col grid */
        margin-top: 6px;
    }

    .fdrawerHeadingLink {
        display: block;
        padding: 5px 12px;
        font-weight: 650;
        color: #fff;
        text-decoration: none;
        background: rgba(255, 49, 88, .14);
        /* border: 1px solid rgba(255, 49, 88, .35); */
        text-align: start;

    }

    .fdrawerHeadingLink:hover {
        background: rgba(255, 49, 88, .22);
    }

    @media (max-width: 991px) {
        .ftop__row {
            flex-direction: column;
            align-items: flex-start;
        }

        .ftop__cta {
            justify-content: center;
        }

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

        .fbottom__row {
            flex-direction: column;

        }

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

        .flogoRow {
            justify-content: center;
        }

        .fsocial {
            justify-content: center;
        }
    }



    /* subtitle under section title */
    .fsec__subtitle {
        font-size: 12px;
        color: rgba(255, 255, 255, .75);
        margin: -4px 0 10px;
    }

    /* stack buttons nicely */
    .frowBtns--stack {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* make drawer list 2-column when needed */
    .fdrawerList--two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* gap: 10px; */
    }

    @media (max-width: 767px) {
        .fdrawerList--two {
            grid-template-columns: 1fr;
        }
    }


    /* buttons in 2 columns */
    .fbtnGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .fbtnGrid .fbtn{
        width: 100%;
        justify-content: center;
    }

    .fbtnGrid a.fbtn {
        width: 100%;
        justify-content: center;
        text-align:center;
    }

    /* mobile: one column buttons */
    @media (max-width: 767px) {
        .fbtnGrid {
            grid-template-columns: 1fr 1fr;
        }
        .ftop__row{
            align-items: center;
        }
        .fbtn_none{
            display: none;
        }
    }

    .ficon {
        margin-right: 8px;
        font-size: 16px;
        vertical-align: middle;
        opacity: 0.85;
    }

    .flabel .ficon {
        opacity: 0.95;
    }

    .falert .ficon {
        color: #ff3158;
    }

    .tp-widget-wrapper {
        text-align: left !important;
    }

    .tp-widget-wrapper a, .tp-widget-wrapper #wrapper-company-stars{
        width: 100%;
        outline: none;
        position: relative;
    }









    /* ================================
      FAQ – Transparent Background Fix
    ================================ */

    /* container stays clean */
    .ffaq {
        display: grid;
        gap: 8px;
        padding: 4px 2px;
    }


    .ffaq__item {
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 14px;
        background: rgba(255, 255, 255, .06);
        padding: 10px 12px;
        /* margin-bottom: 10px; */
        text-align: left;
    }

    .ffaq__q {
        cursor: pointer;
        font-size: 15px;
        font-weight: 300;
        color: var(--link);
    }

    .ffaq__a {
        margin-top: 10px;
        color: rgba(255, 255, 255, .78);
        line-height: 1.55;
        font-size: 14px;
        font-weight: 200;
    }

    /* each item: transparent glass style */
    .ffaq__item {
        background: transparent;
        /* 🔥 removed white */
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: none;
        /* cleaner inside drawer */
        backdrop-filter: blur(6px);
        /* subtle premium glass */
        -webkit-backdrop-filter: blur(6px);
    }

    /* hover – very subtle */
    .ffaq__item:hover {
        border-color: rgba(255, 255, 255, 0.28);
    }

    /* summary header */
    .ffaq__q {
        background: transparent;
        /* 🔥 transparent */
        color: var(--link);
        /* padding: 14px 44px 14px 16px; */
    }

    /* open header divider only */
    .ffaq__item[open] .ffaq__q {
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* plus / minus icon */
    .ffaq__q::after {
        background: rgba(0, 0, 0, 0.05);
        /* transparent icon bg */
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: #111827;
    }

    /* open icon */
    .ffaq__item[open] .ffaq__q::after {
        background: rgba(59, 130, 246, 0.08);
        border-color: rgba(59, 130, 246, 0.18);
    }

    /* answer area */
    .ffaq__a {
        background: transparent;
        /* 🔥 no fill */
        /* padding: 10px; */
        color: #374151;
        font-size: 14px;
        line-height: 1.65;
    }

    /* paragraphs */
    .ffaq__a p {
        margin: 0 0 10px;
        font-size: 14px;
        color: #fff;
    }

    /* links */
    .ffaq__a a {
        color: #2563eb;
        border-bottom: 1px dashed rgba(37, 99, 235, 0.35);
        color: var(--accent);
        font-weight: 300;
    }

    /* UL list */
    .ffaq__a .faqs_list {
        margin: 8px 0px;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 3px;
    }

    /* list item */
    .ffaq__a .faqs_list li {
        position: relative;
        padding-left: 10px;
        color: var(--accent);
    }

    /* bullet */
    .ffaq__a .faqs_list li::before {
        background: rgba(16, 185, 129, 0.12);
        /* transparent green */
        border: 1px solid rgba(16, 185, 129, 0.25);
        color: #047857;
    }


    /* wrapper */
    .cb {
      position: relative;
      display: grid;
      place-items: center;
    }

    /* rotating arrows */
    .rotateRing {
      position: absolute;
      animation: spin 2.4s linear infinite;
      color: #25D366;
      opacity: 0.9;
      font-weight: 500;
    }

    /* center call icon */
    .centerIcon {
      position: relative;
      z-index: 2;
      /* width: 24px;
      height: 24px; */
      border-radius: 50%;
      /* background: #25D366; */
      display: grid;
      place-items: center;
      color: #FFFFFF;
      /* box-shadow: 0 0 12px rgba(37, 211, 102, 0.6); */
    }

    /* smooth rotation */
    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    /* inner pulse */
    footer .pulse {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.25);
      animation: softPulse 2s infinite ease-in-out;
      z-index: 0;
    }

    /* ring animation */
    @keyframes ringPulse {
      0% {
        transform: scale(0.9);
        opacity: 0.8;
      }

      70% {
        transform: scale(1.6);
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }

    /* soft glow animation */
    @keyframes softPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.4;
      }

      50% {
        transform: scale(1.15);
        opacity: 0.7;
      }
    }

    .tray {
      position: fixed;
      left: 10px;
      bottom: 30px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(255, 255, 255, .10);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 28px 120px rgba(0, 0, 0, .28);

      overflow: hidden;
    }

    .glow {
      position: absolute;
      inset: -18px;
      background: linear-gradient(90deg, #153e9b, #0f2f77);
      filter: blur(16px);
      opacity: .95;
      pointer-events: none;
    }

    .brand {
      position: relative;
      width: 10px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-right: 2px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: #25D366;
      box-shadow: 0 0 0 6px rgba(37, 211, 102, .16);
    }

    /* item links/buttons */
    .item,
    .itemBtn {
      position: relative;
      z-index: 2;

      display: inline-flex;
      align-items: center;
      gap: 0;

      padding: 5px 5px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(0, 0, 0, 0.08);
      color: #fff;
      text-decoration: none;
      cursor: pointer;

      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    @media (hover: hover) and (pointer: fine) {

      .tray:hover .item,
      .tray:hover .itemBtn {
        gap: 8px;
      }

      .tray:hover .lbl {
        max-width: 90px;
        opacity: 1;
      }
    }

    .itemBtn {
      appearance: none;
      outline: none;
    }

    .item:hover,
    .itemBtn:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .16);
    }

    .ico {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .10);
    }

    .cbImg {
      width: 22px;
      height: 22px;
      object-fit: contain;
      filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .22));
    }

    /* labels hidden by default (clean), show on hover for desktop */
    .lbl {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .2px;
      color: rgba(255, 255, 255, .92);
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      white-space: nowrap;
      transition: max-width .22s ease, opacity .22s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .tray:hover .lbl {
        max-width: 90px;
        opacity: 1;
      }
    }

    /* on small screens keep it compact always */
    @media (max-width: 560px) {

      /* .tray{ right: 12px; bottom: 12px; padding: 8px; gap: 6px; } */
      .item,
      .itemBtn {
        padding: 7px;
      }

      .lbl {
        display: none;
      }
    }

    /* ===== Modal ===== */
    .overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      /* background: rgba(34, 115, 255, 0.7); */
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(7px);
      display: grid;
      place-items: center;
      padding: 18px;
    }

    #callbackOverlay .modal {
      width: min(560px, 100%) !important;
      border-radius: 22px;
      background: rgba(255, 255, 255, .92);
      border: 1px solid rgba(255, 255, 255, .38);
      box-shadow: 0 40px 160px rgba(0, 0, 0, .35);
      position: relative;
      overflow: hidden;
      display: block !important;
    }

    .close {
      position: absolute;
      right: 12px;
      top: 12px;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, .10);
      background: rgba(255, 255, 255, .75);
      cursor: pointer;
      display: flex;
      justify-content: center;
      place-items: center;
      color: #0b1220;
    }

    .mHead {
      display: flex;
      gap: 14px;
      padding: 18px 18px 10px;
    }

    .mBadge {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(10, 102, 194, .10);
      border: 1px solid rgba(10, 102, 194, .14);
      color: #0a66c2;
    }

    .mTitle {
      font-size: 18px;
      font-weight: 900;
      color: #0b1220;
      text-align: left;
    }

    .mSub {
      margin-top: 2px;
      font-size: 13px;
      color: rgba(11, 18, 32, .72);
    }

    .form {
      padding: 10px 18px 18px;
    }

    .submit {
      width: 100%;
      margin-top: 14px;
      padding: 12px 14px;
      border: 0;
      border-radius: 16px;
      cursor: pointer;
      font-weight: 900;
      color: #fff;
      background: linear-gradient(135deg, #0a66c2, #1e88e5);
      box-shadow: 0 22px 60px rgba(10, 102, 194, .22);
    }

    .note {
      margin: 10px;
      font-size: 12px;
      color: rgba(11, 18, 32, .58);
      text-align: center;
    }





    .social_wrapper{
      position: fixed;
      right: 0px;
      top: 50%;
      transform: translateY(-50%);

      display: flex;
      flex-direction: column;
      align-items: flex-end; /* IMPORTANT */

      gap: 12px;

      z-index: 9999;
    }

    /* button */
    .social_wrapper .btn{
      position: relative;

      display: flex;
      align-items: center;

      width: 52px;
      height: 52px;

      /* border-radius: 50px; */

      color: white;
      text-decoration: none;

      overflow: hidden;

      padding-left: 0;

      transition: width .25s ease;

      white-space: nowrap;
    }

    /* icon fixed */
    .social_wrapper .btn i{
      min-width: 52px;
      height: 52px;

      display:flex;
      align-items:center;
      justify-content:center;

      font-size:20px;
    }

    /* text hidden */
    .social_wrapper .btn span{
      opacity:0;
      margin-left:5px;
      transition: opacity .2s ease;
    }

    /* expand only THIS button */
    .social_wrapper .btn:hover{
      width: 170px;
    }

    /* show text */
    .social_wrapper .btn:hover span{
      opacity:1;
    }

    /* colors */

    .social_wrapper .mail{
      background:#444 !important;
    }

    .social_wrapper .whatsapp{
      background:#25D366 !important;
    }

    .social_wrapper .linkedin{
      background:#0a66c2 !important;
    }

    .social_wrapper .instagram{
      background:#E1306C !important;
    }

    /* ===== Tablet (≤1024px) ===== */

    @media (max-width:1024px){

      .social_wrapper{
      
        gap:10px;
      }

      .social_wrapper .btn{
        width:46px;
        height:46px;
      }

      .social_wrapper .btn i{
        min-width:46px;
        height:46px;
        font-size:18px;
      }

    }


    /* ===== Mobile (≤768px) ===== */

    @media (max-width:768px){


      .social_wrapper .btn{
        width:46px;
        height:46px;
      }

      /* disable hover expansion */
      .social_wrapper .btn:hover{
        width:46px;
      }

      .social_wrapper .btn span{
        display:none;
      }

    }


    /* ===== Small Mobile (≤480px) ===== */

    @media (max-width:480px){

      .social_wrapper{
        gap:8px;
      }

      .social_wrapper .btn{
        width:42px;
        height:42px;
      }

      .social_wrapper .btn i{
        min-width:42px;
        height:42px;
        font-size:16px;
      }

    }

    
/********************** AlumniNetwork************************/
/* =========================
   ALUMNI NETWORK - PREMIUM
========================= */
:root{
--primary: #FF3158;
    --secondary: #f50366;
    --white: #fff;
    --white-2: #F5F5F5;
    --black: #000;
    --black-2: #001D25;
    --black-3: #1F242C;
    --black-4: #67687A;
    --black-5: #001920;
    --black-6: #070F2C;
    --black-7: #111010;
    --green: #002935;
    --green-2: #1A434F;
    --green-3: #002E3B;
    --green-4: #335862;
    --gray-2: #F4F5FA;
    --gray-3: #333F4D;
    --gray-4: #B3C0C4;
    --gray-5: #4A5355;
    --gray-6: #E6E8E9;
    --gray-7: #D9DDDE;
    --gray-8: #80979D;
    --yellow: #F9C02F;
    --yellow-2: #FFA41B;
    --pink: #FFEAEE;
    --pink-2: #FFD6DE;
    --primary-3: #FF3158;
    --secondary-3: #f50366;
    --pc-brand: #153e9b;
    --pc-brand2: #0f2f77;
    --btn-brand: #FF3158;
    --btn-brand2: #cd2029;
}

#AlumniNetwork{
    background-color: #fff;
}

.alumniSection {
  padding: 28px 0;
}

.alumniContainer {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   MAIN CARD
========================= */

.alumniCard--premium {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 44px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 15px;
  align-items: center;

  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #001a23, #002935);

  border: 1px solid rgba(255, 255, 255, 0.10);
  /* box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45); */

  isolation: isolate;
  /* ✅ better blending + z-index layering */
}

/* ✅ Premium gradient border glow (subtle) */
.alumniCard--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(135deg,
      rgba(0, 255, 209, 0.55),
      rgba(0, 163, 255, 0.45),
      rgba(255, 255, 255, 0.10));

  /* cut center */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* ✅ Moving sheen layer */
.alumniCard--premium::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg,
      transparent 45%,
      rgba(255, 255, 255, 0.12),
      transparent 55%);
  transform: translateX(-30%) rotate(8deg);
  animation: alumniSheen 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

@keyframes alumniSheen {

  0%,
  40% {
    transform: translateX(-35%) rotate(8deg);
    opacity: 0;
  }

  55% {
    opacity: 0.55;
  }

  100% {
    transform: translateX(35%) rotate(8deg);
    opacity: 0;
  }
}

/* =========================
   BACKGROUND SHAPES LAYER
========================= */

.alumniShapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
  opacity: 0.95;
}

/* Blob top-left */
.shapeBlob1 {
  width: 420px;
  height: 420px;
  left: -140px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%,
      rgba(0, 255, 209, 0.35),
      rgba(0, 255, 209, 0) 60%);
  border-radius: 50%;
  filter: blur(2px);
}

/* Blob bottom-right */
.shapeBlob2 {
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -240px;
  background: radial-gradient(circle at 35% 35%,
      rgba(0, 163, 255, 0.38),
      rgba(0, 163, 255, 0) 62%);
  border-radius: 50%;
  filter: blur(2px);
}

/* Ring shapes */
.shapeRing1 {
  width: 260px;
  height: 260px;
  left: 52%;
  top: -80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.03);
  opacity: 0.7;
}

.shapeRing2 {
  width: 180px;
  height: 180px;
  right: 18%;
  bottom: 12%;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 209, 0.16);
  box-shadow: inset 0 0 0 10px rgba(0, 255, 209, 0.03);
  opacity: 0.65;
}

/* Dots pattern */
.shapeDots {
  width: 320px;
  height: 260px;
  right: -50px;
  top: 30px;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.30) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 20px;
}

/* ✅ subtle floating animation */
.shapeBlob1,
.shapeBlob2,
.shapeRing1,
.shapeRing2 {
  animation: floaty 10s ease-in-out infinite;
}

.shapeBlob2 {
  animation-duration: 12s;
}

.shapeRing1 {
  animation-duration: 14s;
  opacity: 0.55;
}

.shapeRing2 {
  animation-duration: 16s;
  opacity: 0.45;
}

@keyframes floaty {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

/* =========================
   CONTENT Z-INDEX
========================= */

.alumniLeft,
.alumniRight {
  position: relative;
  z-index: 2;
  /* ✅ above shapes + sheen */
}

/* =========================
   LEFT SIDE
========================= */

/* Badge */
.alumniBadge {
  display: flex;
  max-width: fit-content;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #e9fbff;
  font-weight: 800;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

/* Title */
.alumniTitle {
  margin: 14px 0 12px;
  color: #fff;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.2px;
  text-align: left;
}

/* Description */
.alumniDesc {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.7px;
  line-height: 1.75;
  /* max-width: 58ch; */
}

/* Actions */
.alumniActions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* =========================
   CTA BUTTON
========================= */

.alumniBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 20px;
  border-radius: 5px;

  text-decoration: none;
  font-weight: 950;

  position: relative;
  overflow: hidden;

  color: #ffffff;
  /* background: linear-gradient(135deg, #0b1f3d, #18405B); */

  border: 1px solid var(--btn-brand);
  box-shadow: 0 22px 60px rgba(2, 6, 23, .18);
  transition: color .35s ease;
}

/* Gradient reveal layer */
.alumniBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--btn-brand), var(--btn-brand2));
  transform: translateX(-102%);
  transition: transform .35s ease;
  z-index: 0;
  color: #ffffff;
}

/* Text & arrow layering */
.btnText,
.btnArrow {
  position: relative;
  z-index: 1;
}

/* Arrow animation */
.btnArrow {
  opacity: .7;
  transform: translateX(-6px);
  transition: transform .35s ease, opacity .35s ease;
}

/* Hover Effects */
.alumniBtn:hover::before {
  transform: translateX(0);
  color: #fff;
}

.alumniBtn:hover {
  color: #fff;
}

.alumniBtn:hover .btnArrow {
  transform: translateX(0);
  opacity: 1;
}
/* Hint */
.alumniHint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 13px;
}

.alumniHint .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #00ffd1;
  box-shadow: 0 0 0 6px rgba(0, 255, 209, 0.12);
}

/* =========================
   RIGHT SIDE MEDIA
========================= */

.alumniMediaLink {
  display: block;
  text-decoration: none;
}

/* ✅ anchor overlay */
.alumniMedia {
  position: relative;
}

.alumniMedia--premium {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.30);
  background: rgba(255, 255, 255, 0.06);
}

/* image */
.alumniMedia img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.alumniMedia:hover img {
  transform: scale(1.08);
}

/* Overlay */
.alumniMediaOverlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.70));
}

.alumniMediaPill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.liIcon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(0, 163, 255, 0.25);
}

.alumniMediaTitle {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}

/* =========================
   STATS
========================= */

.alumniStats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);

  transition: transform 0.18s ease, background 0.18s ease;
}

.stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.075);
}

.statValue {
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.statLabel {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .alumniCard--premium {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .alumniTitle {
    font-size: 28px;
  }

  .alumniMedia img {
    height: 240px;
  }

  .shapeRing1 {
    left: 20%;
    top: -90px;
  }
}

@media (max-width: 480px) {
  .alumniCard--premium {
    padding: 20px;
  }

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

  .shapeDots {
    display: none;
  }
}

/* =========================
   REDUCE MOTION (ACCESSIBILITY)
========================= */
@media (prefers-reduced-motion: reduce) {

  .alumniCard--premium::after,
  .shapeBlob1,
  .shapeBlob2,
  .shapeRing1,
  .shapeRing2 {
    animation: none !important;
  }

  .alumniBtn,
  .alumniMedia img,
  .stat {
    transition: none !important;
  }
}
/********************** End AlumniNetwork************************/