:root {
  --navy: #0d2b6b;
  --navy-deep: #08205a;
  --gold: #f5a623;
  --gold-2: #e89510;
  --ink: #16223d;
  --muted: #5b6478;
  --line: #e3e7ef;
  --bg: #f6f8fc;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}


html, body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55
}

.why-icon .fa {
    color: #f5a623;
}

i.fa-solid.fa-location-dot {
color: #0d2b6b;
}

.placement-grid .fa {
    padding: 6px 3px;
    color: #f5a63c;
}

img {
  max-width: 100%;
  display: block
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  letter-spacing: .2px
}
ul {
  padding-left: 1.1rem;
}
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px
}
.section-title {
  text-align: center;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 28px;
  position: relative;
  letter-spacing: 1px
}


.orange-strip {
  color: white;
  background: #e95020;
  padding: 6px 0px;
  top: 0px;
  left: 0;
  z-index: 999999;
  overflow: hidden;
  width: 100%;
}

.orange-strip h3 {
  font-size: 14px;
  padding: 3px 0px;
  margin: 0;
  color: #ffff;
  font-weight: 600;
   text-align: center;
}

.btn-strip {
  cursor: pointer;
  animation: blink 3s infinite;
  transition: 0.9s;
  padding: 4px 9px !important;
  margin: 0 0 0 13px;
  background: #ffffff;
  border-radius: 10px;
}

.orange-strip h3 a {
  font-size: 13px;
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
}

@keyframes blink {
  0%,
  50%,
  100% {
    background-color: #000;
    color: #fff;
  }
  25%,
  75% {
    background-color: #fff;
    color: #ff6600;
  }
}
	


.section-title::before, .section-title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px
}
.block-title {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: .5px;
}
/* ============ HERO 3D ============ */
.hero {
  position: relative;
  min-height: 608px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1400px;
  background: #0a1a3a;
}
.logo-box img {
  width: 160px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-bg .layer {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center bottom;
  transition: transform .25s ease-out;
  will-change: transform;
}
.layer.sky {
  background: linear-gradient(180deg, #7fb6e8 0%, #bcd9f0 55%, #f1e2c2 100%);
  transform: translateZ(-300px) scale(1.4);
}
.layer.clouds {
  background:
    radial-gradient(ellipse 240px 60px at 20% 22%, rgba(255, 255, 255, .85), transparent 60%), radial-gradient(ellipse 320px 70px at 70% 18%, rgba(255, 255, 255, .7), transparent 65%), radial-gradient(ellipse 180px 50px at 45% 30%, rgba(255, 255, 255, .55), transparent 65%);
  transform: translateZ(-220px) scale(1.3);
}
.layer.city-back {
  background:
    linear-gradient(180deg, transparent 55%, #6c8db5 55%, #56789e 100%);
  clip-path: polygon(0 70%, 5% 60%, 9% 65%, 14% 55%, 20% 62%, 26% 50%, 33% 58%, 40% 48%, 46% 56%, 54% 45%, 62% 54%, 70% 47%, 78% 56%, 86% 50%, 92% 58%, 100% 53%, 100% 100%, 0 100%);
  transform: translateZ(-150px) scale(1.2);
  opacity: .85;
}
.layer.city-mid {
  background: linear-gradient(180deg, transparent 60%, #3d5e87 60%, #2a456a 100%);
  clip-path: polygon(0 80%, 4% 70%, 8% 78%, 12% 60%, 18% 72%, 24% 55%, 30% 70%, 36% 50%, 42% 68%, 48% 45%, 55% 62%, 62% 48%, 70% 65%, 78% 52%, 86% 68%, 94% 58%, 100% 70%, 100% 100%, 0 100%);
  transform: translateZ(-80px) scale(1.1);
}
.layer.burj {
  background:
    radial-gradient(closest-side at 58% 38%, #cfd9e6 0%, #9fb1c8 35%, transparent 60%);
  /* Burj-like silhouette */
  clip-path: polygon(56% 100%, 57% 60%, 58% 30%, 58.5% 18%, 59% 30%, 60% 60%, 61% 100%);
  background-color: #dde5ef;
  transform: translateZ(-30px) scale(1.05);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .35));
}
.layer.city-front {
  background: linear-gradient(180deg, transparent 65%, #1c3559 65%, #0f2342 100%);
  clip-path: polygon(0 85%, 3% 75%, 6% 82%, 10% 65%, 15% 78%, 20% 60%, 26% 76%, 32% 55%, 38% 72%, 44% 50%, 50% 68%, 56% 45%, 62% 62%, 70% 50%, 78% 70%, 86% 58%, 94% 72%, 100% 65%, 100% 100%, 0 100%);
  transform: translateZ(40px) scale(1.04);
}
.layer.water {
  background: linear-gradient(180deg, #1a3a6c 0%, #0f2548 100%);
  top: 78%;
  bottom: -6%;
  left: -6%;
  right: -6%;
  transform: translateZ(80px);
  box-shadow: inset 0 30px 60px rgba(255, 255, 255, .08);
}
.layer.water::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}
.layer.glow {
  background: radial-gradient(ellipse 50% 40% at 70% 30%, rgba(255, 200, 120, .35), transparent 70%);
  transform: translateZ(120px);
  pointer-events: none;
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 93%;
  margin-top: 14px;
}
.program-btn {
  padding: 6px 6px;
  border: 1px solid #c8dff0;
  color: #09215b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  background: #eee;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
168deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .55) 35%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.logo-box {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px
}
.logo-mark {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 10px 12px;
  border-radius: 4px;
  letter-spacing: 1px
}
.logo-text strong {
  display: block;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1
}
.logo-text span {
  display: block;
  color: var(--navy);
  font-size: .85rem;
  line-height: 1.15;
  margin-top: 2px
}
.logo-text small {
  display: block;
  color: var(--navy);
  font-size: .7rem;
  letter-spacing: 1.5px;
  margin-top: 6px;
  border-top: 1px solid var(--navy);
  padding-top: 4px
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 14px
}
.accent-text {
  color: var(--navy)
}
.hero-sub {
  color: #1f2a44;
  max-width: 560px;
  margin-bottom: 18px;
  font-size: .97rem
}
.programs-offered h4 {
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700
}
.programs-offered ul {
  color: #1f2a44;
  font-size: .92rem
}
.programs-offered li {
  margin-bottom: 3px
}
.enquire-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 8px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 24px 60px -10px rgba(8, 32, 90, .6), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  transform: translateZ(0);
  width: 358px;
  margin-top: 23px;
}
.enquire-card h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.3rem
}
.enquire-card input, .enquire-card select {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: none;
  background: #fff;
  color: #222;
  font-size: .92rem;
  font-family: inherit
}
.enquire-card button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .2s;
  text-transform: uppercase;
}
.enquire-card button:hover {
  background: var(--gold-2)
}
.secure {
  font-size: .75rem;
  text-align: center;
  margin-top: 10px;
  color: #dfe6f5
}
/* ============ RANKINGS ============ */
.rankings {
  padding-top: 36px;
  padding-bottom: 20px;
  border-bottom: solid 2px #eee;
}
.rank-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px
}
.rank-item {
  text-align: center;
  padding: 10px
}
.rank-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: .9rem;
  line-height: 1.05
}
.rank-logo.qs {
  color: #fff;
  font-size: 1.6rem;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-flex
}
.rank-grid img {
    width: 150px;
}

.rank-item {
    text-align: center;
    padding: 10px;
    border-right: solid 1px #eee;
}

.rank-item:last-child {
    border-right: none;
}

.rank-logo.bbw {
  color: #000;
  font-size: .85rem
}
.rank-logo.bbw b {
  font-size: 1rem
}
.rank-logo.forbes {
  font-family: 'Playfair Display';
  font-size: 1.8rem;
  color: #000
}
.rank-logo.wsj {
  font-size: .75rem;
  color: #000
}
.rank-logo.wsj b {
  color: #d31818
}
.rank-logo.econ {
  color: #fff;
  padding: 8px 14px;
  font-family: 'Playfair Display';
  font-style: italic;
  display: inline-flex;
  border-radius: 2px
}
.rank-item strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 4px
}
.rank-item span {
  font-size: .78rem;
  color: var(--muted)
}
/* ============ ABOUT + WHY ============ */
.about-why {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px
}
.about p {
  color: #2c3650;
  font-size: .92rem
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}
.why-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
  text-align: center;
}
.why-icon {
  font-size: 1.4rem
}
.why-item p {
  font-size: .83rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3
}
/* ============ PROGRAMS ============ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}
.program-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(8, 32, 90, .08);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(8, 32, 90, .15)
}
.program-img {
  height: 169px;
  background-size: cover;
  background-position: center;
  position: relative
}
.program-img::after {
  content: attr(data-label);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(13, 43, 107, .85));
  color: #fff;
  padding: 10px;
  font-weight: 700;
  font-size: .8rem
}
.program-img.ai {
  background: linear-gradient(135deg, #1b3a8c, #0a1a3a);
}
.program-img.ai::before {
  content: "AI";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display';
  font-size: 3rem;
  color: #7fb6e8;
  text-shadow: 0 0 20px rgba(127, 182, 232, .6)
}
.program-img.sg {
  background: linear-gradient(135deg, #f5a623, #7b3f00);
}
.program-img.london {
  background: linear-gradient(135deg, #8b4513, #2c1810);
}
.program-img.sydney {
  background: linear-gradient(135deg, #1e5a8c, #0a2a4a);
}
.program-body {
  padding: 14px 16px 18px
}
.program-body h4 {
  color: var(--navy);
  font-size: .85rem;
  margin-bottom: 10px;
  font-family: 'Inter';
  font-weight: 800;
  letter-spacing: .3px
}
.program-body ul {
  font-size: .8rem;
  color: #2c3650
}
.program-body li {
  margin-bottom: 4px
}
/* ============ PLACEMENT ============ */
.placement-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px
}
.placement {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 24px
}
.placement h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 8px;
  font-family: 'Inter';
  font-weight: 800;
  letter-spacing: .5px
}
.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-size: .85rem
}
.placement-grid p {
  margin-bottom: 8px
}
.placement-grid h5 {
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Inter';
  font-size: .9rem
}
.placement-grid ul {
  padding-left: 1.1rem
}
.placement-grid li {
  margin-bottom: 4px;
  color: #e8eefb
}
.recruiters {
  background: #f3f5f9;
  border-radius: 8px;
  padding: 24px
}
.recruiters h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Inter';
  font-weight: 800;
  letter-spacing: .5px
}
.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.logos span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 6px;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px
}
.logos span:nth-child(1) {
  color: #00338d
}
.logos span:nth-child(2) {
  color: #86bc25
}
.logos span:nth-child(3) {
  color: #1ba1e2
}
.logos span:nth-child(4) {
  color: #d71921
}
.logos span:nth-child(6) {
  color: #009999
}
.logos span:nth-child(7) {
  color: #e31837
}
.logos span:nth-child(9) {
  grid-column: span 1;
  max-width: 199px;
  margin: auto
}
/* ============ STUDY OPTIONS ============ */
.lead {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
  color: #2c3650
}
.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}
.option {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff
}
.option header {
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: .95rem
}
.option.blue header {
  background: var(--navy)
}
.option.gold header {
  background: var(--gold-2)
}
.option-body {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 16px;
  padding: 18px
}
.option-body p {
  font-size: .85rem;
  margin-bottom: 8px;
  color: #2c3650
}
.option-body ul {
  font-size: .85rem;
  margin-bottom: 8px;
  padding: 0 6px;
}
.option-body li {
  margin-bottom: 4px;
  list-style: none;
}
.option-img {
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}
.option-img.merlion {
  background: linear-gradient(135deg, #7fb6e8, #1b3a8c)
}
.option-img.gherkin {
  background: linear-gradient(135deg, #9fb1c8, #3d5e87)
}
/* ============ ADMISSION ============ */
.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap
}
.step {
  text-align: center;
  flex: 1;
  min-width: 110px
}
.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 1.4rem;
  box-shadow: 0 6px 14px rgba(13, 43, 107, .3)
}
.step p {
  font-size: .8rem;
  color: var(--navy);
  font-weight: 600
}
.arrow {
  color: var(--navy);
  opacity: .4;
  font-size: 1.2rem
}
/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.t-card {
  background: #f3f5f9;
  border-radius: 8px;
  padding: 18px;
  position: relative
}
.t-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Playfair Display';
  line-height: 1
}
.t-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #cfd9e6;
  background-size: cover
}
.avatar.a1 {
  background: linear-gradient(135deg, #8b6f47, #3d2818)
}
.avatar.a2 {
  background: linear-gradient(135deg, #c9a484, #6b4a2a)
}
.avatar.a3 {
  background: linear-gradient(135deg, #d4a574, #7b3f00)
}
.t-head strong {
  color: var(--navy);
  font-size: .95rem
}
.t-head small {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.3
}
.t-card p {
  font-size: .83rem;
  color: #2c3650;
  font-style: italic
}
/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 24px;
  margin-top: 40px
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}
.footer-left {
  font-size: .95rem
}
.footer-left span {
  font-size: .82rem;
  color: #bcd0f0
}
.footer-cta {
    background: var(--gold);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .5px;
    transition: background .2s;
}
.footer-cta:hover {
  background: var(--gold-2)
}
/* ============ RESPONSIVE ============ */
@media (max-width:980px) {
  .hero-content {
    grid-template-columns: 1fr
  }
  .hero h1 {
    font-size: 2rem
  }
  .rank-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .about-why, .placement-row, .options {
    grid-template-columns: 1fr
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .logos {
    grid-template-columns: repeat(3, 1fr)
  }
  .testimonials {
    grid-template-columns: 1fr
  }
  .steps {
    flex-direction: column
  }
  .arrow {
    transform: rotate(90deg)
  }
  .option-body {
    grid-template-columns: 1fr
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .7))
  }
}
/* ============ 3D WORLD / GLOBE ============ */
.layer.globe-layer {
  transform: translateZ(60px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6%;
  pointer-events: none;
  z-index: 2;
}
.globe {
  position: relative;
  width: clamp(260px, 32vw, 460px);
  aspect-ratio: 1/1;
  transform-style: preserve-3d;
  perspective: 1200px;
  animation: globeFloat 7s ease-in-out infinite;
}
.globe-sphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 30% 28%, #7ec8ff 0%, #2a7fc4 35%, #0b3a72 70%, #051e3d 100%);
  box-shadow:
    inset -30px -40px 90px rgba(0, 0, 0, .55), inset 20px 25px 60px rgba(180, 220, 255, .25), 0 30px 80px rgba(0, 60, 130, .45), 0 0 60px rgba(120, 180, 255, .35);
  overflow: hidden;
}
.globe-map, .globe-map-2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    radial-gradient(ellipse 18% 14% at 22% 38%, #2d6b3a 40%, transparent 42%), radial-gradient(ellipse 14% 22% at 30% 60%, #2d6b3a 40%, transparent 42%), radial-gradient(ellipse 22% 16% at 55% 32%, #3a7d45 40%, transparent 42%), radial-gradient(ellipse 10% 12% at 52% 55%, #3a7d45 40%, transparent 42%), radial-gradient(ellipse 18% 14% at 75% 45%, #2d6b3a 40%, transparent 42%), radial-gradient(ellipse 12% 10% at 82% 68%, #3a7d45 40%, transparent 42%), radial-gradient(ellipse 8% 6% at 45% 78%, #2d6b3a 40%, transparent 42%);
  background-repeat: repeat-x;
  background-size: 200% 100%;
  opacity: .85;
  mix-blend-mode: screen;
  animation: globeSpin 22s linear infinite;
  filter: blur(.3px);
}
.globe-map-2 {
  opacity: .35;
  background-size: 160% 100%;
  animation-duration: 35s;
  animation-direction: reverse;
  filter: blur(2px);
}
.globe-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .55), transparent 35%), radial-gradient(circle at 70% 75%, rgba(0, 0, 0, .35), transparent 45%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.globe-shadow {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -8%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .45), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.globe-ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 200, 120, .45);
  animation: ringSpin 18s linear infinite;
}
.globe-ring.r2 {
  inset: -14%;
  border-color: rgba(120, 180, 255, .35);
  animation-duration: 26s;
  animation-direction: reverse;
  transform: rotateX(72deg);
}
.globe-ring.r3 {
  inset: -22%;
  border-color: rgba(255, 255, 255, .18);
  animation-duration: 34s;
  transform: rotateX(45deg) rotateY(20deg);
}
.campus-dot {
  position: absolute;
  top: var(--lat);
  left: var(--lng);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffb547;
  box-shadow: 0 0 0 4px rgba(255, 181, 71, .25), 0 0 16px rgba(255, 181, 71, .95);
  animation: pulseDot 2.2s ease-in-out infinite;
  transform: translateZ(60px);
}
.campus-dot::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 181, 71, .9), rgba(255, 181, 71, 0));
  transform-origin: left center;
  transform: rotate(-30deg);
}
.campus-dot::after {
  content: attr(data-c);
  position: absolute;
  left: 38px;
  top: -14px;
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: .6px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11, 58, 114, .95), rgba(232, 93, 58, .92));
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .4), inset 0 0 0 1px rgba(255, 255, 255, .18);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
}
@keyframes globeSpin {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: -200% 0;
  }
}
@keyframes ringSpin {
  from {
    transform: rotateX(70deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(70deg) rotateZ(360deg);
  }
}
@keyframes globeFloat {
  0%, 100% {
    transform: translateY(0) rotateX(8deg) rotateY(-10deg);
  }
  50% {
    transform: translateY(-14px) rotateX(8deg) rotateY(10deg);
  }
}
@keyframes pulseDot {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 181, 71, .25), 0 0 14px rgba(255, 181, 71, .9);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 181, 71, 0), 0 0 22px rgba(255, 181, 71, 1);
  }
}
@media (max-width: 860px) {
  .layer.globe-layer {
    justify-content: center;
    padding: 0;
    opacity: .55;
  }
  .globe {
    width: 60vw;
  }
}


@media(max-width:767px) {
.programs-grid {
  display: block; margin-bottom: 10px;
}	
.program-img {
  height: auto;
}
.program-card {margin-bottom: 10px;}	
	
.section {
  padding: 16px 24px;
}
.about {
  text-align: center;
}	
	
.hero h1 {text-align: center;
    font-size: 26px;
  }
	
.hero-content {
  padding: 10px;
  display: block;
}
.programs-offered h4 {
 color: #0d2b6b;
    font-size: 18px;
    text-align: center;
}
.hero-sub {
  max-width: 100%;
  font-size: 12px;
  text-align: center;
	margin-bottom: 6px;
}
.logo-box {
  align-items: center;
  justify-content: center;
}
.program-btn {
  padding: 3px 5px;
  border: 1px solid #c8dff0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  background: #0d2b6a;
  display: inline-block;;
  width: 48%;
  text-align: center;
}	
.button-group {
  width: 100%;
}
.block-title {
  text-align: center;
}
.lead {
  font-size: 14px;
}
	
.section-title {
  font-size: 18px;
  letter-spacing: 0;
}
.steps {
    flex-direction: inherit;
  }
	
  .arrow {
    transform: rotate(360deg);
  }
.rank-grid img {
  width: 60%;
}	
.rank-grid {
  gap: 3px;
}	
	
}


@media (max-width: 768px) {
  .rm-text {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rm-text.expanded {
    -webkit-line-clamp: unset;
  }

  .rm-btn {
    display: inline-block;
    margin-top: 8px;
    color:#f0686f;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
  }
}


@media (min-width: 769px) {
  .rm-btn {
    display: none;
  }
}
