*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --red:#0b4ea2;
  --green:#c9972e;
  --red-dark:#071b36;
  --red-light:#2b6fcb;
  --red-pale:#edf5ff;
  --red-mid:#165fb8;
  --white:#ffffff;
  --off-white:#f8f7f5;
  --cream:#faf9f7;
  --charcoal:#071b36;
  --dark:#0c1d33;
  --gray:#667085;
  --gray-light:#e5e7eb;
  --gray-pale:#f3f4f6;
  --border:#e8e8e8;
}
html{scroll-behavior:smooth}
body{font-family:'Manrope',sans-serif;color:var(--dark);background:var(--white);overflow-x:hidden}

/* ═══════════════════════════════════
   TOP BAR
═══════════════════════════════════ */
.topbar{
  background:var(--charcoal);
  color:rgba(255,255,255,0.9);
  padding:4px 6%;
  display:flex;justify-content:space-between;align-items:center;
  font-size:13px;font-weight:400;
}
.topbar a{color:rgba(255,255,255,0.9);text-decoration:none}
.topbar a:hover{color:#fff}
.topbar-left,.topbar-right{display:flex;align-items:center;gap:28px}
.topbar-item{display:flex;align-items:center;gap:7px}
.topbar-icon{
  width:18px;height:18px;
  background:rgba(255,255,255,0.2);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;
}
/* =========================================
   TOPBAR DROPDOWN
========================================= */

.topbar-dropdown{
    position:relative;
}

.topbar-dropdown-btn{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:30px;
    padding:7px 14px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    font-family:'Outfit',sans-serif;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.25s ease;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    line-height:1;
}

.topbar-dropdown-btn:hover{
    background:#0b4ea2;
    border-color:#0b4ea2;
    transform:translateY(-1px);
}

.topbar-dropdown-menu{
    position:absolute;
    top:140%;
    right:0;
    min-width:220px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s ease;
    z-index:999;
    border:1px solid #eee;
}

.topbar-dropdown:hover .topbar-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.topbar-dropdown-menu a{
    display:flex;
    align-items:center;
    padding:10px 12px;
    color:#111827 !important;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    border-bottom:1px solid #f1f1f1;
    transition:.25s;
}

.topbar-dropdown-menu a:last-child{
    border-bottom:none;
}

.topbar-dropdown-menu a:hover{
    background:#0b4ea2;
    color:#fff !important;
    padding-left:20px;
}

/* ═══════════════════════════════════
   NAV — matches reference exactly
═══════════════════════════════════ */
nav{
  position:sticky;top:0;z-index:200;
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 6%;height:72px;
}
.nav-logo{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;
}
.nav-logo-img{
  height:54px;width:auto;display:block;
}

.nav-collapse{
  display:flex;align-items:center;gap:36px;
}
.nav-links{
  display:flex;align-items:center;gap:36px;
  list-style:none;
}
.nav-links a{
  color:var(--dark);text-decoration:none;
  font-size:15px;font-weight:500;
  position:relative;
  transition:color 0.2s;
}
.nav-links a::after{
  content:'';
  position:absolute;bottom:-4px;left:0;right:0;
  height:2px;background:var(--red);
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.25s;
}
.nav-links a:hover{color:var(--red)}
.nav-links a:hover::after{transform:scaleX(1)}
.nav-links a.active{color:var(--red)}
.nav-links a.active::after{transform:scaleX(1)}
.nav-dropdown{position:relative}
.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  min-width:190px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 18px 44px rgba(15,23,42,.13);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:all .2s ease;
  z-index:1000;
}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  color:var(--dark);
  font-size:14px;
  white-space:nowrap;
}
.nav-dropdown-menu a:hover{background:#fff2f0;color:var(--red)}
.nav-dropdown-menu a::after{display:none}

.nav-cta{
  background:var(--red);
  color:#fff !important;
  padding:11px 26px;border-radius:6px;
  font-size:14px !important;font-weight:600 !important;
  text-decoration:none;
  transition:background 0.2s,transform 0.15s;
  white-space:nowrap;
}
.nav-cta::after{display:none !important}
.nav-cta:hover{background:var(--red-dark) !important;transform:translateY(-1px)}

/* hamburger toggle (hidden on desktop) */
.nav-toggle{
  display:none;
  background:transparent;border:none;cursor:pointer;
  padding:8px;margin:0;
  width:44px;height:44px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
}
.nav-toggle span{
  display:block;
  width:24px;height:2px;
  background:var(--dark);
  border-radius:1px;
  transition:transform 0.25s,opacity 0.25s;
}
.nav-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.is-active span:nth-child(2){opacity:0}
.nav-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ═══════════════════════════════════
   HERO SLIDER AREA
═══════════════════════════════════ */
.hero{
  position:relative;
  height:calc(100vh - 113px);
  min-height:520px;max-height:620px;
  overflow:hidden;
}
.hero-slides{position:relative;width:100%;height:100%}
.hero-slide{
  position:absolute;inset:0;
  opacity:0;transition:opacity 0.9s ease;
}
.hero-slide.active{opacity:1}
.hero-slide img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  filter:brightness(0.45) saturate(0.85);
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(110deg, rgba(0, 0, 0, 0.75) 0%, rgb(26 26 46 / 34%) 60%, transparent 100%);
}
.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:0 7%;
  text-align:center;
}
.hero-eyebrow{
    margin-left:auto;
    margin-right:auto;
}
.hero-desc{
    margin-left:auto;
    margin-right:auto;
}
.hero-btns{
    justify-content:center;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(192,57,43,0.25);
  border:1px solid rgba(192,57,43,0.5);
  color:rgba(255,255,255,0.9);
  padding:6px 16px;border-radius:30px;
  font-size:12px;font-weight:500;letter-spacing:1.2px;
  text-transform:uppercase;margin-bottom:22px;width:fit-content;
}
.hero-eyebrow span{
  width:6px;height:6px;background:#c9972e;border-radius:50%;
  animation:blink 2s infinite;
}
.section-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(192,57,43,0.25);
  border:1px solid rgba(192,57,43,0.5);
  color: var(--red-dark);
  padding:6px 16px;border-radius:30px;
  font-size:12px;font-weight:500;letter-spacing:1.2px;
  text-transform:uppercase;margin-bottom:22px;width:fit-content;
}
.section-eyebrow span{
  width:6px;height:6px;background:#c9972e;border-radius:50%;
  animation:blink 2s infinite;
}
.dark-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(255 255 255 / 22%);
    border: 1px solid rgb(255 255 255 / 50%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: fit-content;
}
.dark-section-eyebrow span{
  width:6px;height:6px;background:#c9972e;border-radius:50%;
  animation:blink 2s infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}
.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,5.5vw,70px);
  font-weight:700;line-height:1.07;
  color:#fff;letter-spacing:-0.5px;
  margin-bottom:20px;
}
.hero-title em{font-style:italic;color:#96c22b}
.hero-desc{
  font-size:17px;font-weight:300;
  color:rgba(255,255,255,0.75);
  line-height:1.75;
  margin-bottom:36px;
  max-width: 700px;
}
.hero-btns{display:flex;gap:14px;}
.btn-red{
  background:var(--red-dark);color:#fff;
  padding:14px 32px;border-radius:7px;
  font-size:15px;font-weight:600;
  text-decoration:none;
  transition:background 0.2s,transform 0.15s;
  display:inline-block;
  border:var(--red);
}
.btn-red:hover{background:var(--green);transform:translateY(-2px); color:#000}
.btn-ghost{
  border:2px solid rgba(255,255,255,0.4);color:#fff;
  padding:12px 28px;border-radius:7px;
  font-size:15px;font-weight:400;
  text-decoration:none;
  transition:border-color 0.2s,background 0.2s;
  display:inline-block;
}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,0.08)}

/* slide dots */
.hero-dots{
  position:absolute;
  bottom:32px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:20;
}
.dot{
  width:28px;height:4px;border-radius:2px;
  background:rgba(255,255,255,0.3);cursor:pointer;
  transition:background 0.3s,width 0.3s;
}
.dot.active{background:var(--red);width:44px}

/* slide stats */
.hero-stats{
  position:absolute;bottom:32px;right:6%;
  display:flex;gap:32px;
}
.h-stat{text-align:center}
.h-stat-num{
  font-family:'Playfair Display',serif;
  font-size:28px;font-weight:700;color:#fff;
}
.h-stat-label{font-size:12px;color:rgb(255 255 255 / 73%);margin-top:2px}

/* ═══════════════════════════════════
   QUICK INFO STRIP
═══════════════════════════════════ */
.quick-strip{
  background:var(--off-white);
  border-bottom:3px solid var(--red);
  display:grid;grid-template-columns:repeat(4,1fr);

}
.quick-item{
  display:flex;align-items:center;gap:16px;
  padding:28px 32px;
  border-right:1px solid var(--border);
  transition:background 0.2s;
}
.quick-item:last-child{border-right:none}
.quick-item:hover{background:var(--white);color:var(--charcoal)}
.quick-icon{
  width:52px;height:52px;min-width:52px;
  background:var(--red-pale);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  transition:background 0.2s;
}
.quick-item:hover .quick-icon{background:var(--red);filter:none;color:var(--dark)}
.quick-title{font-size:15px;font-weight:600;margin-bottom:4px}
.quick-desc{font-size:13px;color:var(--gray);line-height:1.4}

/* ═══════════════════════════════════
   SECTION COMMON
═══════════════════════════════════ */
.section{padding:30px 5%}
.section-alt{background:var(--off-white)}

/* Global right-side What's New rail */
.whats-new-rail{
  position:fixed;
  z-index:9000;
  right:0;
  top:55%;
  transform:translateY(-50%);
  width:38px;
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#a8d43b,#96c22b);
  color:#111827;
  border-radius:8px 0 0 8px;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(65,91,15,.25);
  transition:transform .2s ease,box-shadow .2s ease;
}
.whats-new-rail:hover{
  color:#111827;
  transform:translate(-3px,-50%);
  box-shadow:0 14px 32px rgba(65,91,15,.34);
}
.whats-new-label{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:14px;
  font-weight:800;
  letter-spacing:.3px;
  white-space:nowrap;
}
.whats-new-count{
  position:absolute;
  top:8px;
  left:-10px;
  min-width:21px;
  height:21px;
  padding:0 5px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #fff;
  border-radius:999px;
  background:#c62828;
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1;
  box-shadow:0 4px 12px rgba(198,40,40,.32);
}
@media(max-width:600px){
  .whats-new-rail{width:33px;min-height:112px;top:58%}
  .whats-new-label{font-size:12px}
  .whats-new-count{left:-8px;min-width:19px;height:19px;font-size:10px}
}
.eyebrow{
  font-size:12px;font-weight:600;letter-spacing:2px;
  text-transform:uppercase;color:var(--red);
  margin-bottom:12px;display:flex;align-items:center;gap:10px;
}
.eyebrow::before{
  content:'';width:32px;height:2px;background:var(--red);border-radius:1px;
}
.sec-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,3.5vw,46px);
  font-weight:700;line-height:1.12;
  color:var(--dark);letter-spacing:-0.3px;
  margin-bottom:16px;
}
.sec-body{
  font-size:16px;font-weight:300;
  color:var(--gray);line-height:1.8;
}

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-grid{
  display:grid;grid-template-columns:1fr 1.1fr;
  gap:80px;align-items:center;
}
.about-img-wrap{position:relative;padding-bottom:32px;padding-right:32px}
.about-img-main{
  width:100%;
  object-fit:cover;border-radius:16px;
  display:block;
}
.about-img-small{
  position:absolute;bottom:0;right:0;
  width:48%;aspect-ratio:1;
  object-fit:cover;border-radius:14px;
  border:5px solid var(--white);
  box-shadow:0 8px 32px rgba(0,0,0,0.12);
}
.about-badge-exp{
  position:absolute;top:32px;left:-20px;
  background:var(--red);color:#fff;
  border-radius:14px;padding:18px 22px;
  text-align:center;
  box-shadow:0 12px 32px rgba(192,57,43,0.35);
}
.exp-num{
  font-family:'Playfair Display',serif;
  font-size:36px;font-weight:700;display:block;line-height:1;
}
.exp-text{font-size:12px;opacity:0.85;margin-top:4px}
.about-content .sec-body{margin-bottom:28px}
.about-points{
  display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:32px;
}
.about-point{
  display:flex;align-items:flex-start;gap:12px;
  padding:16px;background:var(--off-white);
  border-radius:10px;border:1px solid var(--border);
  transition:border-color 0.2s,box-shadow 0.2s;
}
.about-point:hover{border-color:var(--red);box-shadow:0 4px 16px rgba(192,57,43,0.08)}
.ap-icon{
  width:36px;height:36px;min-width:36px;
  background:var(--red-pale);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
}
.ap-title{font-size:14px;font-weight:600;color:var(--dark);margin-bottom:3px}
.ap-desc{font-size:12px;color:var(--gray);line-height:1.5}

/* mission/vision boxes */
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:28px}
.mv-box{
  background:var(--white);border:1px solid var(--border);
  border-radius:12px;padding:24px;
  border-top:3px solid var(--red);
  transition:box-shadow 0.2s;
}
.mv-box:hover{box-shadow:0 8px 24px rgba(0,0,0,0.08)}
.mv-label{
  font-size:12px;font-weight:600;color:var(--red);
  letter-spacing:1.5px;text-transform:uppercase;margin-bottom:10px;
}
.mv-text{font-size:14px;color:var(--gray);line-height:1.65}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services-bg{
  background:var(--charcoal);
  position:relative;overflow:hidden;
}
.services-bg::before{
  content:'';
  position:absolute;top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(192,57,43,0.15) 0%,transparent 70%);
  pointer-events:none;
}
.services-header-row{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:52px;
}
.services-header-row .sec-title{color:#fff;margin-bottom:0}
.services-header-row .eyebrow{color:#96c22b}
.services-header-row .eyebrow::before{background:#96c22b}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.svc-card{
  background:var(--off-white);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:14px;padding:28px 22px;
  transition:background 0.3s,border-color 0.3s,transform 0.2s;
  position:relative;overflow:hidden;
  cursor:default;
}
.svc-card::after{
  content:'';
  position:absolute;bottom:0;left:0;right:0;
  height:3px;background:var(--red);
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.3s;
}
.svc-card:hover{background:rgba(255,255,255,0.09);border-color:rgba(192,57,43,0.3);transform:translateY(-4px); color: #ffffff;}
.svc-card:hover::after{transform:scaleX(1)}
.svc-icon{
  width:50px;height:50px;
  background:rgba(192,57,43,0.15);border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;margin-bottom:18px;
}
.svc-name{font-size:15px;font-weight:600;;margin-bottom:8px}
.svc-desc{font-size:13px;font-weight:300;line-height:1.65}

/* ═══════════════════════════════════
   STREAMS / COURSES
═══════════════════════════════════ */
.streams-header{text-align:center;margin-bottom:52px}
.streams-header .eyebrow{justify-content:center}
.streams-header .eyebrow::before{display:none}
.streams-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
}
.str-card{
  background:var(--white);
  border:1px solid var(--border);border-radius:12px;
  padding:20px 18px;
  display:flex;align-items:center;gap:14px;
  transition:border-color 0.2s,box-shadow 0.2s,transform 0.2s;
  cursor:pointer;text-decoration:none;color:inherit;
}
.str-card:hover{
  border-color:var(--red);
  box-shadow:0 6px 20px rgba(192,57,43,0.10);
  transform:translateY(-3px);
}
.str-emoji{font-size:24px;line-height:1}
.str-name{font-size:14px;font-weight:600;color:var(--dark)}
.str-sub{font-size:12px;color:var(--gray);margin-top:2px}

/* free consultation CTA inside streams */
.streams-cta{
  text-align:center;margin-top:40px;
}

/* ═══════════════════════════════════
   FINANCIAL / SCHOLARSHIP CARDS
═══════════════════════════════════ */
.financial-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:52px;
}
.fin-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:16px;overflow:hidden;
  transition:transform 0.2s,box-shadow 0.2s;
}
.fin-card:hover{transform:translateY(-5px);box-shadow:0 20px 48px rgba(0,0,0,0.10)}
.fin-img{
  width:100%;height:200px;object-fit:cover;display:block;
  transition:transform 0.4s;
}
.fin-card:hover .fin-img{transform:scale(1.04)}
.fin-img-wrap{overflow:hidden}
.fin-body{padding:26px}
.fin-tag{
  display:inline-block;
  background:var(--red-pale);color:var(--red);
  font-size:11px;font-weight:600;letter-spacing:0.8px;
  text-transform:uppercase;padding:4px 10px;border-radius:20px;
  margin-bottom:12px;
}
.fin-title{font-size:17px;font-weight:600;color:var(--dark);margin-bottom:10px}
.fin-desc{font-size:14px;color:var(--gray);line-height:1.65;margin-bottom:16px}
.fin-list{list-style:none}
.fin-list li{
  font-size:13px;color:var(--gray);
  padding:5px 0 5px 20px;position:relative;
  border-bottom:1px dashed var(--gray-light);
}
.fin-list li:last-child{border-bottom:none}
.fin-list li::before{
  content:'✓';position:absolute;left:0;
  color:var(--red);font-weight:700;font-size:11px;top:6px;
}

/* ═══════════════════════════════════
   WHY US / 4 PILLARS
═══════════════════════════════════ */
.why-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  margin-top:52px;
}
.why-card{
  text-align:center;padding:36px 24px;
  background:var(--white);border:1px solid var(--border);
  border-radius:14px;
  transition:border-color 0.2s,box-shadow 0.2s,transform 0.2s;
}
.why-card:hover{border-color:var(--red);box-shadow:0 12px 32px rgba(192,57,43,0.08);transform:translateY(-4px)}
.why-icon{
  width:70px;height:70px;
  background:var(--red-pale);border-radius:20px;
  display:flex;align-items:center;justify-content:center;
  font-size:30px;margin:0 auto 20px;
  transition:background 0.2s;
}
.why-card:hover .why-icon{background:var(--red)}
.why-title{font-size:16px;font-weight:600;color:var(--dark);margin-bottom:10px}
.why-desc{font-size:14px;color:var(--gray);line-height:1.65}

/* ═══════════════════════════════════
   PROCESS — 3 STEPS
═══════════════════════════════════ */
.process-section{background:var(--charcoal)}
.process-section .sec-title{color:#fff}
.process-section .eyebrow{color:#96c22b}
.process-section .eyebrow::before{background:#96c22b}
.process-section .sec-body{color:rgb(255 255 255 / 73%);margin-bottom:56px}
.steps-row{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;position:relative;
}
.steps-row::before{
  content:'';
  position:absolute;top:50px;left:calc(16.66% + 26px);right:calc(16.66% + 26px);
  height:2px;background:rgba(255,255,255,0.08);z-index:0;
}
.step-item{text-align:center;padding:0 32px;position:relative;z-index:1}
.step-circle{
  width:100px;height:100px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  border:2px solid rgba(255,255,255,0.10);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  margin:0 auto 28px;
  transition:background 0.3s,border-color 0.3s;
}
.step-item:hover .step-circle{background:rgba(192,57,43,0.2);border-color:var(--red)}
.step-n{
  font-family:'Playfair Display',serif;
  font-size:32px;font-weight:700;color:#fff;line-height:1;
}
.step-emoji{font-size:14px;margin-top:2px}
.step-title-t{font-size:18px;font-weight:600;color:#fff;margin-bottom:12px}
.step-desc-t{font-size:14px;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.7}

/* ═══════════════════════════════════
   CEO QUOTE / ABOUT LEADER
═══════════════════════════════════ */
.leader-section{
  background:var(--charcoal);
  padding:80px 7%;
  display:grid;grid-template-columns:1fr 1.5fr;
  gap:80px;align-items:center;
}
.leader-left{text-align:center}
.leader-img-wrap{
  width:220px;height:220px;border-radius:50%;
  overflow:hidden;margin:0 auto 20px;
  border:6px solid rgba(255,255,255,0.25);
}
.leader-img{width:100%;height:100%;object-fit:cover}
.leader-name{font-size:20px;font-weight:600;color:#fff}
.leader-role{font-size:14px;color:rgba(255,255,255,0.7);margin-top:4px}
.leader-content{color:#fff}
.leader-quote{
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,2.5vw,34px);
  font-weight:600;line-height:1.35;
  margin-bottom:24px;
  font-style:italic;
  position:relative;padding-left:24px;
}
.leader-quote::before{
  content:'"';
  font-size:80px;color:rgba(255,255,255,0.2);
  position:absolute;left:-10px;top:-20px;
  font-family:'Playfair Display',serif;
  line-height:1;
}
.leader-body{font-size:15px;font-weight:300;line-height:1.8;color:rgba(255,255,255,0.85);margin-bottom:28px}
.leader-points{display:flex;flex-direction:column;gap:14px}
.lp{display:flex;align-items:flex-start;gap:14px}
.lp-num{
  width:32px;height:32px;min-width:32px;
  background:rgba(255,255,255,0.15);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:600;color:#fff;
}
.lp-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:3px}
.lp-desc{font-size:13px;color:rgba(255,255,255,0.7)}

/* ═══════════════════════════════════
   PARTNER INSTITUTES
═══════════════════════════════════ */
.partners-section{background:var(--off-white)}
.partners-header{text-align:center;margin-bottom:48px}
.partner-tile{
  background:var(--white);border:1px solid var(--border);
  border-radius:12px;padding:20px 16px;
  display:flex;align-items:center;justify-content:center;
  min-height:80px;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.partner-tile:hover{border-color:var(--red);box-shadow:0 4px 16px rgba(192,57,43,0.1)}
.partner-name{
  font-size:13px;font-weight:600;color:var(--gray);
  text-align:center;line-height:1.4;
  transition:color 0.2s;
}
.partner-tile:hover .partner-name{color:var(--red)}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testi-header{text-align:center;margin-bottom:12px}
.testi-header .eyebrow{justify-content:center}
.testi-header .eyebrow::before{display:none}
.testi-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}
.testi-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:16px;padding:32px 28px;
  transition:box-shadow 0.2s,border-color 0.2s;
  position:relative;
}
.testi-card:hover{box-shadow:0 12px 36px rgba(0,0,0,0.08);border-color:rgba(192,57,43,0.2)}
.testi-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:18px}
.testi-stars{color:var(--red);font-size:16px;letter-spacing:1px}
.testi-quote-mark{
  font-family:'Playfair Display',serif;
  font-size:60px;color:var(--red-pale);line-height:0.7;
  font-weight:700;
}
.testi-text{
  font-size:15px;font-weight:300;
  color:#444;line-height:1.8;
  margin-bottom:24px;
  font-style:italic;
}
.testi-footer{display:flex;align-items:center;gap:14px}
.testi-av{
  width:46px;height:46px;border-radius:50%;
  background:var(--red);
  display:flex;align-items:center;justify-content:center;
  font-weight:600;font-size:14px;color:#fff;
}
.testi-n{font-size:15px;font-weight:600;color:var(--dark)}
.testi-c{font-size:12px;color:var(--red);margin-top:2px}

/* ═══════════════════════════════════
   TESTIMONIAL SLIDER (home page)
═══════════════════════════════════ */
.testi-section-bg{
  background:var(--red-dark);
  position:relative;
}
.testi-section-bg::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}
.tslider{
  position:relative;
  max-width:1080px;
  margin:0 auto;
  padding:0 60px;
}
.tslider-viewport{
  overflow:hidden;
  border-radius:18px;
}
.tslider-track{
  display:flex;
  transition:transform .65s cubic-bezier(.55,.05,.25,1);
  will-change:transform;
}
.tslider-slide{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:10px;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:15px 15px;
  box-shadow:0 8px 30px rgba(0,0,0,0.04);
}
.tslider-photo-wrap{
  position:relative;
  width:150px;height:150px;
  border-radius:50%;
  overflow:visible;
  margin:0 auto;
}
.tslider-photo-wrap::before{
  content:"";
  position:absolute;inset:-8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--red) 0%,#96c22b 100%);
  z-index:0;
}
.tslider-photo-wrap img{
  position:relative;z-index:1;
  width:100%;height:100%;
  border-radius:50%;
  object-fit:cover;
  border:5px solid #fff;
}
.tslider-quote-badge{
  position:absolute;
  bottom:6px;right:-4px;
  width:54px;height:54px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-family:'Playfair Display',serif;
  font-size:50px;font-weight:700;
  display:flex;align-items:flex-end;justify-content:center;
  line-height:.7;
  padding-bottom:10px;
  box-shadow:0 6px 16px rgba(192,57,43,0.35);
  z-index:2;
}
.tslider-body{padding:8px 0}
.tslider-stars{
  color:var(--red);
  font-size:18px;letter-spacing:2px;
  margin-bottom:14px;
}
.tslider-text{
  font-size:15px;font-weight:300;
  color:#333;line-height:1.5;
  font-style:italic;
  margin:0 0 12px;
}
.tslider-name{
  font-family:'Playfair Display',serif;
  font-size:24px;font-weight:700;
  color:var(--dark);
  margin-bottom:2px;
}
.tslider-course{
  font-size:13px;
  color:var(--red);
  letter-spacing:.4px;
}

/* arrows */
.tslider-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:48px;height:48px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--border);
  color:var(--red);
  font-size:28px;line-height:1;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:all .25s ease;
  z-index:5;
  font-weight:300;
  padding-bottom:4px;
}
.tslider-arrow:hover{
  background:var(--red);
  color:#fff;
  transform:translateY(-50%) scale(1.05);
  border-color:var(--red);
}
.tslider-prev{left:0}
.tslider-next{right:0}

/* dots */
.tslider-dots{
  display:flex;justify-content:center;gap:8px;
  margin-top:30px;
}
.tslider-dot{
  width:10px;height:10px;
  border-radius:50%;
  background:#ffffff;
  border:none;
  cursor:pointer;
  padding:0;
  transition:all .25s ease;
}
.tslider-dot.is-active{
  background:var(--charcoal);
  width:28px;
  border-radius:6px;
}

@media (max-width: 820px){
    .tslider{
        position:relative;
        overflow:hidden;
        padding-bottom:60px !important;
    }

    .tslider-arrow{
        width:42px !important;
        height:42px !important;
        font-size:20px !important;
        top:auto !important;
        bottom:0 !important;
        transform:none !important;
        z-index:10;
    }

    .tslider-prev{
        left:calc(50% - 55px) !important;
    }

    .tslider-next{
        right:calc(50% - 55px) !important;
    }
  .tslider-slide{
    grid-template-columns:1fr;
    text-align:center;
    padding:36px 24px 32px;
    gap:24px;
  }
  .tslider-photo-wrap{width:160px;height:160px}
  .tslider-quote-badge{width:42px;height:42px;font-size:38px;padding-bottom:8px}
  .tslider-text{font-size:15px}
  .tslider-dots{margin-top:18px}
}

/* ═══════════════════════════════════
   CONTACT / CONSULTATION SECTION
═══════════════════════════════════ */
.contact-section{
  background:var(--off-white);
  display:grid;grid-template-columns:1.1fr 1fr;
  min-height:600px;
}
.contact-left{
  background:var(--charcoal);
  padding:72px 6%;
  position:relative;overflow:hidden;
}
.contact-left::before{
  content:'';
  position:absolute;bottom:-100px;right:-100px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(192,57,43,0.2) 0%,transparent 70%);
  pointer-events:none;
}
.contact-left .sec-title{color:#fff;margin-bottom:16px}
.contact-left .eyebrow{color:#96c22b}
.contact-left .eyebrow::before{background:#96c22b}
.contact-left .sec-body{color:rgb(255 255 255 / 73%);margin-bottom:36px}
.contact-info{display:flex;flex-direction:column;gap:18px;margin-bottom:36px}
.ci-item{display:flex;align-items:flex-start;gap:14px}
.ci-icon{
  width:42px;height:42px;min-width:42px;
  background:rgba(192,57,43,0.2);border-radius:10px;
  display:flex;align-items:center;justify-content:center;font-size:18px;
}
.ci-label{font-size:12px;color:rgba(255,255,255,0.4);margin-bottom:3px}
.ci-val{font-size:14px;color:#fff}
.ci-val a{color:rgba(255,255,255,0.85);text-decoration:none}
.ci-val a:hover{color:var(--red-light)}
.benefits-list{display:flex;flex-direction:column;gap:10px}
.benefit{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:rgba(255,255,255,0.7);
}
.benefit::before{
  content:'';width:8px;height:8px;min-width:8px;
  background:var(--red);border-radius:50%;
}

.contact-right{padding:72px 6%;background:var(--red-dark)}

.form-flash{padding:12px 16px;border-radius:8px;margin-bottom:18px;font-size:14px}
.form-flash-success{background:#e6f7ec;border:1px solid #a3d9b1;color:#1e7e34}
.form-flash-error{background:#fff3ee;border:1px solid #f2c9ba;color:#8a351e}

/* ═══════════════════════════════════
   CONSULTATION MODAL
═══════════════════════════════════ */
.consult-modal{
  position:fixed;inset:0;
  z-index:10000;
  display:none;
  align-items:center;justify-content:center;
  padding:24px 16px;
  overflow-y:auto;
}
.consult-modal.is-open{display:flex}
.consult-modal-backdrop{
  position:fixed;inset:0;
  background:rgba(4,16,42,.8);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}
.consult-modal-card{
  position:relative;z-index:1;
  width:100%;max-width:790px;
  max-height:calc(100vh - 48px);
  overflow-y:auto;
  padding:0;
  background:#fff;
  border:1px solid rgba(255,255,255,.72);
  border-radius:24px;
  box-shadow:0 34px 95px rgba(0,10,38,.46),0 0 0 5px rgba(255,255,255,.07);
  scrollbar-width:thin;
  scrollbar-color:#8fa5c3 transparent;
  animation:modalSlide 0.3s ease;
}
.consult-modal-card::-webkit-scrollbar{width:7px}
.consult-modal-card::-webkit-scrollbar-track{background:transparent}
.consult-modal-card::-webkit-scrollbar-thumb{border:2px solid transparent;border-radius:999px;background:#8fa5c3;background-clip:padding-box}
@keyframes modalSlide{
  from{opacity:0;transform:translateY(-20px)}
  to{opacity:1;transform:translateY(0)}
}
.consult-modal-close{
  position:absolute;top:18px;right:18px;
  width:38px;height:38px;
  border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.1);
  color:#fff;
  border-radius:12px;
  font-size:21px;line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,color .2s,transform .15s,border-color .2s;
  z-index:2;
}
.consult-modal-close:hover{border-color:rgba(255,255,255,.45);background:rgba(255,255,255,.2);color:#fff;transform:rotate(90deg)}
.consult-modal-header{
  position:relative;
  overflow:hidden;
  margin:0;
  padding:27px 76px 25px 31px;
  background:
    radial-gradient(circle at 88% 15%,rgba(39,195,184,.24),transparent 30%),
    radial-gradient(circle at 8% 0,rgba(48,109,255,.38),transparent 35%),
    linear-gradient(128deg,#06152f 0%,#092b6b 53%,#101f51 100%);
}
.consult-modal-header::after{
  content:"";
  position:absolute;
  right:-45px;bottom:-88px;
  width:180px;height:180px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:36px;
  transform:rotate(34deg);
  pointer-events:none;
}
.consult-modal-eyebrow{display:flex;align-items:center;gap:9px;margin-bottom:10px;color:#dce8ff;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.13em}
.consult-modal-eyebrow span{width:8px;height:8px;border-radius:50%;background:var(--sp-mint);box-shadow:0 0 0 5px rgba(39,195,184,.15)}
.consult-modal-body{padding:25px 31px 30px}
body.modal-open{overflow:hidden}

.consult-popup-title{
  margin:0 0 6px;
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-size:29px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.04em;
}
.consult-popup-subtitle{position:relative;z-index:1;margin:0;color:#c8d6f2;font-size:13.5px;line-height:1.55}
.consult-popup-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px 14px}
.consult-popup-field{display:flex;min-width:0;flex-direction:column;gap:7px;color:#263a59;font-size:12.5px;font-weight:700}
.consult-popup-field>span{display:block}
.consult-popup-field b,.consult-popup-consent b{color:#f04f5f}
.consult-popup-field input,.consult-popup-field select,.consult-popup-field textarea{
  width:100%;
  min-height:46px;
  padding:11px 13px;
  border:1px solid var(--sp-line);
  border-radius:11px;
  outline:none;
  background:#f9fbfe;
  color:var(--sp-ink);
  font:600 14px/1.45 'DM Sans',sans-serif;
  transition:border-color .2s,box-shadow .2s,background .2s;
}
.consult-popup-field select{cursor:pointer}
.consult-popup-field textarea{min-height:79px;resize:vertical}
.consult-popup-field input::placeholder,.consult-popup-field textarea::placeholder{color:#8a919a;font-weight:500}
.consult-popup-field input:hover,.consult-popup-field select:hover,.consult-popup-field textarea:hover{border-color:#bdcce2}
.consult-popup-field input:focus,.consult-popup-field select:focus,.consult-popup-field textarea:focus{border-color:var(--sp-blue);background:#fff;box-shadow:0 0 0 3px rgba(18,87,229,.11)}
.consult-popup-field .is-invalid{border-color:#d93653;background:#fff8fa}
.consult-popup-field small,.consult-popup-consent-error{color:#bf1837;font-size:11px;font-weight:650;line-height:1.35}
.consult-popup-field-full{grid-column:1/-1}
.consult-popup-consent{display:flex;align-items:flex-start;gap:9px;margin:16px 0;color:#60708a;font-size:11.5px;font-weight:600;line-height:1.48}
.consult-popup-consent input{width:17px;height:17px;margin:1px 0 0;flex:0 0 17px;accent-color:var(--sp-coral)}
.consult-popup-consent a{color:var(--sp-blue-dark);font-weight:700;text-decoration:underline;text-underline-offset:2px}
.consult-popup-consent-error{display:block;margin:-9px 0 13px 26px}
.consult-popup-submit{
  display:flex;align-items:center;justify-content:center;
  gap:18px;
  width:100%;min-height:52px;
  padding:8px 8px 8px 20px;
  border:0;border-radius:13px;
  background:var(--sp-action-gradient);
  box-shadow:var(--sp-action-shadow);
  color:#fff;
  font:800 14px/1 'Manrope',sans-serif;
  cursor:pointer;
  transition:transform .2s,box-shadow .2s,filter .2s;
}
.consult-popup-submit-icon{display:grid;place-items:center;width:36px;height:36px;border-radius:10px;background:rgba(255,255,255,.17);font-size:18px;line-height:1}
.consult-popup-submit:hover{transform:translateY(-1px);background:var(--sp-action-gradient-hover);box-shadow:0 16px 34px rgba(255,86,77,.36)}
.consult-popup-submit:disabled{cursor:wait;opacity:.75;transform:none}

@media (max-width:640px){
  .consult-modal{align-items:flex-start;padding:12px}
  .consult-modal-card{max-height:calc(100vh - 24px);padding:0;border-radius:18px}
  .consult-modal-close{top:14px;right:14px;width:34px;height:34px}
  .consult-modal-header{padding:23px 57px 21px 20px}
  .consult-modal-body{padding:20px}
  .consult-popup-title{font-size:23px;line-height:1.25}
  .consult-popup-subtitle{font-size:12.5px}
  .consult-popup-grid{grid-template-columns:1fr;gap:13px}
  .consult-popup-field-full{grid-column:auto}
  .consult-popup-consent{font-size:11px}
  .contact-cta-card{padding:32px 22px}
}
@media (prefers-reduced-motion:reduce){
  .consult-modal-card{animation:none}
  .consult-modal-close,.consult-popup-field input,.consult-popup-field select,.consult-popup-field textarea,.consult-popup-submit{transition:none}
}
.form-title{
  font-family:'Playfair Display',serif;
  font-size:28px;font-weight:700;color:var(--dark);margin-bottom:8px;
}
.form-sub{font-size:14px;color:var(--gray);margin-bottom:32px}
.step-indicators{display:flex;gap:8px;margin-bottom:28px}
.step-dot{
  flex:1;height:4px;border-radius:2px;
  background:var(--gray-light);
  transition:background 0.3s;
}
.step-dot.done{background:var(--red)}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.pre-footer-links{background:#f7fbfd;color:#13252d;padding:34px 7% 30px;border-top:1px solid #e2edf3;border-bottom:1px solid #d5e5ee}.pre-footer-inner{max-width:1280px;margin:0 auto;display:grid;gap:28px;text-align:center}.pre-footer-block h2{margin:0 0 16px;color:#13252d;font-size:16px;font-weight:900;text-transform:uppercase;letter-spacing:.4px}.pre-footer-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}.pre-footer-pills a{display:inline-flex;align-items:center;min-height:32px;padding:7px 14px;border-radius:999px;background:#ffffff;color:#10232b;border:1px solid #9fb9c6;text-decoration:none;font-size:14px;font-weight:700;line-height:1.25;box-shadow:0 5px 14px rgba(15,23,42,.04);transition:background .2s,color .2s,transform .2s,border-color .2s,box-shadow .2s}.pre-footer-pills a:hover{background:#eef7fb;border-color:#55798b;color:#0b1f28;transform:translateY(-2px);box-shadow:0 9px 22px rgba(15,23,42,.08)}
footer{background:#0a0a14;color:rgba(255,255,255,0.45)}
.footer-top{
  display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:48px;padding:64px 7% 48px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.footer-logo-img{
  height:60px;width:auto;display:block;
  margin-bottom:18px;
}
.footer-desc{font-size:14px;line-height:1.75;margin-bottom:20px}
.footer-social{display:flex;gap:10px;align-items:center}
.footer-social .soc-btn{
  width:36px;height:36px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
  border-radius:8px;display:flex;align-items:center;justify-content:center;
  font-size:14px;text-decoration:none;color:rgba(255,255,255,0.5);
  transition:background 0.2s,color 0.2s,border-color 0.2s;
}
.footer-social .soc-btn svg{width:17px;height:17px;display:block;fill:currentColor}
.footer-social .soc-btn:hover{background:var(--red);border-color:var(--red);color:#fff}
.footer-col-title{
  font-size:13px;font-weight:600;color:#fff;
  letter-spacing:0.5px;margin-bottom:18px;
}
.footer-links{list-style:none}
.footer-links li{margin-bottom:11px}
.footer-links a{
  color:rgba(255,255,255,0.4);text-decoration:none;
  font-size:14px;transition:color 0.2s;
  display:flex;align-items:center;gap:8px;
}
.footer-links a::before{
  content:'›';color:var(--red);font-size:16px;
}
.footer-links a:hover{color:rgba(255,255,255,0.85)}
.footer-newsletter input{
  width:100%;padding:11px 14px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:8px;
  color:#fff;font-size:13px;font-family:'Outfit',sans-serif;
  margin-bottom:10px;outline:none;
  transition:border-color 0.2s;
}
.footer-newsletter input::placeholder{color:rgba(255,255,255,0.3)}
.footer-newsletter input:focus{border-color:var(--red)}
.footer-newsletter button{
  width:100%;background:var(--red);color:#fff;
  border:none;cursor:pointer;
  padding:11px;border-radius:8px;
  font-size:13px;font-weight:600;font-family:'Outfit',sans-serif;
  transition:background 0.2s;
}
.footer-newsletter button:hover{background:var(--red-dark)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 7%;font-size:13px;
}
.footer-bottom a{color:rgba(255,255,255,0.3);text-decoration:none;margin-left:20px;transition:color 0.2s}
.footer-bottom a:hover{color:rgba(255,255,255,0.7)}

/* ═══════════════════════════════════
   PAGE BANNER (about, contact)
═══════════════════════════════════ */
.page-banner{
  position:relative;
  height:380px;
  overflow:hidden;
  display:flex;align-items:center;
}
.page-banner-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  filter:brightness(0.4) saturate(0.85);
  z-index:0;
}
.page-banner-overlay{
  position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(0,0,0,0.7) 0%,rgba(192,57,43,0.35) 70%,transparent 100%);
  z-index:1;
}
.page-banner-content{
  position:relative;z-index:2;
  padding:0 7%;
  max-width:960px;
}
.page-banner-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(34px,4.5vw,54px);
  font-weight:700;line-height:1.12;
  color:#fff;letter-spacing:-0.5px;
  margin:14px 0 14px;
}
.page-banner-title em{font-style:italic;color:#96c22b}
.page-banner-desc{
  font-size:16px;font-weight:300;
  color:rgba(255,255,255,0.78);
  line-height:1.7;max-width:520px;
  margin-bottom:18px;
}
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:rgba(255,255,255,0.7);
}
.breadcrumb a{color:rgba(255,255,255,0.85);text-decoration:none}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{color:rgba(255,255,255,0.5)}

/* ═══════════════════════════════════
   IMPACT NUMBERS (about page)
═══════════════════════════════════ */
.impact-section{background:var(--off-white)}
.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

@media only screen and (max-width:768px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}
.impact-stat{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px;
  padding:36px 22px;
  text-align:center;
  transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
}
.impact-stat:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(192,57,43,0.08);
  border-color:var(--red);
}
.impact-num{
  font-family:'Playfair Display',serif;
  font-size:48px;font-weight:700;color:var(--red);
  line-height:1;
}
.impact-label{
  font-size:14px;color:var(--gray);
  margin-top:10px;letter-spacing:0.5px;
}

/* ═══════════════════════════════════
   MAP SECTION (contact page)
═══════════════════════════════════ */
.map-section{
  width:100%;
  background:var(--off-white);
  border-top:1px solid var(--border);
}
.map-section iframe{display:block;width:100%}

/* ═══════════════════════════════════
   COURSES LISTING + DETAIL
═══════════════════════════════════ */
.course-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.course-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
}
.course-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
  border-color:var(--red);
}
.course-card-img-wrap{
  position:relative;display:block;overflow:hidden;
  aspect-ratio:16/10;background:var(--gray-pale);
}
.course-card-img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform 0.4s;
}
.course-card:hover .course-card-img{transform:scale(1.06)}
.course-card-tag{
  position:absolute;top:12px;left:12px;
  background:var(--red);color:#fff;
  font-size:11px;font-weight:600;
  letter-spacing:0.5px;
  padding:4px 10px;border-radius:20px;
  text-transform:uppercase;
}
.course-card-body{
  padding:20px;
  display:flex;flex-direction:column;
  flex:1;
}
.course-card-title{
  font-size:16px;font-weight:600;
  color:var(--dark);
  line-height:1.35;margin-bottom:10px;
}
.course-card-title a{color:inherit;text-decoration:none}
.course-card-title a:hover{color:var(--red)}
.course-card-meta{
  display:flex;flex-wrap:wrap;gap:12px;
  font-size:12px;color:var(--gray);
  margin-bottom:12px;
}
.course-card-meta span{display:inline-flex;align-items:center;gap:4px}
.course-card-desc{
  font-size:13px;color:var(--gray);
  line-height:1.6;
  margin-bottom:18px;
  flex:1;
}
.course-card-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.course-card-actions .college-compare-btn{
    grid-column:1 / -1;
    width:100%;
}
@media (max-width: 767px){

    .course-card-actions{
        grid-template-columns:1fr;
    }

    .course-card-actions .college-compare-btn{
        grid-column:auto;
    }

}
.course-card-actions .btn-red,
.course-card-actions .btn-outline{
  padding:10px 12px;
  font-size:13px;
  text-align:center;
  border-radius:6px;
}

/* College listing actions: compact 2 x 2 grid. */
.college-card-actions{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  padding:0 12px 12px;
}
.college-card-actions .college-action-btn,
.college-card-actions .college-compare-btn{
  grid-column:auto;
  width:100%;
  min-width:0;
  min-height:36px;
  padding:7px 9px;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  font-family:inherit;
  font-size:12px;
  font-weight:700;
  line-height:1.15;
  text-align:center;
  box-sizing:border-box;
}
.college-media-btn{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  text-decoration:none;
  border:1px solid transparent;
  box-shadow:0 5px 14px rgba(192,57,43,.18);
  animation:college-media-pulse 2.2s ease-in-out infinite;
}
.college-media-btn.is-360{
  background:linear-gradient(120deg,#6f9918,#96c22b);
  border-color:#7fac20;
  box-shadow:0 5px 16px rgba(150,194,43,.28);
  animation-name:college-media-pulse-green;
  gap:5px;
}
.college-media-btn.is-360 .college-media-icon{
  width:21px;
  height:21px;
  flex:0 0 21px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.8);
  border-radius:50%;
  background:rgba(255,255,255,.14);
}
.college-media-btn.is-360 .college-media-icon svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.college-media-btn.is-360 > span:last-child{white-space:nowrap}
.college-media-btn.is-youtube{
  background:linear-gradient(120deg,#b91c1c,#e52d27);
  border-color:#b91c1c;
}
.college-media-btn::after{
  content:"";
  position:absolute;
  z-index:-1;
  top:-70%;
  left:-42%;
  width:28%;
  height:240%;
  background:rgba(255,255,255,.28);
  transform:rotate(22deg);
  animation:college-media-sheen 2.6s ease-in-out infinite;
}
.college-media-btn:hover{
  color:#fff;
  transform:translateY(-1px);
  animation-play-state:paused;
}
.college-media-icon{font-size:11px;font-weight:900;line-height:1}
.college-compare-icon{font-size:15px;font-weight:900;line-height:1}
.college-media-btn.is-unavailable{
  color:#8a94a3;
  background:#f5f6f8;
  border-color:#dfe3e8;
  box-shadow:none;
  animation:none;
  cursor:not-allowed;
}
.college-media-btn.is-unavailable::after{display:none}
@keyframes college-media-sheen{
  0%,35%{left:-42%}
  68%,100%{left:124%}
}
@keyframes college-media-pulse{
  0%,100%{box-shadow:0 5px 14px rgba(192,57,43,.18)}
  50%{box-shadow:0 7px 20px rgba(192,57,43,.34)}
}
@keyframes college-media-pulse-green{
  0%,100%{box-shadow:0 5px 14px rgba(150,194,43,.24)}
  50%{box-shadow:0 7px 20px rgba(150,194,43,.48)}
}
@media (prefers-reduced-motion:reduce){
  .college-media-btn,.college-media-btn::after{animation:none}
}
@media (max-width:767px){
  .college-card-actions{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;padding:0 10px 10px}
  .college-card-actions .college-action-btn,.college-card-actions .college-compare-btn{grid-column:auto;min-height:35px;padding:6px;font-size:11px}
}
.btn-outline{
  background:transparent;color:var(--red);
  border:1.5px solid var(--red);
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  cursor:pointer;
  font-family:inherit;
  transition:background 0.2s,color 0.2s;
      line-height: 25px;
    padding: 10px;
    border-radius: 5px;
}
.btn-outline:hover{background:var(--red);color:#fff}

@media (max-width:1024px){
  .course-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:768px){
  .course-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:520px){
  .course-grid{grid-template-columns:1fr}
}

/* course detail */
.course-detail-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:48px;
  align-items:start;
}
.course-detail-body{
  font-size:16px;color:#444;line-height:1.85;
}
.course-detail-body h2,
.course-detail-body h3{
  font-family:'Playfair Display',serif;
  color:var(--dark);
  margin:28px 0 12px;
}
.course-detail-body h2{font-size:28px}
.course-detail-body h3{font-size:22px}
.course-detail-body p{margin-bottom:16px}
.course-detail-body ul,
.course-detail-body ol{margin:0 0 16px 22px}
.course-detail-body li{margin-bottom:6px}
.course-detail-body strong{color:var(--dark)}

.course-detail-info-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#fff 0%,#fff8f7 58%,#ffece8 100%);
  border:1px solid #efc9c2;
  border-radius:14px;
  padding:18px 16px;
  box-shadow:0 14px 34px rgba(192,57,43,.10);
}
.course-detail-info-card:before{
  content:"";
  position:absolute;
  right:-46px;
  top:-54px;
  width:128px;
  height:128px;
  border-radius:50%;
  background:rgba(192,57,43,.12);
}
.course-detail-info-title{
  position:relative;
  font-family:'Playfair Display',serif;
  font-size:22px;font-weight:700;
  color:var(--dark);
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid #efc9c2;
}
.course-detail-info-list{position:relative;list-style:none;padding:0;margin:0}
.course-detail-info-list li{
  display:flex;justify-content:space-between;align-items:flex-start;gap:14px;
  padding:12px 0;
  font-size:14px;
  border-bottom:1px dashed #efc9c2;
}
.course-detail-info-list li:last-child{border-bottom:none}
.cdi-label{color:#7a4b45;font-weight:700;flex-shrink:0}
.cdi-val{color:var(--dark);font-weight:600;text-align:right}

@media (max-width:900px){
  .course-detail-grid{grid-template-columns:1fr;gap:32px}
  .course-detail-info-card{position:static}
}

/* ═══════════════════════════════════
   COLLEGE DETAIL — hero, facts, gallery, address
═══════════════════════════════════ */
.college-hero{
  position:relative;
  min-height:480px;
  overflow:hidden;
  display:flex;align-items:flex-end;
  padding:60px 0 60px;
}
.college-hero .page-banner-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  filter:brightness(0.4) saturate(0.85);
  z-index:0;
}
.college-hero .page-banner-overlay{
  position:absolute;inset:0;
  background:linear-gradient(110deg, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 21%) 70%, transparent 100%);
  z-index:1;
}
.college-hero-content{
  position:relative;z-index:2;
  padding:0 7%;max-width:900px;
}

.college-facts-strip{
  background:var(--white);
  border-bottom:1px solid var(--border);
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:0;
}
.cf-item{
  display:flex;align-items:center;gap:14px;
  padding:24px 28px;
  border-right:1px solid var(--border);
}
.cf-item:last-child{border-right:none}
.cf-icon{
  width:46px;height:46px;min-width:46px;
  background:var(--red-pale);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.cf-label{font-size:12px;color:var(--gray);font-weight:500;letter-spacing:0.4px;text-transform:uppercase}
.cf-val{font-size:14px;color:var(--dark);font-weight:600;margin-top:2px}

/* gallery */
.college-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.college-gallery .gallery-item{
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--gray-pale);
  transition:transform 0.25s,box-shadow 0.25s;
}
.college-gallery .gallery-item:hover{
  transform:translateY(-3px) scale(1.01);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}
.college-gallery img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform 0.4s;
}
.college-gallery .gallery-item:hover img{transform:scale(1.06)}
.college-gallery .gallery-item:nth-child(7n+1){grid-column:span 2;grid-row:span 2}
@media (max-width:900px){
  .college-gallery{grid-template-columns:repeat(3,1fr)}
  .college-gallery .gallery-item:nth-child(7n+1){grid-column:auto;grid-row:auto}
}
@media (max-width:560px){
  .college-gallery{grid-template-columns:repeat(2,1fr)}
}

/* =========================================
   COLLEGE CONTACT / ADDRESS BLOCK
========================================= */

.college-contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 14px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:all .25s ease;
    background:#fff;
    border:1px solid #e5e7eb;
    color:#1e293b;
    box-shadow:0 4px 12px rgba(15,23,42,0.04);
}

.college-contact-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,23,42,0.10);
}

.call-btn{
    border-color:#bfdbfe;
    color:#2563eb;
    background:#f8fbff;
}

.whatsapp-btn{
    border-color:#bbf7d0;
    color:#16a34a;
    background:#f6fff8;
}

.direction-btn{
    border-color:#fecaca;
    color:#dc2626;
    background:#fff8f8;
}
.call-btn:hover{
    background:#11213a;
    color:#fff;
    transform:translateY(-2px);
}
.whatsapp-btn:hover{
    background:#11213a;
    color:#fff;
    transform:translateY(-2px);
}

.direction-btn:hover{
    background:#11213a;
    color:#fff;
    transform:translateY(-2px);
}

.college-campus-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
    align-items:stretch;
}

.campus-info-card,
.college-campus-grid .college-contact-card{
    background:#fff;
    border-radius:8px;
    padding:20px;
    border:1px solid #e7eaf0;
    box-shadow:0 12px 30px rgba(15,23,42,0.06);
    display:flex;
    flex-direction:column;
    position:relative;
    overflow:hidden;
}

.campus-info-card::before,
.college-campus-grid .college-contact-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0b4ea2,#c9972e);
}

.campus-card-head{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
}

.campus-card-icon{
    width:38px;
    height:38px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 38px;
    background:#fff4f4;
    border:1px solid #ffd6d6;
    color:#0b4ea2;
    font-size:12px;
    font-weight:800;
}

.campus-card-head h3{
    margin:0 0 4px;
    font-size:20px;
    line-height:1.25;
    color:#11213a;
}

.campus-card-head p{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.5;
}

.campus-frame-wrap{
    width:100%;
    aspect-ratio:16/9;
    border-radius:8px;
    border:1px solid #e5e7eb;
    overflow:hidden;
    background:#f4f6f8;
}

.campus-frame-wrap iframe{
    width:100%;
    height:100%;
    display:block;
    border:0;
}

.campus-empty-state{
    width:100%;
    height:100%;
    min-height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px;
    color:#64748b;
    font-weight:600;
    background:linear-gradient(135deg,#f8fafc,#edf2f7);
}

.college-campus-grid .college-contact-top{
    flex-direction:row;
    align-items:center;
    text-align:left;
    gap:16px;
    margin-bottom:16px;
}

.college-campus-grid .college-contact-logo{
    width:92px;
    height:70px;
    object-fit:contain;
    border:1px solid #edf0f4;
    border-radius:8px;
    padding:5px;
    background:#fff;
    filter:none;
}

.college-campus-grid .college-contact-title{
    font-family:inherit;
    font-size:22px;
    line-height:1.25;
    margin-bottom:6px;
}

.college-campus-grid .college-contact-location{
    font-size:14px;
    margin-bottom:0;
}

.college-campus-grid .college-contact-address{
    text-align:left;
    padding:18px 0;
    margin-bottom:18px;
}

.college-how-reach{
    padding:16px 0 18px;
    border-bottom:1px dashed #d8dde5;
    margin-bottom:18px;
}

.college-how-reach h4{
    margin:0 0 10px;
    color:#11213a;
    font-size:18px;
    line-height:1.3;
}

.college-how-reach-body{
    color:#5b6473;
    font-size:14px;
    line-height:1.7;
}

.college-how-reach-body p,
.college-how-reach-body ul,
.college-how-reach-body ol{
    margin:0 0 10px;
}

.college-how-reach-body p:last-child,
.college-how-reach-body ul:last-child,
.college-how-reach-body ol:last-child{
    margin-bottom:0;
}

.college-how-reach-body strong{
    color:#11213a;
}

.college-campus-grid .college-contact-actions{
    justify-content:flex-start;
    gap:10px;
    margin-top:auto;
}

.tour-btn{
    width:max-content;
    margin-top:14px;
    border-color:#bfdbfe;
    color:#1d4ed8;
    background:#f8fbff;
}

.college-location-section{
    padding-top:24px;
    padding-bottom:30px;
}

.college-location-heading{
    text-align:center;
    margin-bottom:24px;
}

.college-location-intro{
    max-width:700px;
    margin:14px auto 0;
    color:#738095;
}

.college-location-grid{
    max-width:1714px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.college-location-card{
    background:#fff;
    border:1px solid #e6ebf2;
    border-radius:6px;
    padding:16px;
    box-shadow:0 15px 42px rgba(15,23,42,0.06);
    position:relative;
    overflow:hidden;
    min-height:0;
}

.college-location-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#c62828,#8ac53f);
}

.college-location-card-head{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
}

.college-location-icon{
    width:38px;
    height:38px;
    border-radius:7px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 38px;
    background:#fff7f7;
    border:1px solid #ffd5d5;
    color:#e02020;
    font-size:12px;
    font-weight:800;
}

.college-location-card-head h3,
.college-location-address-card h3{
    margin:0 0 5px;
    color:#172033;
    font-size:18px;
    line-height:1.2;
    font-weight:800;
}

.college-location-card-head p{
    margin:0;
    color:#61708a;
    font-size:12px;
    line-height:1.45;
}

.college-video-frame,
.college-tour-frame,
.college-map-frame,
.college-location-empty{
    width:100%;
    height:auto;
    aspect-ratio:16 / 9;
    border:1px solid #dde4ee;
    border-radius:6px;
    overflow:hidden;
    background:#eef3f8;
}

.college-video-frame,
.college-tour-frame{
    display:block;
}

.college-map-frame iframe{
    width:100%;
    height:100%;
}

.college-location-empty{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px;
    color:#5f6f86;
    font-weight:700;
}

.college-address-thumb{
    width:92px;
    height:54px;
    border:1px solid #e3e9f1;
    border-radius:6px;
    padding:5px;
    margin-bottom:10px;
    background:#fff;
}

.college-address-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:3px;
    display:block;
}

.college-location-meta{
    color:#1f2937;
    font-size:14px;
    line-height:1.6;
    margin-bottom:28px;
}

.college-location-address{
    margin:8px 0 18px;
    color:#172033;
    font-size:15px;
    line-height:1.55;
}

.college-location-address-card{
    display:flex;
    flex-direction:column;
}

.college-location-address-card .college-how-reach{
    padding:0 0 18px;
    margin:0 0 34px;
    border-bottom:1px dashed #d9e0ea;
}

.college-location-address-card .college-how-reach h4{
    font-size:19px;
    margin:0 0 10px;
}

.college-location-address-card .college-how-reach-body{
    color:#5f6f86;
    font-size:14px;
    line-height:1.7;
}

.college-location-actions{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
    margin-top:auto;
    padding-top:2px;
}

.college-location-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    width:100%;
    padding:7px 5px;
    border-radius:6px;
    font-size:11px;
    font-weight:800;
    text-decoration:none;
    border:1px solid #fecaca;
    background:#fff8f8;
    color:#e02020;
    transition:all .2s ease;
    white-space:nowrap;
}

.college-location-btn svg{
    width:13px;
    height:13px;
    flex:0 0 13px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.college-location-btn:hover{
    background:#11213a;
    border-color:#11213a;
    color:#fff;
    transform:translateY(-2px);
}

.college-location-btn.call-btn{
    border-color:#bfdbfe;
    color:#2563eb;
    background:#f8fbff;
}

.college-location-btn.whatsapp-btn{
    border-color:#bbf7d0;
    color:#16a34a;
    background:#f6fff8;
}

.college-location-btn.call-btn:hover,
.college-location-btn.whatsapp-btn:hover{
    background:#11213a;
    border-color:#11213a;
    color:#fff;
}

@media (max-width:1199px){
  .college-location-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:991px){
  .college-campus-grid{grid-template-columns:1fr}
}

@media (max-width:700px){
  .college-location-grid{grid-template-columns:1fr}
}

@media (max-width:576px){
  .campus-info-card,
  .college-campus-grid .college-contact-card{padding:16px}

  .college-location-card{padding:16px}

  .college-video-frame,
  .college-tour-frame,
  .college-map-frame,
  .college-location-empty{height:auto;aspect-ratio:16 / 9}

  .college-campus-grid .college-contact-title{font-size:19px}

  .college-campus-grid .college-contact-top{
      align-items:flex-start;
  }
}

/* fade in on scroll */
.fade-in{
  opacity:0;transform:translateY(32px);
  transition:opacity 0.7s ease,transform 0.7s ease;
}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ═══════════════════════════════════
   RESPONSIVE — header, footer, sections
═══════════════════════════════════ */

/* Tablet & below: condense topbar */
@media (max-width:900px){
  .topbar{padding:4px 5%;font-size:12px;flex-wrap:wrap;gap:6px}
  .topbar-left{gap:14px;flex-wrap:wrap}
  .topbar-right{display:none}
  .topbar-email{display:none}

  /* Nav: hamburger + dropdown */
  .nav-inner{padding:0 5%;height:64px;position:relative}
  .nav-logo-img{height:44px}
  .nav-toggle{display:flex}

  .nav-collapse{
    position:absolute;
    top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--white);
    border-top:1px solid var(--border);
    box-shadow:0 12px 24px rgba(0,0,0,0.08);
    padding:8px 0 16px;
    transform:translateY(-8px);
    opacity:0;pointer-events:none;
    transition:opacity 0.22s ease,transform 0.22s ease;
    max-height:calc(100vh - 64px);
    overflow-y:auto;
  }
  nav.is-open .nav-collapse{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .nav-links{
    flex-direction:column;align-items:stretch;gap:0;
    width:100%;
  }
  .nav-links li{width:100%}
  .nav-links a{
    display:block;
    padding:14px 24px;
    border-bottom:1px solid var(--border);
    font-size:16px;
  }
  .nav-links a::after{display:none}
  .nav-dropdown-menu{
    position:static;
    min-width:0;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border:0;
    border-radius:0;
    padding:0 0 0 16px;
    background:#fff8f7;
  }
  .nav-dropdown-menu a{
    padding:12px 24px;
    font-size:15px;
  }

  .nav-cta{
    margin:14px 24px 0;
    text-align:center;
  }
}

/* Phone: tighter topbar + section padding */
@media (max-width:640px){
  .topbar{font-size:11px;padding:6px 5%}
  .topbar-left{gap:12px}

  .section{padding:60px 5%}
  .leader-section{padding:60px 5%;grid-template-columns:1fr;gap:32px;text-align:center}
  .leader-content{text-align:left}
  .leader-quote{padding-left:0}
  .leader-quote::before{display:none}

  /* hero stats / dots smaller */
  .hero-stats{display:none}
  .hero-dots{left:5%;bottom:24px}
  .hero-content{padding:0 5%}

  /* quick strip stacks on phone */
  .quick-strip{grid-template-columns:1fr 1fr}
  .quick-item{padding:18px 16px;gap:12px;border-right:none;border-bottom:1px solid var(--border)}
  .quick-item:nth-child(2){border-right:none}
  .quick-icon{width:44px;height:44px;min-width:44px;font-size:18px}
  .quick-title{font-size:14px}
  .quick-desc{font-size:12px}

  /* about + services + financial + why grids */
  .about-grid{grid-template-columns:1fr;gap:32px}
  .about-img-wrap{padding-bottom:24px;padding-right:24px;max-width:420px;margin:0 auto}
  .about-points{grid-template-columns:1fr}
  .mv-grid{grid-template-columns:1fr}

  .services-header-row{flex-direction:column;align-items:flex-start;gap:18px}
  .services-grid{grid-template-columns:1fr 1fr;gap:14px}
  .streams-grid{grid-template-columns:1fr 1fr;gap:10px}
  .financial-grid{grid-template-columns:1fr;gap:18px}
  .why-grid{grid-template-columns:1fr 1fr;gap:14px}
  .steps-row{grid-template-columns:1fr;gap:36px}
  .steps-row::before{display:none}

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

  /* contact section: stack columns */
  .contact-section{grid-template-columns:1fr}
  .contact-left,.contact-right{padding:48px 6%}

  /* college detail */
  .college-hero{min-height:380px}
  .college-hero-content{padding:0 5%}
}

@media (max-width:480px){
  .services-grid{grid-template-columns:1fr}
  .streams-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
}

/* Footer responsive */
@media (max-width:1024px){
  .footer-top{grid-template-columns:1fr 1fr;gap:36px;padding:48px 6% 36px}
}
@media (max-width:640px){
  .footer-top{grid-template-columns:1fr;gap:32px;padding:40px 6% 32px}
  .footer-bottom{
    flex-direction:column;align-items:flex-start;gap:12px;
    padding:18px 6%;font-size:12px;
  }
  .footer-bottom > div{display:flex;flex-wrap:wrap;gap:14px;margin:0}
  .footer-bottom a{margin-left:0}
  .footer-logo-img{height:50px}
  .footer-desc{font-size:13px}
  .footer-links a{font-size:13px}
}

/* ═══════════════════════════════════
   LISTING SEARCH (colleges / courses)
═══════════════════════════════════ */
.listing-search{
  max-width:520px;
  margin:0 auto 40px;
}
.listing-search-field{
  position:relative;
  display:flex;align-items:center;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 8px 6px 18px;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.listing-search-field:focus-within{
  border-color:var(--red);
  box-shadow:0 6px 24px rgba(192,57,43,0.10);
}
.listing-search-icon{
  font-size:15px;opacity:0.7;margin-right:8px;
}
.listing-search-input{
  flex:1;border:none;outline:none;background:transparent;
  font-size:15px;color:var(--ink);
  padding:12px 4px;
  font-family:inherit;
}
.listing-search-input::placeholder{color:var(--gray)}
.listing-search-clear{
  border:none;background:var(--off-white);
  color:var(--ink);
  width:32px;height:32px;border-radius:50%;
  font-size:18px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s,color 0.2s;
}
.listing-search-clear:hover{background:var(--red);color:#fff}
.listing-search.is-loading .listing-search-icon{opacity:0.3}
@media (max-width:640px){
  .listing-search{margin:0 16px 32px}
  .listing-search-input{font-size:14px;padding:10px 4px}
}

/* Compact college filters. The tray floats over results so opening it does not
   push the first row of colleges below the fold. */
.college-listing-search{position:relative;z-index:12;max-width:1120px;margin-bottom:24px}
.college-search-row{display:flex;align-items:stretch;gap:10px;max-width:720px;margin:0 auto}
.college-search-row .listing-search-field{flex:1;min-width:0}
.college-filter-toggle{
  min-width:142px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--ink);
  padding:0 17px;display:flex;align-items:center;justify-content:center;gap:8px;font:700 13px/1 inherit;
  cursor:pointer;transition:border-color .2s,box-shadow .2s,color .2s;
}
.college-filter-toggle:hover,.college-filter-toggle[aria-expanded="true"]{border-color:var(--red);color:var(--red);box-shadow:0 6px 20px rgba(192,57,43,.09)}
.college-filter-toggle svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}
.college-filter-count{display:inline-flex;align-items:center;justify-content:center;min-width:21px;height:21px;padding:0 6px;border-radius:11px;background:var(--red);color:#fff;font-size:11px}
.college-filter-count[hidden],.college-active-filters[hidden],.listing-search-clear[hidden]{display:none!important}
.college-active-filters{display:flex;justify-content:center;flex-wrap:wrap;gap:6px;margin-top:9px}
.college-filter-chip{border:1px solid #ead1ce;background:#fff7f6;color:#7e2821;border-radius:999px;padding:5px 9px;display:inline-flex;align-items:center;gap:7px;font:600 11px/1.25 inherit;cursor:pointer}
.college-filter-chip b{font-size:15px;line-height:1;font-weight:500}
.college-filter-panel{
  position:absolute;top:calc(100% + 10px);left:0;right:0;background:#fff;border:1px solid var(--border);
  border-radius:18px;padding:16px;box-shadow:0 20px 55px rgba(15,23,42,.16);text-align:left;
}
.college-filter-panel[hidden]{display:none}
.college-filter-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
.college-filter-field{display:block;min-width:0}
.college-filter-field > span{display:block;margin:0 0 6px 2px;color:#5c6472;font-size:10px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.college-filter-field select{width:100%;height:40px;border:1px solid #dfe3ea;border-radius:10px;background:#fff;color:var(--ink);padding:0 30px 0 10px;font:600 12px/1 inherit;outline:none}
.college-filter-field select:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(192,57,43,.08)}
.course-filter-grid{grid-template-columns:repeat(3,minmax(0,1fr)) minmax(250px,1.35fr)}
.course-fee-inputs{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:7px}
.course-fee-inputs input{width:100%;min-width:0;height:40px;border:1px solid #dfe3ea;border-radius:10px;background:#fff;color:var(--ink);padding:0 10px;font:600 12px/1 inherit;outline:none}
.course-fee-inputs input:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(192,57,43,.08)}
.course-fee-inputs i{font-style:normal;color:#8a93a3;font-size:11px}
.college-filter-actions{display:flex;justify-content:flex-end;align-items:center;gap:10px;margin-top:12px;padding-top:12px;border-top:1px solid #eef0f3}
.college-filter-reset{border:0;background:transparent;color:#657084;padding:9px 12px;font:700 12px/1 inherit;cursor:pointer}
.college-filter-reset:hover{color:var(--red)}
.college-filter-apply{min-width:132px;padding:11px 18px;font-size:12px}
@media (max-width:900px){
  .college-filter-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .course-filter-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .college-filter-panel{left:12px;right:12px}
}
@media (max-width:640px){
  .college-listing-search{margin:0 12px 22px}
  .college-search-row{gap:7px}
  .college-filter-toggle{position:relative;min-width:54px;width:54px;padding:0;border-radius:16px}
  .college-filter-toggle > span:not(.college-filter-count){display:none}
  .college-filter-count{position:absolute;right:-5px;top:-6px;border:2px solid #fff}
  .college-filter-panel{position:fixed;z-index:70;top:auto;left:10px;right:10px;bottom:12px;max-height:78vh;overflow:auto;border-radius:20px;padding:16px}
  .college-filter-grid{grid-template-columns:1fr;gap:11px}
  .course-filter-grid{grid-template-columns:1fr}
  .college-filter-field select{height:43px}
  .college-filter-actions{position:sticky;bottom:-16px;background:#fff;padding:12px 0 16px}
  .college-filter-actions > *{flex:1}
  .college-active-filters{justify-content:flex-start;flex-wrap:nowrap;overflow:auto;padding-bottom:2px}
  .college-filter-chip{flex:0 0 auto}
}
.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:44px 24px;
    margin-top:55px;
}

.partner-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    position:relative;
    overflow:visible;
    transition:all .35s ease;
    text-decoration:none;
}

.partner-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:22px;
    background:linear-gradient(135deg,
        rgba(185,28,28,.04),
        rgba(15,23,42,.04));
    opacity:0;
    transition:.35s;
}

.partner-card:hover{
    transform:translateY(-8px);
    border-color:#dc2626;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.partner-card:hover::before{
    opacity:1;
}

.partner-logo-wrap{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.partner-logo{
    width:100%;
    height:80px;
    object-fit:contain;
    transition:all .4s ease;
    filter:grayscale(100%);
    opacity:.85;
}

.partner-card:hover .partner-logo{
    transform:scale(1.08);
    filter:grayscale(0%);
    opacity:1;
}

/* TOOLTIP */

.partner-card::after{
    content:attr(data-title);
    position:absolute;
    bottom:calc(100% + 10px);
    left:50%;
    transform:translateX(-50%) translateY(8px);
    background:#111827;
    color:#fff;
    font-size:12px;
    font-weight:600;
    line-height:1.35;
    padding:8px 12px;
    border-radius:10px;
    width:max-content;
    max-width:min(260px, calc(100vw - 32px));
    white-space:normal;
    text-align:center;
    overflow-wrap:anywhere;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:20;
    pointer-events:none;
}

.partner-card:hover::after{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.hidden-partner{
    display:none;
    opacity:0;
    transform:translateY(30px);
    transition:all .5s ease;
}


.btn-load-more{
    background:#b91c1c;
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:999px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.btn-load-more:hover{
    background:#991b1b;
    transform:translateY(-2px);
}
.partners-grid{
    display:grid;
    grid-template-columns:repeat(8, 1fr);
    gap:44px 22px;
    margin-top:55px;
    align-items:stretch;
}

/* LARGE LAPTOP */

@media(max-width:1500px){

    .partners-grid{
        grid-template-columns:repeat(6,1fr);
    }

}

/* TABLET */

@media(max-width:1100px){

    .partners-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/* MOBILE */

@media(max-width:768px){

    .partners-grid{
        grid-template-columns:repeat(2,1fr);
        gap:38px 16px;
    }

}
@media(max-width:768px){

    .partners-grid{
        grid-template-columns:repeat(2,1fr);
        gap:38px 16px;
    }

    .partner-card{
        height:110px;
        padding:16px;
        border-radius:16px;
    }

    .partner-logo{
        height:55px;
    }

}
.partners-loadmore-wrap{
    text-align:center;
    margin-top:45px;
}
/* ===================================================
   CONTACT + TESTIMONIAL MOBILE FIX
=================================================== */

@media only screen and (max-width: 768px){

    .contact-section{
        display:flex !important;
        flex-direction:column !important;
        width:100%;
    }

    .contact-left,
    .contact-right{
        width:100% !important;
        max-width:100% !important;
        flex:0 0 100% !important;
        padding:50px 20px !important;
    }

    .contact-left{
        min-height:auto;
    }

    .contact-right{
        overflow:hidden;
    }

    .testi-section-bg{
        padding:50px 20px !important;
    }

    .testi-header{
        text-align:center;
        margin-bottom:30px;
    }

    .testi-header .sec-title,
    .contact-left .sec-title{
        font-size:32px !important;
        line-height:1.2 !important;
    }

    .tslider{
        padding:0 !important;
        max-width:100%;
    }

    .tslider-slide{
        display:flex !important;
        flex-direction:column !important;
        grid-template-columns:none !important;
        width:100%;
        padding:24px 18px !important;
        gap:20px !important;
        text-align:center;
    }

    .tslider-photo-wrap{
        width:110px !important;
        height:110px !important;
        margin:auto;
    }

    .tslider-body{
        width:100%;
    }

    .tslider-text{
        font-size:14px !important;
        line-height:1.7 !important;
    }

    .tslider-name{
        font-size:22px !important;
    }

    .tslider-course{
        font-size:12px !important;
    }

    .tslider-arrow{
        width:38px !important;
        height:38px !important;
        font-size:22px !important;
    }

    .contact-info{
        gap:20px;
    }

    .ci-item{
        align-items:flex-start;
    }

}
/* =========================================
   MOBILE PARTNER LIMIT = 10
========================================= */

@media only screen and (max-width:768px){

    .partners-grid .partner-card:nth-child(n+11){
        display:none;
    }

    .partners-grid.show-all-mobile .partner-card{
        display:flex !important;
    }

}
/* =========================================
TESTIMONIALS PAGE
========================================= */

.testimonials-page{
    padding:100px 0;
    background:#f8f8f8;
}

.section-heading{
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#b93124;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;
}

.section-title{
    font-size:52px;
    line-height:1.2;
    margin-bottom:16px;
    color:#111;
    font-family:'Playfair Display', serif;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    transition:0.3s ease;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-6px);
}

.testimonial-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:24px;
}

.testimonial-image-wrap{
    width:90px;
    height:90px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #d9a441;
    flex-shrink:0;
}

.testimonial-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.testimonial-rating{
    color:#d8342a;
    font-size:20px;
    letter-spacing:2px;
}

.testimonial-text{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.testimonial-name{
    font-size:28px;
    color:#111;
    margin-bottom:8px;
    font-family:'Playfair Display', serif;
}

.testimonial-meta{
    color:#c0392b;
    font-size:15px;
    font-weight:500;
}

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title{
        font-size:42px;
    }
}

@media(max-width:767px){

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

    .testimonials-page{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
    }

    .testimonial-card{
        padding:25px;
    }
}
/* =========================================
FIX TESTIMONIAL PAGE WIDTH
========================================= */

.testimonials-page .container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding-left:15px;
    padding-right:15px;
}

.testimonials-page{
    overflow:hidden;
}

.testimonial-grid{
    width:100%;
}

.section-heading{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.section-subtitle{
    margin:auto;
}
/* =========================================
CUSTOM PAGINATION
========================================= */

.custom-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:60px;
    flex-wrap:wrap;
}

.pagination-btn{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#fff;
    border:1px solid #e5e5e5;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:0.3s ease;
    font-size:18px;
}

.pagination-btn:hover{
    background:#b93124;
    color:#fff;
    border-color:#b93124;
}

.pagination-btn.active{
    background:#b93124;
    color:#fff;
    border-color:#b93124;
}

.pagination-btn.disabled{
    opacity:0.4;
    pointer-events:none;
}
/* =========================================
FAQ PAGE
========================================= */

.faq-page{
    padding:100px 0;
    background:#f8f8f8;
}

.faq-wrapper{
    max-width:950px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:8px;
    margin-bottom:8px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.faq-item.active{
    box-shadow:0 16px 45px rgba(0,0,0,0.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:12px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    cursor:pointer;
    text-align:left;
    font-size:18px;
    color:#111;
    font-family:'Outfit', sans-serif;
}

.faq-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#b93124;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:0.3s ease;
    flex-shrink:0;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-item.active .faq-answer{
    max-height:500px;
}

.faq-answer-inner{
    padding:0 30px 30px;
    color:#555;
    line-height:1.9;
    font-size:16px;
}
.faq-answer ul{
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.faq-answer ul li{
    margin-bottom: 1px;
    line-height: 1.7;
    list-style: disc;
}

.faq-answer ol{
    padding-left: 20px;
}

.faq-answer p{
    margin-bottom: 12px;
}
@media(max-width:768px){

    .faq-page{
        padding:70px 0;
    }

    .faq-question{
        padding:20px;
        font-size:17px;
    }

    .faq-answer-inner{
        padding:0 20px 20px;
        font-size:15px;
    }

}
/* =========================================
APPLICATIONS PAGE
========================================= */
.applications-page{
    padding:90px 0;
    background:#f7f7f7;
}

.applications-page .container{
    max-width:1380px;
    margin:auto;
    padding:0 20px;
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:28px;
    margin-top:50px;
}

.application-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:all .35s ease;
    border:2px solid transparent;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    position:relative;
}

.application-card:hover{
    transform:translateY(-8px);
    border-color:#d63c2f;
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.application-card-link{
    display:block;
    text-decoration:none;
    color:inherit;
    height:100%;
}
.application-image-wrap{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#eee;
}

.application-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.application-card:hover .application-image{
    transform:scale(1.04);
}

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

.application-title{
    font-size:18px;
    line-height:1.4;
    font-weight:700;
    color:#0a0a14;
    margin:0;
    flex:1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    min-width:0;
}

.application-btn{
    background:#0a0a14;
    color:#fff;
    text-decoration:none;
    padding:11px 18px;
    border-radius:5px;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
    flex-shrink:0;
}

.application-btn:hover{
    background:#d63c2f;
    color:#fff;
}

@media(max-width:1200px){

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

@media(max-width:991px){

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

@media(max-width:767px){

    .applications-page{
        padding:70px 0;
    }

    .application-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

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

    .application-btn{
        width:100%;
        text-align:center;
    }

    .application-title{
        width:100%;
    }
}
.application-image-wrap{
    position:relative;
}

.application-badge{
    display: inline-flex;
    position:absolute;
    top:16px;
    right:16px;
    z-index:2;
    background:#0a0a14;
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
    padding:8px 14px;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    text-transform:uppercase;
    gap: 8px;
}
.application-badge span{
  width:8px;height:8px;background:#96c22b;border-radius:50%;
  animation:blink 2s infinite;
  z-index:2;
  margin-top: 3px;
}
.page-module-layout{
    width:100%;
    display:block;
}

.page-module-content{
    width:100%;
    margin:0 auto;
    padding:10px 20px 60px;
}
/* FEATURED SECTION */
.featured-strip-section{
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

/* WRAPPER */
.featured-strip-wrapper{
    display:flex;
    align-items:stretch;
    width:100%;
}

/* LEFT STRIP */
.featured-vertical{
    width:42px;
    background:#f5f5f5;
    border-right:1px solid #e5e5e5;

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

    writing-mode:vertical-rl;
    transform:rotate(180deg);

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    color:#222;
    text-transform:uppercase;
}

/* CARDS GRID */
.featured-cards{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
}

/* CARD */
.featured-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-width:0;

    min-height:100px;

    background:#fff;
    border-right:1px solid #ececec;

    text-decoration:none;
    color:#111;

    transition:.3s ease;
}

.featured-card:hover{
    background:#fafafa;
}

/* TOP AREA */
.featured-top{
    display:flex;
    align-items:center;
    gap:clamp(10px,1vw,16px);

    padding:clamp(12px,1vw,16px) clamp(12px,1.15vw,18px) 10px;
}

/* LOGO */
.featured-logo{
    width:clamp(82px,7vw,112px);
    height:58px;
    object-fit:contain;
    flex-shrink:0;
}

.featured-content{
    flex:1;
    min-width:0;
}

/* TITLE */
.featured-title{
    display:block;
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;

    font-size:clamp(13px,.88vw,16px);
    font-weight:700;
    line-height:1.4;
    margin-bottom:5px;
}

/* LOCATION */
.featured-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:6px;
}

.featured-location{
    min-width:0;
    font-size:clamp(10px,.7vw,12px);
    color:#777;
    line-height:1.4;
    white-space:nowrap;
}

.featured-link{
    flex-shrink:0;
    font-size:clamp(10px,.7vw,12px);
    font-weight:500;
    color:#d93025;

    white-space:nowrap;
}
/* FEATURED FULL STRIP */
.featured-line{
    background:#11213a;
    color:#fff;
    box-sizing:border-box;
    height:38px;
    padding:4px 18px;
    font-size:clamp(9px,.62vw,11px);
    font-weight:600;
    line-height:1.25;
    margin-top:auto;
    text-transform: uppercase;

    display:flex;
    align-items:center;
}

.featured-line span{
    display:-webkit-box;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

/* MOBILE */
@media(max-width:991px){

    .featured-cards{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .featured-strip-wrapper{
        flex-direction:column;
    }

    .featured-vertical{
        width:100%;
        height:42px;

        writing-mode:initial;
        transform:none;
    }

    .featured-cards{
        grid-template-columns:1fr;
    }

}
/* SIDEBAR FEATURED APPLICATIONS */

.course-app-sidebar{
    margin-top:26px;
}

.sidebar-app-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.sidebar-app-card{
    display:block;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #ececec;
    text-decoration:none;
    transition:0.3s ease;
    box-shadow:0 4px 18px rgba(0,0,0,0.05);
}

.sidebar-app-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.10);
}

.sidebar-app-image{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

.sidebar-app-content{
    padding:14px;
}

.sidebar-app-title{
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    color:#111827;
    margin-bottom:8px;
}

.sidebar-app-line{
    font-size:12px;
    line-height:1.5;
    color:#6b7280;
    margin-bottom:12px;
}

.sidebar-app-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:600;
    color:#b91c1c;
}

/* MOBILE */

@media(max-width:900px){

    .course-app-sidebar{
        margin-top:20px;
    }

}
.course-news-sidebar{
    margin-top:30px;
    background:var(--off-white);
    border:1px solid #eee;
    border-radius:18px;
    padding:20px;
}

.sidebar-news-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sidebar-news-card{
    display:flex;
    gap:12px;
    text-decoration:none;
    border-bottom:1px dashed #ddd;
    padding-bottom:14px;
}

.sidebar-news-card:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.sidebar-news-content{
    flex:1;
}

.sidebar-news-title{
    font-size:14px;
    line-height:1.5;
    font-weight:700;
    color:#111;
    margin-bottom:6px;
}

.sidebar-news-desc{
    font-size:12px;
    line-height:1.6;
    color:#666;
    margin-bottom:6px;
}

.sidebar-news-category{
    font-size:11px;
    font-weight:600;
    color:#b3261e;
}

.sidebar-news-btn{
    display:block;
    margin-top:20px;
    text-align:center;
    background:#b3261e;
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.sidebar-news-btn:hover{
    color:#fff;
}
.sidebar-news-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:8px;
}

.sidebar-news-readmore{
    font-size:11px;
    font-weight:600;
    color:#b3261e;
}
/* =========================================
NEWS MODULE
========================================= */

.news-listing-grid{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.news-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    transition:.3s ease;
}

.news-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.news-card-image-wrap{
    display:block;
    overflow:hidden;
    aspect-ratio:16/8;
}

.news-card-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.news-card:hover .news-card-image{
    transform:scale(1.05);
}

.news-card-body{
    padding:28px;
}

.news-meta-row{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:16px;
}

.news-category{
    font-size:13px;
    font-weight:600;
    color:var(--red);
}

.news-date{
    font-size:13px;
    color:var(--gray);
}

.news-card-title{
    font-size:30px;
    line-height:1.35;
    margin-bottom:14px;
    font-family:'Playfair Display', serif;
}

.news-card-title a{
    color:var(--dark);
    text-decoration:none;
}

.news-card-title a:hover{
    color:var(--red);
}

.news-card-desc{
    font-size:15px;
    line-height:1.9;
    color:var(--gray);
    margin-bottom:22px;
}

.news-card-footer{
    display:flex;
    justify-content:flex-end;
}

.news-read-more{
    color:var(--red);
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.news-read-more:hover{
    color:var(--dark);
}

.news-detail-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    padding:35px;
}

.news-detail-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:25px;
    font-size:14px;
    color:var(--gray);
}

.news-detail-image{
    width:100%;
    border-radius:16px;
    margin-bottom:35px;
    max-height:500px;
    object-fit:cover;
}

@media(max-width:768px){

    .news-card-title{
        font-size:24px;
    }

    .news-card-body{
        padding:22px;
    }

    .news-detail-card{
        padding:22px;
    }

}
.news-list-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    margin-bottom:28px;
    overflow:hidden;
    transition:.3s;
}

.news-list-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.news-list-flex{
    display:flex;
    gap:24px;
    padding:24px;
}

.news-list-image-wrap{
    width:260px;
    min-width:260px;
}

.news-list-image{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:14px;
}

.news-list-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.news-list-title{

    font-size:26px;
    line-height:1.5;
    margin-bottom:10px;
    font-weight:600;
    letter-spacing:0;
}

.news-list-title a{
 color:#111827;
    text-decoration:none;
    transition:.3s;
}
.news-list-title a:hover{
    color:#c62828;
}
.news-list-desc{
    color:#555;
    line-height:1.8;
    font-size:16px;
    margin-bottom:18px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-list-meta{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.news-meta-left{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.news-category-tag{
    color:#c62828;
    font-size:14px;
    font-weight:600;
}

.news-date{
    color:#666;
    font-size:14px;
}

.news-read-btn{
    color:#c62828;
    font-weight:500;
    text-decoration:none;
}

.news-read-btn:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .news-list-flex{
        flex-direction:column;
    }

    .news-list-image-wrap{
        width:100%;
        min-width:100%;
    }

    .news-list-image{
        height:220px;
    }

    .news-list-title{
        font-size:18px;
    }

}
/* =========================================
   COLLEGE CONTACT DIRECTORY
========================================= */

.college-contact-directory{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.college-directory-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:24px 28px;

    display:grid;
    grid-template-columns:220px 1fr 260px;
    gap:30px;
    align-items:center;

    transition:.3s ease;
    box-shadow:0 4px 18px rgba(0,0,0,0.04);
}

.college-directory-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
    border-color:#dcdcdc;
}

.directory-logo-col{
    text-align:center;
}

.directory-logo{
    width:180px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 8px 18px rgba(0,0,0,0.12));
}

.directory-college-name{
    font-family:'Playfair Display',serif;
    font-size:30px;
    line-height:1.2;
    color:#11213a;
    margin-bottom:10px;
}

.directory-location{
    color:#0b4ea2;
    font-size:15px;
    font-weight:600;
    margin-bottom:14px;
}

.directory-address{
    color:#5b6473;
    font-size:15px;
    line-height:1.8;
}

.directory-action-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.directory-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:12px 16px;
    border-radius:8px;

    text-decoration:none;
    font-size:14px;
    font-weight:600;

    transition:.25s ease;

    border:1px solid #e5e7eb;
}

.call-btn{
    background:#f8fbff;
    color:#2563eb;
    border-color:#bfdbfe;
}

.whatsapp-btn{
    background:#f6fff8;
    color:#16a34a;
    border-color:#bbf7d0;
}

.direction-btn{
    background:#fff8f8;
    color:#dc2626;
    border-color:#fecaca;
}

.directory-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,23,42,0.08);
}

/* MOBILE */

@media(max-width:991px){

    .college-directory-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .directory-action-col{
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
    }

}

@media(max-width:576px){

    .college-directory-card{
        padding:22px;
    }

    .directory-college-name{
        font-size:24px;
    }

    .directory-logo{
        width:150px;
    }

    .directory-action-col{
        flex-direction:column;
    }

}
.college-compare-btn{
    position:static; /* IMPORTANT */

    border:1px solid #c62828;
    background:#fff;
    color:#c62828;

    padding:10px 14px;
    border-radius:8px;

    font-size:13px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;

    width:100%;
}

.college-compare-btn:hover{
    background:#961f1f;
}
.college-compare-btn.active{
    background:#28a745;
}
#compareBar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    border-top:3px solid #c62828;
    box-shadow:0 -5px 20px rgba(0,0,0,.15);
    padding:12px 25px;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    gap:20px;
}
.compare-count{
    font-size:16px;
    font-weight:600;
    color:#222;
}

.compare-count span{
    color:#c62828;
    font-size:18px;
    font-weight:700;
}
.compare-now-btn{
    background:#f8b318;
    color:#000000;
    border:none;
    border-radius:8px;
    padding:12px 24px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.compare-now-btn:hover{
    background:#a61f1f;
    color: #ffffff;
}
#compareItems{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.compare-chip{
    background:#f5f5f5;
    padding:8px 12px;
    border-radius:20px;
}
.btn-compare{
    border:1px solid #c62828;
    background:#fff;
    color:#c62828;

    padding:10px 14px;
    border-radius:8px;

    font-size:13px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.btn-compare:hover{
    background:#c62828;
    color:#fff;
}

.btn-compare.active{
    background:#28a745;
    border-color:#28a745;
    color:#fff;
}
.compare-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:99999;
}

.compare-modal.show{
    display:flex;
    align-items:center;
    justify-content:center;
}
body.compare-modal-open{overflow:hidden}
.compare-loading,.compare-error{padding:34px 18px;text-align:center;font-weight:700;color:#5b6473}
.compare-error{color:#b42318;background:#fff4f2;border:1px solid #fecdca;border-radius:8px}

.compare-modal-content{
    width:98%;
    max-width:1600px;
    max-height:90vh;
    overflow:auto;
    background:#fff;
    border-radius:12px;
    padding:25px;
}

.compare-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

#closeCompareModal{
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}
.compare-table{
    width:100%;
    border-collapse:collapse;
    min-width:1200px;
}

.compare-table th{
    background:#c62828;
    color:#fff;
    padding:18px 12px;
    text-align:center;
    vertical-align:middle;
    font-size:15px;
    font-weight:700;
}

.compare-table td{
    border:1px solid #e5e5e5;
    padding:12px 10px;
    text-align:center;
    vertical-align:middle;
    font-size:14px;
}

.compare-table tr:nth-child(even){
    background:#fafafa;
}

.compare-table td:first-child{
    font-weight:700;
    background:#f8f8f8;
    text-align:left;
    min-width:180px;
}

.compare-table img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
}
.compare-view-btn{
    display:inline-block;
    padding:8px 14px;
    background:#c62828;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}

.compare-view-btn:hover{
    background:#a61f1f;
    color:#fff;
}
.download-card{

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:12px;

    padding:18px;

    margin-top:15px;

    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.download-card h5{

    margin-bottom:10px;

    font-size:18px;

    font-weight:700;
}

.download-card p{

    font-size:13px;

    color:#666;

    margin-bottom:15px;
}

.download-btn{

    width:100%;
    cursor:pointer !important;
}
.course-detail-sidebar{

    align-self:start;

    display:flex;

    flex-direction:column;

    gap:16px;
}
.custom-download-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(10,15,30,.75);
    backdrop-filter:blur(4px);
    z-index:99999;
}

.custom-download-modal-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.download-popup-header{
    background:linear-gradient(135deg,#b62d1d,#d24632);
    color:#fff;
    padding:22px 28px;
    position:relative;
}

.download-popup-header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.download-popup-header p{
    margin:8px 0 0;
    opacity:.9;
    font-size:14px;
}

.close-download-modal{
    position:absolute;
    top:15px;
    right:18px;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    line-height:1;
}

.download-popup-body{
    padding:28px;
}

.download-popup-body label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

.download-popup-body .form-control{
    width:100%;
    height:48px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 15px;
    margin-bottom:18px;
}

.download-popup-note{
    background:#f8f9fb;
    border-radius:10px;
    padding:12px;
    font-size:13px;
    color:#666;
    margin-bottom:18px;
}

.download-submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:10px;
    background:#b62d1d;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.download-submit-btn:hover{
    background:#972315;
}
/* Events and Scholar modules */
.webinar-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.event-category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 34px;
}

.event-category-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}

.event-category-tab:hover,
.event-category-tab.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(184, 40, 39, 0.22);
}

.webinar-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.webinar-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.webinar-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.webinar-card:hover .webinar-card-media img {
  transform: scale(1.04);
}

.webinar-status {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.webinar-status.is-completed {
  background: #f1f5f9;
  color: #475569;
}

.webinar-card-body {
  padding: 22px;
}

.event-category-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--red-pale);
  color: var(--red-dark);
  border: 1px solid #f4c7c4;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.webinar-date {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.webinar-card-body h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.webinar-card-body h2 a {
  color: var(--charcoal);
  text-decoration: none;
}

.webinar-card-body p {
  color: #5e6b81;
  line-height: 1.65;
}

.webinar-speaker-line {
  margin: 12px 0 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.webinar-hero-cta,
.webinar-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(184, 40, 39, 0.28);
}

.webinar-detail-banner .page-banner-content {
  max-width: 980px;
}

.webinar-detail-banner{
  min-height:340px;
  height:auto;
  padding:42px 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.16) 0 120px, transparent 121px),
    radial-gradient(circle at 88% 72%, rgba(192,57,43,.26) 0 150px, transparent 151px),
    linear-gradient(115deg,#101827 0%,#182235 48%,#c0392b 140%);
  isolation:isolate;
}

.webinar-detail-banner .page-banner-overlay{
  background:
    linear-gradient(90deg,rgba(16,24,39,.92) 0%,rgba(16,24,39,.72) 48%,rgba(192,57,43,.30) 100%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:auto,48px 48px,48px 48px;
  opacity:1;
}

.webinar-hero-art{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:1;
}

.webinar-art-card{
  position:absolute;
  right:8%;
  top:58px;
  width:330px;
  height:168px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.06));
  box-shadow:0 24px 70px rgba(0,0,0,.24);
  backdrop-filter:blur(8px);
}

.webinar-art-card-main:before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.22);
}

.webinar-art-dot{
  position:absolute;
  left:30px;
  top:30px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 10px rgba(255,255,255,.13);
}

.webinar-art-dot:after{
  content:"";
  position:absolute;
  left:17px;
  top:12px;
  border-left:14px solid var(--red);
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
}

.webinar-art-line,
.webinar-art-line:before,
.webinar-art-line:after{
  position:absolute;
  left:96px;
  right:34px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  content:"";
}

.webinar-art-line{top:38px}
.webinar-art-line:before{left:0;right:52px;top:28px;background:rgba(255,255,255,.48)}
.webinar-art-line:after{left:0;right:88px;top:56px;background:rgba(255,255,255,.34)}

.webinar-art-line.is-short{
  left:30px;
  right:154px;
  top:120px;
  height:9px;
  background:rgba(255,255,255,.28);
}

.webinar-art-line.is-short:before,
.webinar-art-line.is-short:after{display:none}

.webinar-art-cta{
  position:absolute;
  right:30px;
  bottom:28px;
  width:84px;
  height:26px;
  border-radius:999px;
  background:#fff;
}

.webinar-art-card-small{
  right:28%;
  top:178px;
  width:158px;
  height:84px;
  border-radius:16px;
  transform:rotate(-4deg);
  background:linear-gradient(145deg,rgba(255,255,255,.24),rgba(255,255,255,.08));
}

.webinar-art-play{
  position:absolute;
  left:22px;
  top:22px;
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(192,57,43,.95);
}

.webinar-art-play:after{
  content:"";
  position:absolute;
  left:15px;
  top:10px;
  border-left:12px solid #fff;
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
}

.webinar-art-mini-line{
  position:absolute;
  left:74px;
  top:28px;
  width:58px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
}

.webinar-art-mini-line:after{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  width:42px;
  height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
}

.webinar-art-icon{
  position:absolute;
  width:58px;
  height:58px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.webinar-art-icon svg{
  width:28px;
  height:28px;
  fill:currentColor;
}

.webinar-art-icon-calendar{
  right:33%;
  top:70px;
}

.webinar-art-icon-mic{
  right:5%;
  top:225px;
  background:rgba(192,57,43,.35);
}

.webinar-detail-banner .page-banner-title{
  max-width:900px;
  font-size:clamp(30px,3.35vw,48px);
  line-height:1.08;
}

.webinar-detail-banner .page-banner-desc{
  margin-top:14px;
}

.webinar-detail-media{
  width:100%;
  overflow:hidden;
  border-radius:16px;
  margin:0 0 24px;
  border:1px solid #efc9c2;
  background:#fff8f7;
  box-shadow:0 16px 34px rgba(15,23,42,.08);
}

.webinar-detail-media img{
  display:block;
  width:100%;
  aspect-ratio:16/6;
  object-fit:cover;
  object-position:center;
}

.webinar-detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.webinar-detail-meta span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--charcoal);
  border: 1px solid #e5eaf2;
  font-weight: 800;
  font-size: 13px;
}

.webinar-detail-meta .event-category-meta {
  background: var(--red-pale);
  color: var(--red-dark);
  border-color: #f4c7c4;
}

.webinar-speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}

.webinar-speaker-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e8edf5;
  border-radius: 8px;
  background: #fbfdff;
}

.webinar-speaker-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.webinar-speaker-card strong,
.webinar-speaker-card span,
.webinar-speaker-card small {
  display: block;
}

.webinar-speaker-card strong {
  color: var(--charcoal);
}

.webinar-speaker-card span {
  color: #334155;
  font-size: 14px;
}

.webinar-speaker-card small {
  color: #64748b;
}

.webinar-register-card {
  position:relative;
  overflow:hidden;
  padding: 24px 22px;
  border: 1px solid #efc9c2;
  border-radius: 14px;
  background: linear-gradient(145deg,#fff 0%,#fff8f7 58%,#ffece8 100%);
  box-shadow: 0 18px 45px rgba(192, 57, 43, 0.12);
}

.webinar-register-card:before{
  content:"";
  position:absolute;
  right:-44px;
  top:-54px;
  width:126px;
  height:126px;
  border-radius:50%;
  background:rgba(192,57,43,.10);
  pointer-events:none;
}

.webinar-register-card > *{
  position:relative;
  z-index:1;
}

.webinar-register-card h3 {
  color: var(--charcoal);
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.webinar-register-note {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.webinar-register-card .mb-3 {
  display: block;
  margin-bottom: 14px !important;
}

.webinar-register-card label {
  display: block;
  font-weight: 800;
  color: #334155;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.3;
}

.webinar-register-card .form-control {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #efc9c2;
  min-height: 44px;
  padding: 10px 12px;
  background:#fff;
  box-sizing: border-box;
  font-size: 14px;
}

.webinar-register-card .form-control:focus{
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(192,57,43,.10);
  outline:none;
}

.webinar-submit-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  white-space: normal;
}

.webinar-form-alert{
  border-radius:10px;
  padding:11px 12px;
  margin:14px 0 16px;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
}

.webinar-form-alert.is-success{
  color:#17633a;
  background:#eaf8ef;
  border:1px solid #bfe8cd;
}

.webinar-form-alert.is-error{
  color:#9f2118;
  background:#fff1ef;
  border:1px solid #f1c2bc;
}

@media (max-width: 991px) {
  .webinar-list-grid,
  .webinar-speakers-grid {
    grid-template-columns: 1fr;
  }

  .webinar-detail-banner{
    height:auto;
    min-height:320px;
    padding:56px 0;
  }

  .webinar-art-card-main{
    right:-92px;
    top:42px;
    width:250px;
    opacity:.42;
  }

  .webinar-art-card-small,
  .webinar-art-icon{
    display:none;
  }
}

.ai-finder {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  font-family: 'Outfit', sans-serif;
}

.whatsapp-connect{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:9998;
  min-height:58px;
  padding:8px 18px 8px 8px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  background:linear-gradient(135deg,#075e54 0%,#25d366 100%);
  color:#fff;
  font-family:'Outfit',sans-serif;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 18px 42px rgba(18,140,74,.28);
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}
.whatsapp-connect:hover{
  background:linear-gradient(135deg,#064e46 0%,#1ebe5d 100%);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 20px 48px rgba(18,140,74,.36);
}
.whatsapp-connect-pulse{
  position:absolute;
  inset:-7px;
  border:2px solid rgba(37,211,102,.38);
  border-radius:999px;
  pointer-events:none;
  animation:whatsappConnectPulse 1.6s ease-out infinite;
}
.whatsapp-connect-orb{
  position:relative;
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 2px rgba(37,211,102,.16);
}
.whatsapp-connect-orb svg{width:27px;height:27px;fill:#25d366}
.whatsapp-connect-label{position:relative;white-space:nowrap}
@keyframes whatsappConnectPulse{
  0%{transform:scale(.94);opacity:.9}
  100%{transform:scale(1.18);opacity:0}
}

.ai-finder-launch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 16px 8px 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--red) 100%);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(17, 33, 58, 0.28);
  cursor: pointer;
}

.ai-finder-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 2px solid rgba(184, 40, 39, 0.35);
  animation: aiFinderPulse 1.6s ease-out infinite;
}

.ai-finder-orb {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 2px rgba(184, 40, 39, 0.18);
}

.ai-finder-face {
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
}

.ai-finder-label {
  position: relative;
  font-size: 14px;
  white-space: nowrap;
}

.ai-finder-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(420px, calc(100vw - 28px));
  height: min(720px, calc(100vh - 110px));
  display: none;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(219, 228, 240, 0.95);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.ai-finder.is-open .ai-finder-panel {
  display: flex;
  flex-direction: column;
}

.ai-finder-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #182b91 55%, var(--red) 100%);
  color: #fff;
}

.ai-finder-kicker {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.82;
}

.ai-finder-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.ai-finder-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.ai-finder-chat {
  padding: 16px 18px 0;
}

.ai-finder-bubble {
  position: relative;
  min-height: 78px;
  padding: 14px 14px 14px 16px;
  border-radius: 16px 16px 16px 4px;
  background: #f8fafc;
  border: 1px solid #e5eaf2;
  color: #263451;
  font-size: 14px;
  line-height: 1.55;
}

.ai-finder-bubble span::after,
.ai-loader-text::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 16px;
  margin-left: 3px;
  border-radius: 2px;
  background: var(--red);
  vertical-align: -3px;
  animation: aiCaret 0.9s steps(2, start) infinite;
}

.ai-finder-step {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.ai-finder-step.is-active {
  display: flex;
  flex-direction: column;
}

.ai-finder-fields {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 18px 12px;
}

.ai-finder-actions {
  flex: 0 0 auto;
  padding: 12px 18px 0;
  background: #fff;
  border-top: 1px solid #eef2f7;
  box-shadow: 0 -12px 24px rgba(15, 23, 42, 0.06);
}

.ai-finder-copy {
  margin-bottom: 14px;
  color: #526078;
  font-size: 13px;
  line-height: 1.55;
}

.ai-finder-copy strong,
.ai-finder-copy span {
  display: block;
}

.ai-finder-copy strong {
  color: var(--charcoal);
  font-size: 17px;
  margin-bottom: 3px;
}

.ai-finder label {
  display: block;
  margin-bottom: 12px;
  color: #263451;
  font-size: 12px;
  font-weight: 900;
}

.ai-finder input,
.ai-finder select {
  display: block;
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  padding: 9px 11px;
  font-size: 13px;
  box-sizing: border-box;
}

.ai-finder input:focus,
.ai-finder select:focus {
  outline: 2px solid rgba(184, 40, 39, 0.18);
  border-color: var(--red);
}

.ai-finder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ai-finder-primary {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px 10px 0 0;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(184, 40, 39, 0.22);
}

.ai-finder-primary::before {
  display: none;
}

.ai-finder.is-qualified .ai-finder-chat {
  display: none;
}

.ai-finder-step[data-ai-loader],
.ai-finder-step[data-ai-results] {
  padding: 16px 18px 18px;
  overflow: auto;
}

.ai-finder-primary:disabled {
  opacity: 0.72;
  cursor: wait;
}

.ai-loader-ring {
  width: 76px;
  height: 76px;
  margin: 18px auto 16px;
  border-radius: 50%;
  border: 7px solid #eef2ff;
  border-top-color: var(--red);
  border-right-color: var(--charcoal);
  animation: aiSpin 0.9s linear infinite;
}

.ai-loader-title {
  color: var(--charcoal);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.ai-loader-text {
  min-height: 42px;
  color: #526078;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.ai-results-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ai-results-head h4 {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
}

.ai-results-head button {
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
}

.ai-result-list {
  display: grid;
  gap: 12px;
}

.ai-result-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid #e5eaf2;
  border-radius: 12px;
  background: #fff;
}

.ai-result-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  background: #f8fafc;
}

.ai-result-card h5 {
  margin: 0 0 4px;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.25;
}

.ai-result-card p {
  margin: 0 0 8px;
  color: #5e6b81;
  font-size: 12px;
  line-height: 1.45;
}

.ai-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.ai-result-tags span {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--red-pale);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
}

.ai-result-summary {
  margin-bottom: 9px !important;
}

.ai-result-card a {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.ai-empty-result {
  padding: 16px;
  border: 1px dashed #dbe4f0;
  border-radius: 12px;
  color: #526078;
  background: #f8fafc;
  line-height: 1.5;
}

.college-finder-results-banner .page-banner-content {
  max-width: 920px;
}

.college-finder-results-page {
  background: var(--white);
}

.college-finder-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid #f1d8c8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.college-finder-summary h2 {
  margin: 0 0 6px;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1.2;
}

.college-finder-summary p {
  margin: 0;
  color: #526078;
  line-height: 1.6;
}

.college-finder-summary .college-finder-refine {
  margin-top: 0;
}

.college-finder-refine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(184, 40, 39, 0.2);
}

.college-finder-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.college-finder-filter-chips span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red-pale);
  color: var(--red-dark);
  border: 1px solid #f4c7c4;
  font-size: 13px;
  font-weight: 900;
}

.college-finder-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
  border: 1px dashed #f1d8c8;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.college-finder-empty h2 {
  margin: 0 0 8px;
  color: var(--charcoal);
}

.college-finder-empty p {
  color: #526078;
  line-height: 1.6;
}

@keyframes aiFinderPulse {
  0% { transform: scale(0.94); opacity: 0.9; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes aiCaret {
  50% { opacity: 0; }
}

@keyframes aiSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  .whatsapp-connect{
    left:14px;
    bottom:14px;
    padding:8px;
  }
  .whatsapp-connect-label{display:none}

  .ai-finder {
    right: 14px;
    bottom: 14px;
  }

  .ai-finder-label {
    display: none;
  }

  .ai-finder-launch {
    padding: 8px;
  }

  .ai-finder-panel {
    right: -2px;
    bottom: 66px;
  }

  .ai-finder-grid,
  .ai-result-card {
    grid-template-columns: 1fr;
  }

  .ai-result-card img {
    width: 100%;
    height: 130px;
  }

  .college-finder-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .college-finder-summary h2 {
    font-size: 23px;
  }

  .college-finder-refine {
    width: 100%;
  }
}

.kn-review-chip{display:inline-flex;align-items:center;gap:8px;padding:7px 13px;border:1px solid rgba(192,57,43,.22);border-radius:999px;background:#fff;color:var(--red,#c0392b);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px}
.kn-review-chip:before{content:"";width:7px;height:7px;border-radius:50%;background:var(--red,#c0392b)}
.kn-review-hero,.kn-student-reviews-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#1a1a2e 0%,#2a2032 55%,#c0392b 100%);color:#fff;padding:86px 5vw}
.kn-review-hero-pattern{position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.16),transparent 26%),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px);background-size:auto,42px 42px,42px 42px;opacity:.55}
.kn-review-hero-inner,.kn-student-reviews-hero-inner{position:relative;max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.kn-review-hero-copy h1,.kn-student-reviews-hero h1{font-size:clamp(34px,5vw,64px);line-height:1.04;margin:18px 0 16px;font-weight:900;letter-spacing:0}
.kn-review-hero-copy p,.kn-student-reviews-hero p{max-width:650px;color:rgba(255,255,255,.86);font-size:17px;line-height:1.75}
.kn-review-hero-btn,.kn-review-submit,.kn-student-review-actions a,.kn-review-filter-actions button{display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:10px;background:var(--red,#c0392b);color:#fff;text-decoration:none;font-weight:800;padding:13px 20px;box-shadow:0 14px 28px rgba(192,57,43,.24);transition:.22s ease}
.kn-review-hero-btn:hover,.kn-review-submit:hover,.kn-student-review-actions a:hover,.kn-review-filter-actions button:hover{background:#071b36;color:#fff;transform:translateY(-2px)}
.kn-review-hero-btn{margin-top:24px}
.kn-review-mini-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.kn-review-mini-row span{padding:8px 11px;border:1px solid rgba(255,255,255,.18);border-radius:999px;color:rgba(255,255,255,.86);font-size:13px}
.kn-review-hero-art{min-height:320px;position:relative}.kn-review-campus{position:absolute;inset:22px;border-radius:18px;background:url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=900&auto=format&fit=crop&q=80") center/cover;box-shadow:0 28px 70px rgba(0,0,0,.28)}
.kn-review-student-card,.kn-review-floating-note{position:absolute;background:#fff;color:#1a1a2e;border-radius:12px;padding:15px 18px;box-shadow:0 18px 42px rgba(0,0,0,.18);font-weight:800}.kn-review-student-card{left:0;bottom:24px}.kn-review-floating-note{right:0;top:28px;color:var(--red,#c0392b)}
.kn-review-student-card span,.kn-approved-stars{display:block;color:#f5a623;letter-spacing:2px;margin-bottom:5px}
.kn-review-benefits,.kn-review-form-section,.kn-student-reviews-page{padding:70px 5vw;background:#fff}.kn-review-form-section,.kn-student-reviews-page{background:#f8f8f8}
.kn-review-section-head,.kn-review-form-intro{text-align:center;max-width:720px;margin:0 auto 30px}.kn-review-section-head h2,.kn-review-form-intro h2{font-size:clamp(28px,4vw,44px);font-weight:900;color:#1a1a2e;margin:14px 0 10px}.kn-review-section-head p,.kn-review-form-intro p{color:#666;line-height:1.7}
.kn-review-benefit-grid,.kn-review-form-grid,.kn-student-review-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.kn-review-benefit-grid article,.kn-review-form-panel,.kn-student-review-card,.kn-review-empty{background:#fff;border:1px solid #ececec;border-radius:12px;padding:24px;box-shadow:0 10px 28px rgba(15,23,42,.05)}
.kn-review-benefit-grid span{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(192,57,43,.1);color:var(--red,#c0392b);font-weight:900;margin-bottom:14px}.kn-review-benefit-grid h3{color:#1a1a2e;font-weight:900;margin-bottom:8px}.kn-review-benefit-grid p,.kn-student-review-card p,.kn-review-empty p{color:#666;line-height:1.65}
.kn-review-form-shell{max-width:980px;margin:0 auto}.kn-review-form-panel{padding:34px}.kn-review-form-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.kn-review-form label,.kn-review-wide{display:flex;flex-direction:column;gap:7px;font-weight:800;color:#1a1a2e}.kn-review-wide{margin-top:16px}.kn-review-form b{color:var(--red,#c0392b)}
.kn-review-form input,.kn-review-form select,.kn-review-form textarea,.kn-review-filterbar select{width:100%;border:1px solid #ddd;border-radius:9px;background:#fff;padding:12px 13px;color:#1a1a2e;outline:0}.kn-review-form input:focus,.kn-review-form select:focus,.kn-review-form textarea:focus,.kn-review-filterbar select:focus{border-color:var(--red,#c0392b);box-shadow:0 0 0 3px rgba(192,57,43,.12)}
.kn-review-form em{font-style:normal;color:#c0392b;font-size:12px}.kn-review-success,.kn-review-errors{border-radius:9px;padding:12px 14px;margin-bottom:16px;font-weight:700}.kn-review-success{background:#eaf8ef;color:#146c43}.kn-review-errors{background:#fff0f0;color:#c0392b}
.kn-review-submit{margin-top:18px;width:100%}
.kn-student-review-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.kn-student-review-actions .btn-outline,.kn-review-filter-actions a{border:1px solid rgba(255,255,255,.55);background:transparent;color:#fff;box-shadow:none}.kn-review-filter-actions a{border-color:#ddd;color:#1a1a2e}
.kn-review-filterbar{max-width:1180px;margin:0 auto 28px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr)) auto;gap:14px;align-items:end}.kn-review-filterbar label{font-weight:800;color:#1a1a2e}.kn-review-filterbar span{display:block;margin-bottom:7px;font-size:13px}
.kn-review-results-head{max-width:1180px;margin:0 auto 20px;display:flex;align-items:end;justify-content:space-between;gap:16px}.kn-review-results-head span{color:var(--red,#c0392b);font-weight:900;text-transform:uppercase;font-size:12px}.kn-review-results-head h2{margin:3px 0 0;color:#1a1a2e;font-weight:900}
.kn-student-review-card-top{display:flex;gap:13px;align-items:center;margin-bottom:14px}.kn-review-avatar{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#1a1a2e;color:#fff;font-weight:900}.kn-student-review-card h3{font-weight:900;color:#1a1a2e;margin:0 0 10px}
.kn-student-review-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:15px}.kn-student-review-tags span{background:#f4f4f4;border-radius:999px;padding:7px 10px;font-size:12px;color:#555}.kn-review-pagination{max-width:1180px;margin:28px auto 0}.kn-review-empty{max-width:580px;margin:0 auto;text-align:center}
.kn-review-sidebar-card{position:relative;overflow:hidden;background:linear-gradient(145deg,#fff 0%,#fff7f6 58%,#ffe9e5 100%);border:1px solid #efc9c2;border-radius:12px;padding:22px;box-shadow:0 14px 34px rgba(192,57,43,.10);margin-top:4px}.kn-review-sidebar-card:before{content:"";position:absolute;right:-42px;top:-48px;width:120px;height:120px;border-radius:50%;background:rgba(192,57,43,.12)}.kn-review-sidebar-icon{position:relative;display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#fff;color:var(--red,#c0392b);border:1px solid #efc9c2;box-shadow:0 8px 20px rgba(192,57,43,.10);font-size:18px;margin-bottom:14px}.kn-review-sidebar-top{position:relative}.kn-review-sidebar-top span{display:block;color:var(--red,#c0392b);font-size:12px;font-weight:900;letter-spacing:.6px;text-transform:uppercase;margin-bottom:5px}.kn-review-sidebar-top strong{display:block;color:#111827;font-size:22px;line-height:1.15;margin-bottom:8px}.kn-review-sidebar-top p{margin:0;color:#4b5563;line-height:1.58;font-size:14px}.kn-review-sidebar-btn{position:relative;display:flex;align-items:center;justify-content:center;gap:8px;text-align:center;margin-top:18px;border-radius:10px;background:#b8322a;color:#fff;padding:12px 14px;text-decoration:none;font-weight:900;box-shadow:0 12px 24px rgba(184,50,42,.22);transition:background .2s,transform .2s,box-shadow .2s}.kn-review-sidebar-btn:hover{background:#8f271f;color:#fff;transform:translateY(-2px);box-shadow:0 16px 30px rgba(184,50,42,.28)}
@media(max-width:900px){.kn-review-hero-inner,.kn-student-reviews-hero-inner,.kn-review-benefit-grid,.kn-review-form-grid,.kn-student-review-grid,.kn-review-filterbar{grid-template-columns:1fr}.kn-review-hero-art{display:none}.kn-review-results-head{display:block}.kn-review-hero,.kn-student-reviews-hero{padding:64px 20px}.kn-review-benefits,.kn-review-form-section,.kn-student-reviews-page{padding:48px 20px}.kn-review-form-panel{padding:22px}}
.exam-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.exam-card{position:relative;background:linear-gradient(180deg,#fff 0%,#fff 62%,#fff8f7 100%);border:1px solid #ececec;border-radius:14px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.06);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.exam-card:before{content:"";position:absolute;inset:0 0 auto;height:5px;background:linear-gradient(90deg,var(--red,#c0392b),#f59e0b);opacity:.9}
.exam-card:hover{transform:translateY(-5px);box-shadow:0 18px 42px rgba(15,23,42,.12);border-color:rgba(192,57,43,.28)}
.exam-card-top{display:flex;align-items:center;gap:14px;padding:22px 20px 6px}.exam-card-logo-wrap{display:grid;place-items:center;width:64px;height:64px;border-radius:16px;border:1px solid rgba(192,57,43,.18);background:#fff;box-shadow:0 10px 24px rgba(192,57,43,.08);flex:0 0 64px;transition:width .2s ease,flex-basis .2s ease}.exam-card-logo{width:48px;height:48px;object-fit:contain;transition:width .2s ease}.exam-card-logo-wrap.is-landscape{width:112px;flex-basis:112px}.exam-card-logo-wrap.is-landscape .exam-card-logo{width:96px;height:48px}
.exam-card-kicker{display:flex;align-items:flex-start;flex-direction:column;gap:8px;min-width:0}.exam-card-code{display:inline-flex;background:#fff;color:var(--red,#c0392b);border:1px solid rgba(192,57,43,.25);border-radius:999px;padding:6px 11px;font-size:12px;font-weight:900;letter-spacing:.4px}.exam-card-type{margin:0;color:var(--red,#c0392b);font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.6px;line-height:1.35}
.exam-card-body{padding:10px 20px 20px}
.exam-card-title{margin:0 0 12px;font-size:20px;line-height:1.25}.exam-card-title a{display:flex;align-items:center;gap:10px;color:#1a1a2e;text-decoration:none}.exam-card-title a:hover{color:var(--red,#c0392b)}
.exam-card-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.exam-card-meta span{background:#f6f6f6;border:1px solid #eee;border-radius:999px;padding:6px 10px;color:#555;font-size:12px;font-weight:700}
.exam-card-desc{color:#666;line-height:1.65;margin:0 0 16px}.exam-card-link{display:inline-flex;text-decoration:none;padding:9px 13px;font-size:14px;line-height:1.15;border-radius:7px}
.exam-detail-hero{background:linear-gradient(135deg,#0f172a 0%,#2a1727 55%,#c0392b 145%)}.exam-detail-hero .page-banner-overlay{background:radial-gradient(circle at top right,rgba(255,255,255,.14),transparent 34%),linear-gradient(135deg,rgba(15,23,42,.9),rgba(15,23,42,.72))}.exam-detail-hero .page-banner-content{width:100%;max-width:none;box-sizing:border-box}.exam-hero-layout{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:34px;max-width:1260px}.exam-hero-copy{min-width:0}.exam-hero-title{display:block;max-width:820px}.exam-hero-logo-wrap{width:124px;height:124px;display:grid;place-items:center;flex:0 0 124px;background:#fff;border-radius:20px;border:1px solid rgba(255,255,255,.32);box-shadow:0 18px 44px rgba(0,0,0,.2);transition:width .2s ease}.exam-hero-logo{width:92px;height:92px;object-fit:contain}.exam-hero-logo-wrap.is-landscape{width:216px}.exam-hero-logo-wrap.is-landscape .exam-hero-logo{width:184px;height:92px}
.exam-detail-section{background:#f8f8f8}.exam-detail-layout{width:100%;max-width:1640px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:28px;align-items:start}
.exam-detail-main,.exam-sidebar-card,.featured-app-inline{background:#fff;border:1px solid #ececec;border-radius:12px;box-shadow:0 12px 30px rgba(15,23,42,.06)}
.exam-detail-main{padding:26px}.exam-info-strip,.exam-date-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin:0 0 22px}
.exam-info-strip div,.exam-date-grid div{border:1px solid #eee;border-radius:10px;padding:14px;background:#fbfbfb}.exam-info-strip span,.exam-date-grid span{display:block;color:#777;font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.5px;margin-bottom:6px}.exam-info-strip strong,.exam-date-grid strong{color:#1a1a2e;line-height:1.35}
.exam-counselling-links{border:1px solid #dbeafe;border-radius:10px;padding:16px;background:#f8fbff;margin:0 0 22px}.exam-counselling-label{display:block;color:#2563eb;font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.5px;margin-bottom:6px}.exam-counselling-links strong{display:block;color:#172554;margin-bottom:12px}.exam-counselling-tags{display:flex;flex-wrap:wrap;gap:8px}.exam-counselling-tags a{display:inline-flex;align-items:center;border:1px solid #93c5fd;border-radius:999px;background:#fff;color:#1d4ed8;font-weight:800;font-size:13px;padding:8px 12px;text-decoration:none}.exam-counselling-tags a:hover{background:#2563eb;border-color:#2563eb;color:#fff}
.exam-date-grid{margin-top:22px}.course-detail-body{color:#333;line-height:1.78}.course-detail-body h2,.course-detail-body h3{color:#1a1a2e;margin:22px 0 10px}.course-detail-body ul{padding-left:20px;margin:12px 0}
.exam-eligibility-box{margin-top:22px;border-left:4px solid var(--red,#c0392b);background:#fff7f6;border-radius:10px;padding:18px}.exam-eligibility-box h2{margin:0 0 8px;color:#1a1a2e}.exam-eligibility-box p{margin:0;color:#555;line-height:1.7}
.exam-detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.exam-detail-sidebar{display:grid;gap:18px}.exam-sidebar-card{padding:20px}.exam-sidebar-card h2{font-size:20px;color:#1a1a2e;margin:0 0 8px}.exam-sidebar-card p{color:#666;line-height:1.6;margin:0 0 14px}
.exam-sidebar-list{display:grid;gap:10px}.exam-sidebar-list a{display:block;text-decoration:none;border:1px solid #eee;border-radius:10px;padding:12px;background:#fff;color:#1a1a2e;transition:.2s ease}.exam-sidebar-list a:hover{border-color:rgba(192,57,43,.32);background:#fff8f7}.exam-sidebar-list span{display:block;color:var(--red,#c0392b);font-size:12px;font-weight:900;margin-bottom:4px}.exam-sidebar-empty{color:#777;background:#f7f7f7;border-radius:10px;padding:12px}
.featured-app-inline{padding:18px;margin-bottom:22px}.featured-app-inline-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.featured-app-inline-head span{color:var(--red,#c0392b);font-size:12px;font-weight:900;text-transform:uppercase}.featured-app-inline-head strong{color:#1a1a2e;font-size:18px}
.featured-app-inline-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.featured-app-inline-card{display:grid;grid-template-columns:72px 1fr;gap:12px;align-items:center;border:1px solid #eee;border-radius:10px;padding:10px;text-decoration:none;color:#1a1a2e}.featured-app-inline-card:hover{border-color:rgba(192,57,43,.32);background:#fff8f7}.featured-app-inline-card img{width:72px;height:52px;object-fit:cover;border-radius:8px}.featured-app-inline-card span{font-weight:900}.featured-app-inline-card small{display:block;color:#666;margin-top:3px}
@media(max-width:1000px){.exam-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.exam-detail-layout{grid-template-columns:1fr}.exam-detail-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.exam-grid,.exam-detail-sidebar,.exam-info-strip,.exam-date-grid,.featured-app-inline-grid{grid-template-columns:1fr}.exam-detail-main{padding:18px}.exam-hero-layout{grid-template-columns:1fr;gap:18px}.exam-hero-logo-wrap{width:92px;height:92px;border-radius:16px}.exam-hero-logo{width:68px;height:68px}.exam-hero-logo-wrap.is-landscape{width:164px}.exam-hero-logo-wrap.is-landscape .exam-hero-logo{width:136px;height:68px}.featured-app-inline-card{grid-template-columns:64px 1fr}}
/* ================================================================
   THE SCHOLAR PORTAL — PREMIUM FRONTEND SYSTEM
   ================================================================ */
:root{
  --tsp-ink:#071b36;
  --tsp-blue:#0b4ea2;
  --tsp-blue-bright:#1768c7;
  --tsp-gold:#c9972e;
  --tsp-gold-soft:#e8c774;
  --tsp-ivory:#f6f1e7;
  --tsp-cloud:#eef4fa;
  --tsp-line:rgba(7,27,54,.13);
  --tsp-shadow:0 26px 80px rgba(7,27,54,.14);
}

body{font-family:'Manrope',sans-serif;letter-spacing:-.012em;background:#fff;color:var(--tsp-ink)}
body::selection{background:var(--tsp-gold);color:var(--tsp-ink)}
a,button{font-family:inherit}

/* Header */
.tsp-topbar{min-height:34px;padding:5px clamp(20px,5vw,82px);background:var(--tsp-ink);border-bottom:1px solid rgba(255,255,255,.09);font-size:11px;letter-spacing:.035em}
.tsp-topbar .topbar-left,.tsp-topbar .topbar-right{gap:22px}
.tsp-topbar .topbar-icon{background:rgba(201,151,46,.17);color:var(--tsp-gold-soft)}
.tsp-topbar-note{color:var(--tsp-gold-soft);font-weight:700;text-transform:uppercase;letter-spacing:.12em;font-size:9px}
.tsp-topbar .topbar-dropdown-btn{padding:6px 12px;border-color:rgba(255,255,255,.13);font-size:11px;background:rgba(255,255,255,.06)}
.tsp-topbar .topbar-dropdown-btn:hover{background:var(--tsp-gold);border-color:var(--tsp-gold);color:var(--tsp-ink)}
.tsp-topbar .topbar-dropdown-menu a:hover{background:var(--tsp-blue)}

.tsp-nav{top:0;background:rgba(255,255,255,.94);border-bottom:1px solid rgba(7,27,54,.08);box-shadow:none;backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.tsp-nav .nav-inner{height:78px;padding:0 clamp(20px,5vw,82px);gap:28px}
.tsp-nav .nav-logo-img{height:54px;max-width:178px;object-fit:contain}
.tsp-nav .nav-collapse{gap:26px}
.tsp-nav .nav-links{gap:clamp(16px,1.7vw,30px)}
.tsp-nav .nav-links a{font-size:12px;font-weight:700;color:#21354e;letter-spacing:.01em;white-space:nowrap}
.tsp-nav .nav-links a::after{height:1.5px;background:var(--tsp-gold);bottom:-8px}
.tsp-nav .nav-links a:hover,.tsp-nav .nav-links a.active{color:var(--tsp-blue)}
.tsp-nav .nav-cta{display:inline-flex;align-items:center;gap:13px;padding:11px 12px 11px 18px;background:var(--tsp-ink);border:1px solid var(--tsp-ink);border-radius:999px;color:#fff;font-size:12px;font-weight:700;white-space:nowrap;box-shadow:none}
.tsp-nav .nav-cta b{display:grid;place-items:center;width:27px;height:27px;border-radius:50%;background:var(--tsp-gold);color:var(--tsp-ink);font-size:13px;transition:transform .25s ease}
.tsp-nav .nav-cta:hover{background:var(--tsp-blue);border-color:var(--tsp-blue);transform:none}
.tsp-nav .nav-cta:hover b{transform:rotate(45deg)}
.tsp-nav .nav-dropdown-menu{border-radius:16px;padding:10px;border-color:rgba(7,27,54,.09)}
.tsp-nav .nav-dropdown-menu a{padding:10px 12px;border-radius:9px}

/* Hero — the Scholar Window expands into the full film on scroll */
.scholar-home{background:#fff;overflow:clip}
.scholar-hero{--video-width:42vw;--video-height:64vh;--video-right:5vw;--video-top:15vh;--copy-opacity:1;--video-copy-opacity:0;--cue-opacity:1;position:relative;height:190vh;background:var(--tsp-ivory)}
.scholar-hero-sticky{position:sticky;top:0;height:100vh;overflow:hidden;background:linear-gradient(125deg,#f8f3e9 0%,#f3efe8 56%,#e9f1fa 100%)}
.scholar-hero-grid{position:absolute;inset:0;opacity:.42;background-image:linear-gradient(rgba(7,27,54,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(7,27,54,.045) 1px,transparent 1px);background-size:74px 74px;mask-image:linear-gradient(90deg,#000,transparent 65%)}
.scholar-hero-grid::before,.scholar-hero-grid::after{content:"";position:absolute;width:38vw;height:38vw;border:1px solid rgba(11,78,162,.1);border-radius:50%;left:-18vw;top:-15vw}
.scholar-hero-grid::after{width:24vw;height:24vw;left:-11vw;top:-8vw;border-color:rgba(201,151,46,.22)}
.scholar-hero-copy{position:absolute;z-index:4;left:clamp(24px,6vw,106px);top:50%;width:min(48vw,750px);transform:translateY(-52%);opacity:var(--copy-opacity);transition:opacity .1s linear;pointer-events:auto}
.scholar-kicker,.scholar-eyebrow{display:flex;align-items:center;gap:10px;color:var(--tsp-blue);font-size:10px;font-weight:800;letter-spacing:.17em;text-transform:uppercase}
.scholar-kicker span{width:7px;height:7px;border-radius:50%;background:var(--tsp-gold);box-shadow:0 0 0 5px rgba(201,151,46,.16)}
.scholar-hero h1{margin:22px 0 24px;font-family:'Playfair Display',serif;font-size:clamp(48px,5.15vw,86px);line-height:.96;letter-spacing:-.055em;color:var(--tsp-ink);font-weight:700}
.scholar-hero h1 em{color:var(--tsp-blue);font-weight:600}
.scholar-hero-lead{max-width:610px;color:#526277;font-size:clamp(15px,1.1vw,18px);line-height:1.75;letter-spacing:-.015em}
.scholar-hero-actions{display:flex;align-items:center;gap:12px;margin-top:30px}
.scholar-btn{display:inline-flex;align-items:center;justify-content:center;gap:18px;min-height:50px;padding:0 22px;border-radius:999px;text-decoration:none;font-size:12px;font-weight:800;letter-spacing:.005em;transition:transform .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease}
.scholar-btn:hover{transform:translateY(-3px)}
.scholar-btn-gold{background:var(--tsp-gold);color:var(--tsp-ink);box-shadow:0 12px 30px rgba(201,151,46,.23)}
.scholar-btn-gold:hover{background:var(--tsp-gold-soft);color:var(--tsp-ink)}
.scholar-btn-quiet{border:1px solid rgba(7,27,54,.2);color:var(--tsp-ink);background:rgba(255,255,255,.38)}
.scholar-btn-quiet:hover{background:#fff;color:var(--tsp-blue);border-color:#fff;box-shadow:0 12px 34px rgba(7,27,54,.09)}
.scholar-mini-proof{display:flex;gap:0;margin-top:38px;border-top:1px solid rgba(7,27,54,.13);width:min(520px,100%)}
.scholar-mini-proof div{display:flex;flex-direction:column;padding:17px 32px 0 0;margin-right:32px;border-right:1px solid rgba(7,27,54,.12)}
.scholar-mini-proof div:last-child{border:0;margin:0}
.scholar-mini-proof strong{font-family:'Playfair Display',serif;font-size:22px;color:var(--tsp-ink)}
.scholar-mini-proof span{font-size:10px;color:#718096;text-transform:uppercase;letter-spacing:.08em;margin-top:2px}

.scholar-video-window{position:absolute;z-index:3;right:var(--video-right);top:var(--video-top);width:var(--video-width);height:var(--video-height);overflow:hidden;clip-path:polygon(13% 0,87% 0,100% 68%,50% 100%,0 68%);background:var(--tsp-ink);box-shadow:var(--tsp-shadow);will-change:width,height,right,top,clip-path}
.scholar-video-window::before{content:"";position:absolute;z-index:5;inset:12px;border:1px solid rgba(232,199,116,.66);clip-path:inherit;pointer-events:none}
.scholar-video-window video{width:100%;height:100%;object-fit:cover;filter:saturate(.88) contrast(1.05)}
.scholar-video-wash{position:absolute;inset:0;background:linear-gradient(120deg,rgba(7,27,54,.54),rgba(7,27,54,.04) 55%,rgba(7,27,54,.18));transition:opacity .25s ease}
.scholar-window-lines{position:absolute;z-index:3;inset:0;pointer-events:none}
.scholar-window-lines i{position:absolute;display:block;background:rgba(232,199,116,.75);transform:rotate(-36deg);transform-origin:left center;box-shadow:0 0 0 7px rgba(7,27,54,.16)}
.scholar-window-lines i:nth-child(1){width:34%;height:2px;left:-4%;top:24%}
.scholar-window-lines i:nth-child(2){width:28%;height:2px;right:-12%;top:17%}
.scholar-window-lines i:nth-child(3){width:24%;height:2px;right:-6%;bottom:15%}
.scholar-video-label{position:absolute;z-index:6;left:50%;top:50%;transform:translate(-50%,-50%);display:flex;align-items:center;gap:13px;padding:12px 17px;border:1px solid rgba(255,255,255,.48);border-radius:999px;color:#fff;background:rgba(7,27,54,.24);backdrop-filter:blur(8px);white-space:nowrap;opacity:var(--cue-opacity)}
.scholar-video-label span:last-child{display:flex;flex-direction:column}
.scholar-video-label b{font-size:11px;letter-spacing:.04em}
.scholar-video-label small{font-size:8px;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.74);margin-top:2px}
.scholar-video-pulse{width:10px;height:10px;border:2px solid var(--tsp-gold-soft);border-radius:50%;box-shadow:0 0 0 5px rgba(232,199,116,.18)}
.scholar-video-full-copy{position:absolute;z-index:6;inset:auto clamp(26px,6vw,100px) clamp(36px,7vh,74px);display:flex;align-items:flex-end;justify-content:space-between;color:#fff;opacity:var(--video-copy-opacity);transform:translateY(calc((1 - var(--video-copy-opacity)) * 20px));pointer-events:none}
.scholar-video-full-copy span{max-width:730px;font-family:'Playfair Display',serif;font-size:clamp(38px,5.4vw,82px);line-height:1;letter-spacing:-.045em;text-shadow:0 6px 28px rgba(0,0,0,.22)}
.scholar-video-full-copy a{display:flex;align-items:center;gap:24px;padding:14px 16px 14px 22px;border:1px solid rgba(255,255,255,.48);border-radius:999px;color:#fff;text-decoration:none;font-size:12px;font-weight:800;pointer-events:auto;backdrop-filter:blur(8px)}
.scholar-video-full-copy a b{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:var(--tsp-gold);color:var(--tsp-ink)}
.scholar-scroll-cue{position:absolute;z-index:5;left:clamp(24px,6vw,106px);bottom:24px;display:flex;align-items:center;gap:11px;color:#6d7888;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.16em;opacity:var(--cue-opacity)}
.scholar-scroll-cue span{display:block;width:30px;height:1px;background:var(--tsp-gold)}

/* Shared sections */
.scholar-section{padding:clamp(84px,9vw,150px) clamp(24px,6vw,108px)}
.scholar-section-intro{max-width:740px;margin-bottom:56px}
.scholar-section-intro h2,.scholar-section-head h2,.scholar-guidance h2,.scholar-pathways h2,.scholar-journey h2,.scholar-final-cta h2{font-family:'Playfair Display',serif;font-size:clamp(40px,4.6vw,72px);line-height:1.03;letter-spacing:-.045em;color:var(--tsp-ink);margin:16px 0 18px}
.scholar-section-intro p{max-width:620px;color:#68778a;font-size:15px;line-height:1.75}
.scholar-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:48px}
.scholar-section-head h2{margin-bottom:0;font-size:clamp(38px,4vw,64px)}
.scholar-section-head>p{max-width:380px;color:#6a7788;line-height:1.7;font-size:14px}
.scholar-text-link{display:inline-flex;align-items:center;gap:16px;color:var(--tsp-ink);font-size:12px;font-weight:800;text-decoration:none;border-bottom:1px solid rgba(7,27,54,.25);padding-bottom:7px;transition:color .2s,border .2s}
.scholar-text-link span{color:var(--tsp-gold);transition:transform .2s}
.scholar-text-link:hover{color:var(--tsp-blue);border-color:var(--tsp-blue)}
.scholar-text-link:hover span{transform:translate(3px,-3px)}
.scholar-eyebrow::before{content:"";width:22px;height:1px;background:var(--tsp-gold)}
.scholar-eyebrow--light{color:var(--tsp-gold-soft)}
.scholar-eyebrow--light::before{background:rgba(255,255,255,.5)}

.scholar-trust-strip{min-height:96px;padding:20px clamp(24px,6vw,108px);display:flex;align-items:center;justify-content:space-between;gap:40px;background:var(--tsp-ink);color:#fff;border-top:1px solid rgba(255,255,255,.08)}
.scholar-trust-strip>p{font-family:'Playfair Display',serif;font-size:clamp(19px,2vw,28px);letter-spacing:-.025em}
.scholar-trust-strip>div{display:flex;gap:clamp(22px,3vw,52px)}
.scholar-trust-strip span{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.68);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;white-space:nowrap}
.scholar-trust-strip b{color:var(--tsp-gold-soft);font-weight:800}

/* Discovery */
.scholar-discover{background:#fff}
.scholar-discovery-grid{display:grid;grid-template-columns:1.16fr .84fr .84fr 1.16fr;gap:12px}
.scholar-discovery-card{position:relative;min-height:430px;padding:24px;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden;background:var(--tsp-cloud);border:1px solid rgba(7,27,54,.07);color:var(--tsp-ink);text-decoration:none;transition:transform .35s ease,box-shadow .35s ease,background .35s ease}
.scholar-discovery-card:first-child{border-radius:26px 4px 4px 26px}
.scholar-discovery-card:last-child{border-radius:4px 26px 26px 4px}
.scholar-discovery-card:hover{transform:translateY(-8px);box-shadow:0 22px 55px rgba(7,27,54,.12);z-index:2}
.scholar-discovery-card--primary{background:var(--tsp-blue);color:#fff}
.scholar-discovery-card--gold{background:var(--tsp-ivory)}
.scholar-card-index{position:absolute;right:18px;top:17px;font-family:'Playfair Display',serif;font-size:13px;opacity:.54}
.scholar-card-symbol{display:grid;place-items:center;width:52px;height:52px;border-radius:50%;border:1px solid currentColor;font-family:'Playfair Display',serif;font-size:21px}
.scholar-discovery-card small{display:block;margin-bottom:10px;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.14em;opacity:.62}
.scholar-discovery-card h3{font-family:'Playfair Display',serif;font-size:clamp(27px,2.2vw,36px);line-height:1.05;letter-spacing:-.035em;margin-bottom:14px}
.scholar-discovery-card p{font-size:12px;line-height:1.65;opacity:.7;max-width:260px}
.scholar-card-arrow{position:absolute;right:22px;bottom:22px;display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#fff;color:var(--tsp-ink);font-size:15px;transition:transform .25s ease}
.scholar-discovery-card:hover .scholar-card-arrow{transform:rotate(45deg)}

/* Featured opportunities */
.scholar-opportunities{background:var(--tsp-ivory)}
.scholar-opportunity-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.scholar-opportunity-card{position:relative;min-height:350px;padding:25px;display:flex;flex-direction:column;background:#fff;border-radius:18px;color:var(--tsp-ink);text-decoration:none;border:1px solid rgba(7,27,54,.08);transition:transform .3s ease,box-shadow .3s ease}
.scholar-opportunity-card:hover{transform:translateY(-7px);box-shadow:0 24px 60px rgba(7,27,54,.12)}
.scholar-opportunity-top{display:flex;justify-content:space-between;align-items:center;font-size:9px;text-transform:uppercase;letter-spacing:.12em;font-weight:800;color:var(--tsp-blue)}
.scholar-opportunity-top b{display:grid;place-items:center;width:30px;height:30px;border:1px solid var(--tsp-line);border-radius:50%;color:var(--tsp-gold)}
.scholar-opportunity-logo{height:110px;margin:35px 0 24px;display:flex;align-items:center;justify-content:flex-start}
.scholar-opportunity-logo img{max-width:160px;max-height:90px;object-fit:contain}
.scholar-opportunity-logo>span{display:grid;place-items:center;width:76px;height:76px;border-radius:22px;background:var(--tsp-cloud);font-family:'Playfair Display',serif;font-size:26px;color:var(--tsp-blue)}
.scholar-opportunity-card h3{font-family:'Playfair Display',serif;font-size:25px;line-height:1.12;margin-bottom:7px}
.scholar-opportunity-card>p{font-size:11px;color:#778394}
.scholar-opportunity-note{margin-top:auto;padding-top:18px;border-top:1px solid var(--tsp-line);font-size:10px;font-weight:700;color:#536174}

/* Pathways */
.scholar-pathways{display:grid;grid-template-columns:.9fr 1.1fr;background:var(--tsp-ink);color:#fff}
.scholar-pathways-copy{padding:clamp(80px,9vw,150px) clamp(28px,7vw,120px);display:flex;flex-direction:column;align-items:flex-start;justify-content:center;border-right:1px solid rgba(255,255,255,.09)}
.scholar-pathways h2{color:#fff;margin:22px 0;font-size:clamp(43px,4.7vw,74px)}
.scholar-pathways-copy p{max-width:530px;color:rgba(255,255,255,.62);font-size:14px;line-height:1.8;margin-bottom:32px}
.scholar-pathway-list{display:flex;flex-direction:column;padding:clamp(52px,6vw,100px)}
.scholar-pathway-list>a{min-height:86px;display:grid;grid-template-columns:52px 1fr auto;align-items:center;gap:20px;color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.12);transition:padding .25s ease,background .25s ease}
.scholar-pathway-list>a:first-child{border-top:1px solid rgba(255,255,255,.12)}
.scholar-pathway-list>a:hover{padding-left:14px;background:linear-gradient(90deg,rgba(11,78,162,.32),transparent)}
.scholar-pathway-icon{display:grid;place-items:center;width:40px;height:40px;border:1px solid rgba(232,199,116,.45);border-radius:50%;color:var(--tsp-gold-soft);font-size:16px;overflow:hidden}
.scholar-pathway-list>a>span:nth-child(2){display:flex;flex-direction:column}
.scholar-pathway-list small{font-size:8px;color:rgba(255,255,255,.46);text-transform:uppercase;letter-spacing:.13em;margin-bottom:4px}
.scholar-pathway-list strong{font-family:'Playfair Display',serif;font-size:22px;font-weight:600}
.scholar-pathway-list>a>b{color:var(--tsp-gold-soft);font-size:15px;transition:transform .25s ease}
.scholar-pathway-list>a:hover>b{transform:rotate(45deg)}

/* Guidance */
.scholar-guidance{display:grid;grid-template-columns:1fr 1fr;gap:clamp(45px,7vw,120px);align-items:center;background:#fff}
.scholar-guidance-media{position:relative;min-height:650px}
.scholar-guidance-media::before{content:"";position:absolute;inset:30px 30px -20px -20px;background:var(--tsp-ivory);border-radius:160px 12px 12px 12px}
.scholar-guidance-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:160px 12px 12px 12px;filter:saturate(.82)}
.scholar-guidance-badge{position:absolute;right:-28px;bottom:38px;width:172px;height:172px;padding:30px;display:flex;flex-direction:column;justify-content:center;background:var(--tsp-gold);color:var(--tsp-ink);border-radius:50%;box-shadow:0 18px 50px rgba(7,27,54,.2)}
.scholar-guidance-badge strong{font-family:'Playfair Display',serif;font-size:23px;line-height:1.1}
.scholar-guidance-badge span{font-size:9px;text-transform:uppercase;letter-spacing:.11em;margin-top:7px}
.scholar-guidance-copy>p{color:#66758a;line-height:1.8;font-size:15px;max-width:600px}
.scholar-guidance-points{margin:35px 0}
.scholar-guidance-points>div{display:grid;grid-template-columns:42px 1fr;gap:16px;padding:18px 0;border-top:1px solid var(--tsp-line)}
.scholar-guidance-points>div:last-child{border-bottom:1px solid var(--tsp-line)}
.scholar-guidance-points span{font-family:'Playfair Display',serif;color:var(--tsp-gold);font-size:17px}
.scholar-guidance-points p{font-size:12px;line-height:1.55;color:#6e7c8e}
.scholar-guidance-points strong{display:block;color:var(--tsp-ink);font-size:14px;margin-bottom:3px}

/* Journey and impact */
.scholar-journey{padding:clamp(88px,9vw,150px) clamp(24px,6vw,108px);background:var(--tsp-blue);color:#fff}
.scholar-journey .scholar-section-intro{max-width:850px}
.scholar-journey h2{color:#fff}
.scholar-journey-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,.25)}
.scholar-journey-grid article{position:relative;min-height:320px;padding:32px 28px;border-right:1px solid rgba(255,255,255,.18)}
.scholar-journey-grid article:last-child{border:0}
.scholar-journey-grid article>span{position:absolute;right:20px;top:22px;font-family:'Playfair Display',serif;font-size:38px;color:rgba(255,255,255,.16)}
.scholar-journey-grid small{display:block;margin-bottom:86px;color:var(--tsp-gold-soft);font-size:9px;text-transform:uppercase;letter-spacing:.14em;font-weight:800}
.scholar-journey-grid h3{font-family:'Playfair Display',serif;font-size:26px;line-height:1.1;margin-bottom:16px}
.scholar-journey-grid p{font-size:12px;color:rgba(255,255,255,.63);line-height:1.7}

.scholar-impact{padding:clamp(70px,8vw,125px) clamp(24px,6vw,108px);display:grid;grid-template-columns:.8fr 1.2fr;align-items:end;gap:60px;background:var(--tsp-ivory)}
.scholar-impact-copy>span{font-size:9px;color:var(--tsp-blue);text-transform:uppercase;letter-spacing:.14em;font-weight:800}
.scholar-impact-copy h2{font-family:'Playfair Display',serif;font-size:clamp(39px,4.1vw,65px);line-height:1.02;letter-spacing:-.04em;margin-top:16px}
.scholar-impact-numbers{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--tsp-line)}
.scholar-impact-numbers>div{padding:25px 15px 0;border-right:1px solid var(--tsp-line)}
.scholar-impact-numbers>div:last-child{border:0}
.scholar-impact-numbers strong{font-family:'Playfair Display',serif;font-size:clamp(38px,3.5vw,58px);color:var(--tsp-blue);letter-spacing:-.05em}
.scholar-impact-numbers strong span{font-size:.5em;color:var(--tsp-gold)}
.scholar-impact-numbers p{margin-top:5px;font-size:10px;color:#738095;text-transform:uppercase;letter-spacing:.08em}

/* Testimonials */
.scholar-testimonials{background:#fff}
.scholar-testimonial-slider{display:grid;grid-template-columns:54px minmax(0,1fr) 54px;align-items:center;gap:18px}
.scholar-testimonial-slider .tslider-viewport{overflow:hidden;border-radius:24px}
.scholar-testimonial-card{min-width:100%;display:grid;grid-template-columns:.32fr .68fr;min-height:420px;background:var(--tsp-cloud);border:1px solid rgba(7,27,54,.08);border-radius:24px;overflow:hidden}
.scholar-testimonial-quote{display:flex;align-items:center;justify-content:center;background:var(--tsp-ink);color:var(--tsp-gold-soft);font-family:'Playfair Display',serif;font-size:160px;line-height:1;padding-top:80px}
.scholar-testimonial-body{padding:clamp(35px,5vw,72px);display:flex;flex-direction:column;justify-content:center}
.scholar-testimonial-stars{font-size:12px;letter-spacing:.16em;color:var(--tsp-gold);margin-bottom:26px}
.scholar-testimonial-body blockquote{max-width:760px;font-family:'Playfair Display',serif;font-size:clamp(23px,2.5vw,38px);line-height:1.32;letter-spacing:-.03em;color:var(--tsp-ink)}
.scholar-testimonial-person{display:flex;align-items:center;gap:14px;margin-top:34px}
.scholar-testimonial-person img{width:48px;height:48px;border-radius:50%;object-fit:cover;border:2px solid #fff;box-shadow:0 5px 16px rgba(7,27,54,.12)}
.scholar-testimonial-person>div{display:flex;flex-direction:column}
.scholar-testimonial-person strong{font-size:12px}.scholar-testimonial-person span{font-size:10px;color:#748197;margin-top:3px}
.scholar-testimonial-slider .tslider-arrow{position:static;transform:none;width:46px;height:46px;border:1px solid var(--tsp-line);background:#fff;color:var(--tsp-ink);font-size:17px;border-radius:50%;box-shadow:none;transition:background .2s,color .2s}
.scholar-testimonial-slider .tslider-arrow:hover{transform:none;background:var(--tsp-ink);color:#fff}
.scholar-testimonial-slider .tslider-dots{grid-column:1/-1;margin-top:4px}
.scholar-testimonial-slider .tslider-dot{width:22px;height:2px;border-radius:0;background:rgba(7,27,54,.18)}
.scholar-testimonial-slider .tslider-dot.is-active{width:48px;background:var(--tsp-gold)}

/* Closing CTA */
.scholar-final-cta{position:relative;min-height:700px;padding:clamp(90px,11vw,170px) clamp(24px,9vw,165px);display:flex;align-items:center;background:var(--tsp-ink);color:#fff;overflow:hidden}
.scholar-final-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 78% 45%,rgba(11,78,162,.45),transparent 30%),linear-gradient(120deg,transparent 0 62%,rgba(255,255,255,.025) 62% 63%,transparent 63%)}
.scholar-final-orbit{position:absolute;right:-8vw;top:50%;width:46vw;height:46vw;transform:translateY(-50%);border:1px solid rgba(232,199,116,.24);border-radius:50%}
.scholar-final-orbit::before,.scholar-final-orbit::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.1)}
.scholar-final-orbit::before{inset:12%}.scholar-final-orbit::after{inset:28%;background:rgba(201,151,46,.07)}
.scholar-final-copy{position:relative;z-index:2;max-width:850px}
.scholar-final-cta h2{color:#fff;font-size:clamp(55px,7vw,105px);line-height:.91;margin:24px 0 30px}
.scholar-final-cta h2 em{color:var(--tsp-gold-soft)}
.scholar-final-copy>p{max-width:620px;color:rgba(255,255,255,.62);font-size:15px;line-height:1.8}
.scholar-final-actions{display:flex;align-items:center;gap:30px;margin-top:38px}
.scholar-call-link{display:flex;flex-direction:column;color:#fff;text-decoration:none}
.scholar-call-link small{font-size:8px;color:rgba(255,255,255,.48);text-transform:uppercase;letter-spacing:.13em;margin-bottom:4px}
.scholar-call-link strong{font-size:14px;letter-spacing:.03em}

/* Footer */
.pre-footer-links{background:#eef3f8!important;border-top:1px solid rgba(7,27,54,.08)!important;padding-top:62px!important}
.pre-footer-inner{max-width:1400px!important}
.pre-footer-block h2{font-family:'Playfair Display',serif!important;color:var(--tsp-ink)!important;font-size:24px!important}
.pre-footer-pills a{background:#fff!important;border:1px solid rgba(7,27,54,.11)!important;color:#3c4d63!important;border-radius:999px!important;font-size:10px!important}
.pre-footer-pills a:hover{background:var(--tsp-blue)!important;color:#fff!important;border-color:var(--tsp-blue)!important}
footer{background:#041429!important;color:rgba(255,255,255,.68)!important;border-top:1px solid rgba(232,199,116,.2)}
.footer-top{padding-top:78px!important;padding-bottom:70px!important;grid-template-columns:1.45fr .7fr .7fr 1.05fr!important}
.footer-logo-img{height:74px!important;max-width:220px!important;object-fit:contain;filter:drop-shadow(0 7px 18px rgba(0,0,0,.22))}
.footer-desc{font-size:11px!important;line-height:1.8!important;max-width:460px}
.footer-col-title{font-family:'Playfair Display',serif!important;color:#fff!important;font-size:20px!important}
.footer-links a{color:rgba(255,255,255,.62)!important;font-size:11px!important}
.footer-links a:hover{color:var(--tsp-gold-soft)!important}
.soc-btn{border-color:rgba(255,255,255,.16)!important;background:rgba(255,255,255,.04)!important}
.soc-btn:hover{background:var(--tsp-gold)!important;border-color:var(--tsp-gold)!important}
.footer-newsletter input{background:rgba(255,255,255,.07)!important;border-color:rgba(255,255,255,.14)!important;color:#fff!important}
.footer-newsletter button{background:var(--tsp-gold)!important;color:var(--tsp-ink)!important;font-weight:800!important}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1)!important;color:rgba(255,255,255,.42)!important;font-size:9px!important}
.footer-bottom a{color:rgba(255,255,255,.5)!important}
.whats-new-rail{background:var(--tsp-blue)!important;border-radius:12px 0 0 12px!important;box-shadow:0 15px 35px rgba(7,27,54,.22)!important}

/* Responsive */
@media(max-width:1180px){
  .tsp-nav .nav-links{gap:15px}.tsp-nav .nav-links a{font-size:10px}.tsp-nav .nav-collapse{gap:16px}.tsp-nav .nav-cta{padding-left:14px}.tsp-topbar-note{display:none}
  .scholar-hero-copy{width:52vw}.scholar-hero h1{font-size:clamp(44px,5.3vw,68px)}
  .scholar-discovery-grid{grid-template-columns:repeat(2,1fr)}.scholar-discovery-card{min-height:360px;border-radius:18px!important}
  .scholar-guidance-media{min-height:560px}.scholar-pathways{grid-template-columns:1fr 1fr}
  .scholar-impact{grid-template-columns:1fr}.scholar-impact-copy{max-width:640px}
}

@media(max-width:900px){
  .tsp-topbar{display:none}.tsp-nav .nav-inner{height:68px}.tsp-nav .nav-logo-img{height:46px;max-width:150px}
  .tsp-nav .nav-toggle{display:flex;border-color:rgba(7,27,54,.18)}
  .tsp-nav .nav-collapse{top:68px;background:rgba(255,255,255,.98);padding:20px 24px 28px;border-top:1px solid var(--tsp-line);box-shadow:0 24px 40px rgba(7,27,54,.12)}
  .tsp-nav .nav-links{gap:0}.tsp-nav .nav-links a{font-size:13px;padding:13px 0}.tsp-nav .nav-cta{margin-top:14px;justify-content:space-between;width:100%}
  .scholar-hero{--video-width:52vw;--video-height:55vh;--video-right:4vw;--video-top:24vh;height:175vh}
  .scholar-hero-copy{left:5vw;top:46%;width:58vw}.scholar-hero h1{font-size:clamp(42px,7vw,62px)}.scholar-hero-lead{font-size:13px;max-width:500px}.scholar-mini-proof{display:none}
  .scholar-trust-strip{flex-direction:column;align-items:flex-start;padding-top:26px;padding-bottom:26px}.scholar-trust-strip>div{width:100%;justify-content:space-between}
  .scholar-pathways{grid-template-columns:1fr}.scholar-pathways-copy{border:0;border-bottom:1px solid rgba(255,255,255,.09)}
  .scholar-guidance{grid-template-columns:1fr}.scholar-guidance-media{min-height:580px}.scholar-guidance-badge{right:18px}
  .scholar-journey-grid{grid-template-columns:repeat(2,1fr)}.scholar-journey-grid article:nth-child(2){border-right:0}.scholar-journey-grid article{border-bottom:1px solid rgba(255,255,255,.18)}
  .scholar-impact-numbers{grid-template-columns:repeat(2,1fr);gap:26px 0}.scholar-impact-numbers>div:nth-child(2){border-right:0}
  .footer-top{grid-template-columns:1fr 1fr!important}.footer-top>div:first-child,.footer-top>div:last-child{grid-column:1/-1}
}

@media(max-width:620px){
  .scholar-hero{height:160vh;--video-width:88vw;--video-height:42vh;--video-right:6vw;--video-top:51vh}
  .scholar-hero-sticky{height:calc(100svh - 0px)}.scholar-hero-grid{background-size:46px 46px}
  .scholar-hero-copy{left:22px;right:22px;top:8vh;width:auto;transform:none}.scholar-kicker{font-size:8px}.scholar-hero h1{font-size:clamp(40px,12vw,57px);margin:17px 0}.scholar-hero-lead{font-size:12px;line-height:1.6;max-width:94%}
  .scholar-hero-actions{margin-top:22px;gap:8px}.scholar-btn{min-height:45px;padding:0 16px;font-size:10px;gap:12px}.scholar-mini-proof{display:none}.scholar-scroll-cue{left:22px;bottom:15px}
  .scholar-video-window::before{inset:7px}.scholar-window-lines{display:none}.scholar-video-label{padding:9px 12px}.scholar-video-label small{display:none}
  .scholar-video-full-copy{inset:auto 22px 48px;display:block}.scholar-video-full-copy span{display:block;font-size:42px;margin-bottom:22px}.scholar-video-full-copy a{width:max-content}
  .scholar-trust-strip>div{display:grid;grid-template-columns:1fr 1fr;gap:13px 30px}
  .scholar-section{padding:78px 20px}.scholar-section-intro{margin-bottom:36px}.scholar-section-intro h2,.scholar-section-head h2,.scholar-guidance h2,.scholar-pathways h2,.scholar-journey h2{font-size:39px}
  .scholar-section-head{align-items:flex-start;flex-direction:column;margin-bottom:32px}.scholar-section-head>p{font-size:12px}
  .scholar-discovery-grid{grid-template-columns:1fr}.scholar-discovery-card{min-height:300px;padding:21px}.scholar-discovery-card h3{font-size:29px}
  .scholar-opportunity-grid{grid-template-columns:1fr}.scholar-opportunity-card{min-height:315px}
  .scholar-pathways-copy{padding:76px 22px}.scholar-pathway-list{padding:30px 22px 60px}.scholar-pathway-list>a{min-height:78px;grid-template-columns:44px 1fr auto}.scholar-pathway-list strong{font-size:19px}
  .scholar-guidance{gap:70px}.scholar-guidance-media{min-height:440px}.scholar-guidance-media img,.scholar-guidance-media::before{border-radius:90px 10px 10px 10px}.scholar-guidance-badge{width:135px;height:135px;padding:22px;right:6px;bottom:-26px}.scholar-guidance-badge strong{font-size:19px}
  .scholar-journey{padding:78px 20px}.scholar-journey-grid{grid-template-columns:1fr}.scholar-journey-grid article{min-height:260px;border-right:0}.scholar-journey-grid small{margin-bottom:58px}
  .scholar-impact{padding:74px 20px}.scholar-impact-numbers{grid-template-columns:1fr 1fr;gap:26px 0}.scholar-impact-numbers strong{font-size:43px}
  .scholar-testimonial-slider{grid-template-columns:40px minmax(0,1fr) 40px;gap:7px}.scholar-testimonial-card{grid-template-columns:1fr;min-height:500px}.scholar-testimonial-quote{display:none}.scholar-testimonial-body{padding:32px 24px}.scholar-testimonial-body blockquote{font-size:24px}.scholar-testimonial-slider .tslider-arrow{width:37px;height:37px}
  .scholar-final-cta{min-height:650px;padding:86px 22px}.scholar-final-cta h2{font-size:54px}.scholar-final-actions{align-items:flex-start;flex-direction:column}.scholar-final-orbit{width:90vw;height:90vw;right:-48vw;top:70%}
  .footer-top{grid-template-columns:1fr!important;padding:58px 22px!important}.footer-top>div{grid-column:1!important}.footer-bottom{padding:22px!important;align-items:flex-start!important;gap:14px}.pre-footer-links{padding:50px 20px!important}
}

@media(prefers-reduced-motion:reduce){
  .scholar-hero{height:auto;--video-width:100%;--video-height:60vh;--video-right:0;--video-top:auto;--copy-opacity:1;--video-copy-opacity:0;--cue-opacity:0}
  .scholar-hero-sticky{position:relative;height:auto;min-height:1100px}.scholar-hero-copy{top:140px;transform:none}.scholar-video-window{top:auto;bottom:0;clip-path:none!important}.fade-in{opacity:1!important;transform:none!important}
}

/* ================================================================
   THE SCHOLAR PORTAL — FRESH DECISION-FIRST EXPERIENCE (2026)
   ================================================================ */
:root{
  --sp-ink:#071c3e;
  --sp-blue:#1257e5;
  --sp-blue-dark:#0a3dad;
  --sp-sky:#eef4ff;
  --sp-mint:#27c3b8;
  --sp-coral:#ff7a45;
  --sp-violet:#7657d5;
  --sp-paper:#f7f9fc;
  --sp-line:#dde5f1;
  --sp-muted:#60708a;
  --sp-shadow:0 24px 70px rgba(7,28,62,.12);
  --sp-action-gradient:linear-gradient(135deg,#ff7048 0%,#ff4f63 100%);
  --sp-action-gradient-hover:linear-gradient(135deg,#ff815e 0%,#f43f59 100%);
  --sp-action-shadow:0 12px 27px rgba(255,86,77,.3);
  --sp-action-glow:rgba(255,86,77,.2);
}

body{font-family:'DM Sans','Manrope',sans-serif;color:var(--sp-ink);background:#fff;letter-spacing:-.012em}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.sp-container{width:min(1380px,calc(100% - 64px));margin-inline:auto}
.sp-home{overflow:hidden;background:#fff}
.sp-home button,.sp-home input{font:inherit}
.sp-home a,.sp-home button{-webkit-tap-highlight-color:transparent}

/* Fresh global shell */
.tsp-topbar{min-height:32px;padding:4px max(32px,calc((100vw - 1380px)/2));background:#061735;border:0;color:rgba(255,255,255,.72);font-size:11px}
.tsp-topbar .topbar-icon{background:rgba(39,195,184,.14);color:#62e2d8}
.tsp-topbar-note{color:#90a5c6;font-size:9px;letter-spacing:.14em}
.tsp-topbar .topbar-dropdown-btn{font-family:'DM Sans',sans-serif;background:rgba(255,255,255,.07);border:0;padding:6px 11px}
.tsp-nav{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.94);border-bottom:1px solid rgba(221,229,241,.82);box-shadow:0 8px 30px rgba(7,28,62,.045);backdrop-filter:blur(16px)}
.tsp-nav .nav-inner{height:78px;width:min(1380px,calc(100% - 64px));margin:auto;padding:0}
.nav-brand-wrap{display:flex;align-items:center;gap:14px;min-width:0}
.tsp-nav .nav-logo-img{width:238px;height:60px;object-fit:contain;object-position:left center}
.nav-year-pill{display:inline-flex;align-items:center;gap:7px;padding:6px 9px;border:1px solid #dce5f5;border-radius:999px;color:#58708f;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;white-space:nowrap}
.nav-year-pill i{width:6px;height:6px;border-radius:50%;background:var(--sp-mint);box-shadow:0 0 0 4px rgba(39,195,184,.12)}
.tsp-nav .nav-collapse{gap:24px}
.tsp-nav .nav-links{gap:25px}
.tsp-nav .nav-links a{color:#263a59;font-size:12px;font-weight:700}
.tsp-nav .nav-links a::after{bottom:-11px;height:3px;border-radius:3px;background:var(--sp-blue)}
.tsp-nav .nav-links a:hover,.tsp-nav .nav-links a.active{color:var(--sp-blue)}
.tsp-nav .nav-dropdown-menu{top:calc(100% + 23px);border-color:var(--sp-line);border-radius:14px;box-shadow:var(--sp-shadow)}
.tsp-nav .nav-dropdown-menu a:hover{background:var(--sp-sky);color:var(--sp-blue)}
.tsp-nav .nav-cta{display:inline-flex;align-items:center;gap:16px;padding:8px 8px 8px 17px;border-radius:999px;background:var(--sp-ink);font-size:11px!important;box-shadow:0 10px 25px rgba(7,28,62,.16)}
.tsp-nav .nav-cta b{display:grid;place-items:center;width:29px;height:29px;border-radius:50%;background:var(--sp-action-gradient);font-size:15px;box-shadow:0 0 0 5px rgba(255,95,82,.1)}
.tsp-nav .nav-cta:hover{background:var(--sp-blue)!important;box-shadow:0 13px 28px rgba(18,87,229,.22)}

/* Hero */
.sp-hero{position:relative;padding:72px 0 82px;background:linear-gradient(135deg,#fbfdff 0%,#f5f8ff 52%,#eff9fa 100%);isolation:isolate}
.sp-hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(18,87,229,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(18,87,229,.035) 1px,transparent 1px);background-size:56px 56px;mask-image:linear-gradient(90deg,#000,transparent 48%);z-index:-2}
.sp-hero-glow{position:absolute;border-radius:50%;filter:blur(2px);z-index:-1;pointer-events:none}
.sp-hero-glow--one{width:420px;height:420px;right:-150px;top:-180px;background:rgba(18,87,229,.1)}
.sp-hero-glow--two{width:280px;height:280px;left:-180px;bottom:-140px;background:rgba(39,195,184,.12)}
.sp-hero-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(540px,1.05fr);gap:clamp(50px,6vw,94px);align-items:center}
.sp-hero-copy{position:relative;z-index:3}
.sp-live-pill{display:inline-flex;align-items:center;gap:10px;padding:8px 12px;border:1px solid #d7e3f5;border-radius:999px;background:rgba(255,255,255,.8);color:#3f5878;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.11em;box-shadow:0 8px 30px rgba(7,28,62,.04)}
.sp-live-pill span{width:8px;height:8px;border-radius:50%;background:var(--sp-mint);box-shadow:0 0 0 5px rgba(39,195,184,.14)}
.sp-hero h1{max-width:720px;margin:24px 0 24px;font-family:'Manrope',sans-serif;font-size:clamp(52px,5.3vw,82px);font-weight:800;line-height:.98;letter-spacing:-.067em;color:var(--sp-ink)}
.sp-hero h1 em{display:block;color:var(--sp-blue);font-style:normal}
.sp-hero-copy>p{max-width:640px;color:#5a6d88;font-size:17px;line-height:1.7;letter-spacing:-.018em}
.sp-hero-search{max-width:670px;min-height:68px;margin-top:32px;padding:7px 7px 7px 20px;display:flex;align-items:center;gap:13px;background:#fff;border:1px solid #dbe4f1;border-radius:18px;box-shadow:0 18px 50px rgba(7,28,62,.1)}
.sp-hero-search>svg{width:22px;height:22px;flex:0 0 22px;fill:none;stroke:#7b8ca4;stroke-width:1.8;stroke-linecap:round}
.sp-hero-search input{min-width:0;flex:1;border:0;outline:0;background:transparent;color:var(--sp-ink);font-size:15px}
.sp-hero-search input::placeholder{color:#8a98ac}
.sp-hero-search button{min-height:52px;padding:0 20px;display:inline-flex;align-items:center;gap:17px;border:0;border-radius:13px;background:var(--sp-blue);color:#fff;font-size:13px;font-weight:800;cursor:pointer;box-shadow:0 10px 22px rgba(18,87,229,.23);transition:.25s ease}
.sp-hero-search button:hover{background:var(--sp-blue-dark);transform:translateY(-1px)}
.sp-hero-search button span{font-size:18px}
.sp-popular-searches{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:15px;color:#7b8ba2;font-size:11px}
.sp-popular-searches>span{font-weight:700;margin-right:3px}
.sp-popular-searches a{padding:6px 9px;border:1px solid #dce4ef;border-radius:999px;color:#415674;text-decoration:none;background:rgba(255,255,255,.6);transition:.2s ease}
.sp-popular-searches a:hover{border-color:var(--sp-blue);color:var(--sp-blue);background:#fff}
.sp-hero-proof{display:flex;align-items:center;margin-top:33px}
.sp-hero-proof>div{min-width:126px;padding-right:24px;margin-right:24px;border-right:1px solid #dce4ef}
.sp-hero-proof>div:last-child{border:0;margin:0;padding:0}
.sp-hero-proof strong{display:block;color:var(--sp-ink);font-family:'Manrope',sans-serif;font-size:22px;letter-spacing:-.04em}
.sp-hero-proof span{display:block;margin-top:2px;color:#7b8ca3;font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.08em}
.sp-hero-visual{position:relative;min-height:600px}
.sp-photo-frame{position:absolute;inset:0 0 42px 44px;border-radius:34px;overflow:hidden;background:#d8e6f4;box-shadow:0 35px 80px rgba(7,28,62,.18)}
.sp-photo-frame::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 52%,rgba(7,28,62,.42))}
.sp-photo-frame>img{width:100%;height:100%;object-fit:cover;object-position:52% center;display:block}
.sp-photo-badge{position:absolute;z-index:2;right:22px;bottom:22px;display:flex;align-items:center;gap:11px;padding:12px 15px 12px 11px;border:1px solid rgba(255,255,255,.35);border-radius:15px;color:#fff;background:rgba(7,28,62,.72);backdrop-filter:blur(12px)}
.sp-photo-badge>span{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:var(--sp-mint);font-size:16px;font-weight:800}
.sp-photo-badge small,.sp-photo-badge strong{display:block}.sp-photo-badge small{font-size:9px;color:rgba(255,255,255,.62);text-transform:uppercase;letter-spacing:.08em}.sp-photo-badge strong{font-size:11px;margin-top:3px}
.sp-route-card{position:absolute;z-index:3;left:0;bottom:0;width:315px;padding:20px;border:1px solid rgba(255,255,255,.8);border-radius:22px;background:rgba(255,255,255,.94);box-shadow:0 22px 60px rgba(7,28,62,.2);backdrop-filter:blur(18px)}
.sp-route-head{display:flex;justify-content:space-between;align-items:center;font-size:10px;color:#647590;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.sp-route-head b{color:var(--sp-coral)}
.sp-route-progress{height:4px;margin:14px 0 13px;border-radius:99px;background:#e8edf4;overflow:hidden}.sp-route-progress i{display:block;width:57%;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--sp-mint),var(--sp-blue),var(--sp-coral))}
.sp-route-steps{display:grid;gap:3px}.sp-route-steps>div{display:grid;grid-template-columns:29px 1fr auto;align-items:center;gap:10px;padding:8px;border-radius:12px}.sp-route-steps>div.is-active{background:var(--sp-sky)}
.sp-route-steps>div>span{display:grid;place-items:center;width:28px;height:28px;border:1px solid #dce4ef;border-radius:9px;color:#8190a5;font-size:10px;font-weight:800}.sp-route-steps .is-done>span{background:var(--sp-mint);border-color:var(--sp-mint);color:#fff}.sp-route-steps .is-active>span{background:var(--sp-blue);border-color:var(--sp-blue);color:#fff}
.sp-route-steps p small,.sp-route-steps p strong{display:block}.sp-route-steps p small{font-size:8px;text-transform:uppercase;color:#8a98ac;letter-spacing:.07em}.sp-route-steps p strong{font-size:11px;margin-top:2px}.sp-route-steps>div>b{font-size:8px;color:#93a0b3;text-transform:uppercase}.sp-route-steps .is-done>b{color:var(--sp-mint)}.sp-route-steps .is-active>b{color:var(--sp-blue)}
.sp-route-action{width:100%;min-height:43px;margin-top:13px;padding:0 13px;display:flex;align-items:center;justify-content:space-between;border:0;border-radius:11px;background:var(--sp-ink);color:#fff;font-size:11px;font-weight:800;cursor:pointer}.sp-route-action:hover{background:var(--sp-blue)}

/* Portal rail */
.sp-explore-bar{position:relative;z-index:4;background:#fff;border-top:1px solid var(--sp-line);border-bottom:1px solid var(--sp-line);box-shadow:0 12px 32px rgba(7,28,62,.04)}
.sp-explore-bar .sp-container{min-height:88px;display:grid;grid-template-columns:1.18fr repeat(5,1fr);align-items:stretch}
.sp-explore-label{display:flex;align-items:center;color:#8391a5;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.sp-explore-bar a{padding:0 18px;display:flex;align-items:center;gap:10px;border-left:1px solid var(--sp-line);color:#2e4260;font-size:12px;font-weight:800;text-decoration:none;transition:.2s ease}.sp-explore-bar a b{color:#a1adbd;font-size:9px}.sp-explore-bar a span{margin-left:auto;color:var(--sp-blue);font-size:16px;transition:transform .2s}.sp-explore-bar a:hover{background:var(--sp-sky);color:var(--sp-blue)}.sp-explore-bar a:hover span{transform:translateX(4px)}

/* Shared sections */
.sp-section{padding:clamp(88px,8vw,132px) 0}
.sp-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:48px}
.sp-section-head>div{max-width:820px}.sp-section-head>p{max-width:440px;color:var(--sp-muted);font-size:14px;line-height:1.7}
.sp-eyebrow{display:inline-flex;align-items:center;gap:10px;color:var(--sp-blue);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.13em}.sp-eyebrow::before{content:"";width:23px;height:2px;border-radius:2px;background:var(--sp-action-gradient);box-shadow:0 0 12px var(--sp-action-glow)}
.sp-section h2,.sp-guidance h2,.sp-process h2,.sp-final h2{margin-top:13px;font-family:'Manrope',sans-serif;font-size:clamp(38px,4.1vw,62px);font-weight:800;line-height:1.06;letter-spacing:-.055em;color:var(--sp-ink)}
.sp-text-link,.sp-link-btn{display:inline-flex;align-items:center;gap:15px;color:var(--sp-ink);font-size:12px;font-weight:800;text-decoration:none;white-space:nowrap}.sp-text-link span,.sp-link-btn span{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:var(--sp-sky);color:var(--sp-blue);font-size:16px}.sp-text-link:hover{color:var(--sp-blue)}
.sp-primary-btn,.sp-white-btn{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-height:52px;padding:0 20px;border:0;border-radius:14px;background:var(--sp-blue);color:#fff;text-decoration:none;font-size:12px;font-weight:800;cursor:pointer;box-shadow:0 14px 28px rgba(18,87,229,.2);transition:.25s ease}.sp-primary-btn{background:var(--sp-action-gradient);box-shadow:var(--sp-action-shadow)}.sp-primary-btn:hover{background:var(--sp-action-gradient-hover);transform:translateY(-2px)}.sp-primary-btn span,.sp-white-btn span{font-size:18px}

/* Goal cards */
.sp-goals{background:#fff}
.sp-goal-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.sp-goal-card{position:relative;min-height:380px;padding:26px;display:flex;flex-direction:column;border:1px solid var(--sp-line);border-radius:24px;color:var(--sp-ink);text-decoration:none;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease}.sp-goal-card::before{content:"";position:absolute;right:-42px;top:-42px;width:150px;height:150px;border-radius:50%;background:currentColor;opacity:.045}.sp-goal-card:hover{transform:translateY(-7px);box-shadow:0 24px 55px rgba(7,28,62,.1);border-color:transparent}
.sp-goal-card--blue{background:#f2f6ff;color:#174db7}.sp-goal-card--mint{background:#effaf8;color:#087c73}.sp-goal-card--peach{background:#fff5ef;color:#b74922}.sp-goal-card--violet{background:#f6f3ff;color:#5a3eb1}
.sp-goal-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:17px;background:#fff;box-shadow:0 10px 25px rgba(7,28,62,.08)}.sp-goal-icon svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.sp-goal-card>span{margin-top:60px;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;opacity:.72}.sp-goal-card h3{margin-top:9px;color:var(--sp-ink);font-size:23px;line-height:1.15;letter-spacing:-.035em}.sp-goal-card p{margin-top:12px;color:#62718a;font-size:12px;line-height:1.65}.sp-goal-card>b{margin-top:auto;padding-top:25px;font-size:11px}

/* Applications */
.sp-applications{position:relative;background:var(--sp-ink);color:#fff}.sp-applications::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 90% 10%,rgba(18,87,229,.32),transparent 27%),linear-gradient(130deg,transparent 0 60%,rgba(39,195,184,.06) 60% 61%,transparent 61%)}
.sp-applications .sp-container{position:relative}.sp-section-head--light h2{color:#fff}.sp-section-head--light .sp-eyebrow{color:#79ded7}.sp-section-head--light>p{color:rgba(255,255,255,.57)}.sp-link-btn{color:#fff}.sp-link-btn span{background:rgba(255,255,255,.1);color:#fff}
.sp-application-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.sp-application-card{min-height:365px;padding:22px;display:flex;flex-direction:column;border:1px solid rgba(255,255,255,.13);border-radius:22px;background:rgba(255,255,255,.065);color:#fff;text-decoration:none;backdrop-filter:blur(10px);transition:.3s ease}.sp-application-card:hover{transform:translateY(-7px);border-color:rgba(98,226,216,.55);background:rgba(255,255,255,.1)}
.sp-app-card-top{display:flex;align-items:center;justify-content:space-between}.sp-app-card-top span{display:flex;align-items:center;gap:8px;color:#9aacca;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}.sp-app-card-top i{width:7px;height:7px;border-radius:50%;background:var(--sp-mint);box-shadow:0 0 0 4px rgba(39,195,184,.12)}.sp-app-card-top>b{display:grid;place-items:center;width:31px;height:31px;border-radius:10px;background:rgba(255,255,255,.09);font-size:13px}
.sp-app-logo{height:115px;margin-top:26px;display:flex;align-items:center}.sp-app-logo img{max-width:175px;max-height:86px;padding:8px;border-radius:10px;background:#fff;object-fit:contain}.sp-app-logo strong{display:grid;place-items:center;width:74px;height:74px;border-radius:20px;background:#fff;color:var(--sp-blue);font-size:22px}
.sp-application-card h3{font-size:23px;line-height:1.2;letter-spacing:-.035em}.sp-application-card>p{margin-top:7px;color:#8fa2c2;font-size:11px}.sp-app-footer{margin-top:auto;padding-top:18px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid rgba(255,255,255,.12)}.sp-app-footer span{color:#9bacc8;font-size:10px;line-height:1.4}.sp-app-footer b{color:#65ddd3;font-size:10px;white-space:nowrap}

/* Tools */
.sp-tools{background:#f5f8fd}
.sp-tools-layout{display:grid;grid-template-columns:.78fr 1.22fr;gap:clamp(55px,8vw,130px);align-items:center}
.sp-tools-copy{position:sticky;top:140px}.sp-tools-copy h2{max-width:570px}.sp-tools-copy>p{max-width:540px;margin:22px 0 30px;color:var(--sp-muted);font-size:15px;line-height:1.75}
.sp-tool-stack{display:grid;gap:13px}
.sp-tool-card{width:100%;min-height:175px;padding:25px;display:grid;grid-template-columns:45px 1fr auto;align-items:center;gap:21px;border:1px solid var(--sp-line);border-radius:22px;background:#fff;color:var(--sp-ink);text-align:left;text-decoration:none;cursor:pointer;transition:.28s ease}.sp-tool-card:hover{transform:translateX(-7px);box-shadow:0 22px 50px rgba(7,28,62,.09);border-color:#b8c9e3}.sp-tool-card--feature{background:var(--sp-blue);border-color:var(--sp-blue);color:#fff}.sp-tool-number{display:grid;place-items:center;width:44px;height:44px;border:1px solid #dce4ef;border-radius:14px;color:#8291a6;font-size:10px;font-weight:800}.sp-tool-card--feature .sp-tool-number{border-color:rgba(255,255,255,.27);color:#fff}.sp-tool-card small{font-size:8px;font-weight:800;text-transform:uppercase;letter-spacing:.11em;color:#8795a9}.sp-tool-card--feature small{color:#bcd0ff}.sp-tool-card h3{margin-top:6px;font-size:23px;letter-spacing:-.035em}.sp-tool-card p{margin-top:7px;max-width:490px;color:#687891;font-size:11px;line-height:1.55}.sp-tool-card--feature p{color:#c5d4f5}.sp-tool-card>b{font-size:10px;color:var(--sp-blue);white-space:nowrap}.sp-tool-card--feature>b{color:#fff}

/* Streams */
.sp-streams{background:#fff}.sp-stream-grid{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid var(--sp-line)}
.sp-stream-card{min-height:112px;padding:20px 25px;display:grid;grid-template-columns:45px 1fr auto;align-items:center;gap:20px;border-bottom:1px solid var(--sp-line);color:var(--sp-ink);text-decoration:none;transition:.22s ease}.sp-stream-card:nth-child(odd){border-right:1px solid var(--sp-line)}.sp-stream-card:hover{background:var(--sp-sky);padding-left:32px}.sp-stream-card>span{color:#9ba9bb;font-size:10px;font-weight:800}.sp-stream-card h3{font-size:19px;letter-spacing:-.025em}.sp-stream-card p{margin-top:5px;color:#8794a7;font-size:10px}.sp-stream-card>b{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#f2f5f9;color:var(--sp-blue);font-size:14px}.sp-stream-card:hover>b{background:var(--sp-blue);color:#fff}

/* Guidance */
.sp-guidance{padding:clamp(90px,9vw,145px) 0;background:#edf4ff}
.sp-guidance-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(70px,9vw,145px);align-items:center}
.sp-guidance-art{position:relative;min-height:600px;display:grid;place-items:center}
.sp-guidance-orbit{position:relative;display:grid;place-items:center;width:360px;height:360px;border:1px solid #b8ccec;border-radius:50%;background:rgba(255,255,255,.34)}.sp-guidance-orbit::before,.sp-guidance-orbit::after{content:"";position:absolute;border:1px dashed rgba(18,87,229,.2);border-radius:50%}.sp-guidance-orbit::before{inset:44px}.sp-guidance-orbit::after{inset:94px;background:#fff;box-shadow:0 24px 60px rgba(7,28,62,.1)}.sp-guidance-orbit>span{position:relative;z-index:2;color:var(--sp-blue);font-family:'Manrope',sans-serif;font-size:53px;font-weight:800;letter-spacing:-.07em}.sp-guidance-orbit>i{position:absolute;z-index:3;width:15px;height:15px;border-radius:50%;background:var(--sp-coral);box-shadow:0 0 0 7px rgba(255,122,69,.15)}.sp-guidance-orbit>i:nth-of-type(1){left:18px;top:175px}.sp-guidance-orbit>i:nth-of-type(2){right:48px;top:68px;background:var(--sp-mint);box-shadow:0 0 0 7px rgba(39,195,184,.15)}.sp-guidance-orbit>i:nth-of-type(3){right:65px;bottom:52px;background:var(--sp-blue);box-shadow:0 0 0 7px rgba(18,87,229,.14)}
.sp-fit-card{position:absolute;min-width:210px;padding:15px 17px;border:1px solid rgba(255,255,255,.9);border-radius:16px;background:rgba(255,255,255,.91);box-shadow:0 20px 45px rgba(7,28,62,.12);backdrop-filter:blur(12px)}.sp-fit-card small,.sp-fit-card strong{display:block}.sp-fit-card small{color:#8593a7;font-size:8px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}.sp-fit-card strong{margin-top:6px;font-size:12px}.sp-fit-card--one{left:0;top:70px}.sp-fit-card--two{right:0;top:245px}.sp-fit-card--three{left:50px;bottom:45px}
.sp-guidance-copy h2 em{color:var(--sp-blue);font-style:normal}.sp-guidance-copy>p{max-width:620px;margin-top:22px;color:var(--sp-muted);font-size:15px;line-height:1.75}.sp-guidance-copy ul{margin:28px 0 30px;list-style:none;border-top:1px solid #cad8eb}.sp-guidance-copy li{display:grid;grid-template-columns:40px 1fr;gap:16px;padding:18px 0;border-bottom:1px solid #cad8eb}.sp-guidance-copy li>span{color:var(--sp-coral);font-size:11px;font-weight:800}.sp-guidance-copy li strong{font-size:14px}.sp-guidance-copy li p{margin-top:4px;color:#687992;font-size:11px;line-height:1.55}

/* Process */
.sp-process{padding:clamp(90px,9vw,145px) 0;background:#071c3e;color:#fff}.sp-process .sp-section-head{margin-bottom:55px}.sp-process-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,.18)}.sp-process-grid article{position:relative;min-height:310px;padding:30px 28px;border-right:1px solid rgba(255,255,255,.15)}.sp-process-grid article:last-child{border:0}.sp-process-grid article>span{position:absolute;right:20px;top:25px;color:rgba(255,255,255,.14);font-family:'Manrope',sans-serif;font-size:39px;font-weight:800}.sp-process-grid article>i{display:block;width:12px;height:12px;margin-top:-37px;border:3px solid var(--sp-coral);border-radius:50%;background:var(--sp-ink);box-shadow:0 0 0 6px var(--sp-ink)}.sp-process-grid article:nth-child(2)>i{border-color:var(--sp-mint)}.sp-process-grid article:nth-child(3)>i{border-color:#78a0ff}.sp-process-grid article:nth-child(4)>i{border-color:#d3b5ff}.sp-process-grid small{display:block;margin-top:75px;color:#7d93b5;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}.sp-process-grid h3{margin-top:9px;font-size:23px;letter-spacing:-.035em}.sp-process-grid p{margin-top:13px;color:#91a3bf;font-size:11px;line-height:1.65}

/* Stories */
.sp-stories{background:#fff}.sp-story-slider{display:grid;grid-template-columns:48px minmax(0,1fr) 48px;align-items:center;gap:14px}.sp-story-slider .tslider-viewport{overflow:hidden;border-radius:28px}.sp-story-card{min-width:100%;min-height:430px;display:grid;grid-template-columns:.28fr .72fr;border-radius:28px;overflow:hidden;background:#f2f6ff}.sp-quote-mark{display:grid;place-items:center;background:var(--sp-blue);color:#fff;font-family:Georgia,serif;font-size:170px;line-height:1;padding-top:60px}.sp-story-content{padding:clamp(38px,5vw,75px);display:flex;flex-direction:column;justify-content:center}.sp-story-stars{color:var(--sp-coral);font-size:12px;letter-spacing:.16em}.sp-story-content blockquote{max-width:800px;margin-top:23px;color:var(--sp-ink);font-family:'Manrope',sans-serif;font-size:clamp(23px,2.4vw,36px);font-weight:700;line-height:1.35;letter-spacing:-.038em}.sp-story-person{display:flex;align-items:center;gap:13px;margin-top:28px}.sp-story-person img{width:48px;height:48px;border-radius:15px;object-fit:cover}.sp-story-person strong,.sp-story-person span{display:block}.sp-story-person strong{font-size:12px}.sp-story-person span{margin-top:3px;color:#7c8ca3;font-size:10px}.sp-story-slider .tslider-arrow{position:static;transform:none;width:44px;height:44px;border:1px solid var(--sp-line);border-radius:14px;background:#fff;color:var(--sp-ink);box-shadow:none}.sp-story-slider .tslider-arrow:hover{transform:none;background:var(--sp-ink);color:#fff}.sp-story-slider .tslider-dots{grid-column:1/-1}.sp-story-slider .tslider-dot{width:20px;height:3px;border-radius:99px;background:#dce4ef}.sp-story-slider .tslider-dot.is-active{width:46px;background:var(--sp-blue)}

/* Final CTA */
.sp-final{padding:clamp(90px,9vw,145px) 0;position:relative;overflow:hidden;background:linear-gradient(125deg,var(--sp-blue) 0%,#1644bd 58%,#0b2b71 100%);color:#fff}.sp-final::before{content:"";position:absolute;width:520px;height:520px;right:-130px;top:-210px;border:1px solid rgba(255,255,255,.18);border-radius:50%;box-shadow:0 0 0 80px rgba(255,255,255,.035),0 0 0 160px rgba(255,255,255,.025)}.sp-final-inner{position:relative;display:grid;grid-template-columns:1.35fr .65fr;gap:80px;align-items:end}.sp-final .sp-eyebrow{color:#9be9e3}.sp-final .sp-eyebrow::before{background:#ffac8a}.sp-final h2{max-width:900px;color:#fff}.sp-final h2 em{display:block;color:#b9fff9;font-style:normal}.sp-final-action{padding-bottom:7px}.sp-final-action p{max-width:350px;margin-bottom:22px;color:#c7d8ff;font-size:13px;line-height:1.65}.sp-white-btn{background:#fff;color:var(--sp-blue);box-shadow:0 15px 35px rgba(4,22,60,.23)}.sp-white-btn:hover{transform:translateY(-2px);background:#eff5ff}

/* Fresh footer and floating utilities */
.pre-footer-links{padding:65px 32px!important;background:#f4f7fb!important;border-top:1px solid var(--sp-line)!important}.pre-footer-block h2{font-family:'Manrope',sans-serif!important;color:var(--sp-ink)!important;font-size:19px!important;font-weight:800!important}.pre-footer-pills a{padding:8px 12px!important;background:#fff!important;border:1px solid var(--sp-line)!important;border-radius:10px!important;color:#5b6c85!important;font-size:10px!important}.pre-footer-pills a:hover{background:var(--sp-blue)!important;border-color:var(--sp-blue)!important;color:#fff!important}
footer{background:#051630!important;border:0;color:#8fa0ba!important}.footer-top{width:min(1380px,calc(100% - 64px))!important;padding:80px 0!important;grid-template-columns:1.4fr .7fr .7fr 1fr!important}.footer-logo-img{width:245px!important;height:70px!important;padding:5px 10px!important;border-radius:13px!important;background:#fff!important;filter:none!important}.footer-desc{max-width:470px!important;color:#8fa0ba!important;font-size:11px!important;line-height:1.8!important}.footer-col-title{font-family:'Manrope',sans-serif!important;color:#fff!important;font-size:14px!important;font-weight:800!important}.footer-links a{color:#8fa0ba!important;font-size:11px!important}.footer-links a:hover{color:#fff!important}.footer-social .soc-btn{border-color:rgba(255,255,255,.12)!important;background:rgba(255,255,255,.05)!important}.footer-social .soc-btn:hover{background:var(--sp-blue)!important;border-color:var(--sp-blue)!important}.footer-newsletter input{border-color:rgba(255,255,255,.12)!important;border-radius:12px!important;background:rgba(255,255,255,.06)!important}.footer-newsletter button{margin-top:8px;border-radius:12px!important;background:var(--sp-blue)!important;color:#fff!important}.footer-bottom{padding:22px max(32px,calc((100vw - 1380px)/2))!important;border-color:rgba(255,255,255,.1)!important;color:#6e809b!important;font-size:9px!important}
.whats-new-rail{top:auto!important;right:18px!important;bottom:92px!important;width:46px!important;min-height:46px!important;border-radius:15px!important;background:var(--sp-blue)!important;box-shadow:0 12px 30px rgba(18,87,229,.22)!important;transform:none!important}.whats-new-rail:hover{transform:translateY(-2px)!important}.whats-new-label{display:none!important}.whats-new-rail::after{content:"↗";color:#fff;font-size:17px;font-weight:800}.whats-new-count{top:-7px!important;left:-7px!important;background:var(--sp-coral)!important;font-size:9px!important}
.whats-new-rail::after{content:none!important}
.whats-new-icon{display:grid;place-items:center;width:25px;height:25px;color:#fff}
.whats-new-icon svg{display:block;width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.whatsapp-connect{width:58px!important;height:58px!important;min-height:58px!important;padding:7px!important;justify-content:center!important;border-radius:18px!important;background:#fff!important;color:#087c73!important;border:1px solid #d8edea!important;box-shadow:0 14px 38px rgba(7,28,62,.14)!important;font-family:'DM Sans',sans-serif!important}.whatsapp-connect-label{display:none!important}.whatsapp-connect-orb{width:42px!important;height:42px!important;flex-basis:42px!important}.whatsapp-connect-pulse{border-radius:21px!important}
.ai-finder{right:18px!important;bottom:22px!important;font-family:'DM Sans',sans-serif!important}.ai-finder-launch{width:58px!important;height:58px!important;min-height:58px!important;padding:7px!important;justify-content:center!important;border-radius:18px!important;background:var(--sp-ink)!important;box-shadow:0 14px 38px rgba(7,28,62,.2)!important}.ai-finder-label{display:none!important}.ai-finder-orb{width:42px!important;height:42px!important}.ai-finder-pulse{border-radius:21px!important;border-color:rgba(18,87,229,.25)!important}.ai-finder-panel{border-radius:22px!important;border-color:var(--sp-line)!important}.ai-finder-head{background:linear-gradient(135deg,var(--sp-blue),var(--sp-blue-dark))!important}

/* Responsive */
@media(max-width:1240px){
  .tsp-nav .nav-inner{width:calc(100% - 40px)}.nav-year-pill{display:none}.tsp-nav .nav-links{gap:16px}.tsp-nav .nav-collapse{gap:16px}.tsp-nav .nav-links a{font-size:10px}.tsp-nav .nav-logo-img{width:205px}
  .sp-hero-grid{grid-template-columns:minmax(0,1fr) minmax(470px,.9fr);gap:45px}.sp-hero h1{font-size:clamp(49px,5vw,67px)}.sp-photo-frame{left:25px}.sp-goal-card{padding:22px}.sp-goal-card h3{font-size:20px}
}
@media(max-width:1000px){
  .sp-container{width:min(100% - 40px,760px)}
  .tsp-topbar{display:none}.tsp-nav .nav-inner{height:68px;width:calc(100% - 40px)}.tsp-nav .nav-logo-img{width:210px;height:54px}.tsp-nav .nav-toggle{display:flex;border:1px solid var(--sp-line);border-radius:12px;background:#fff}.tsp-nav .nav-collapse{top:68px;padding:14px 20px 24px;background:rgba(255,255,255,.98);border-color:var(--sp-line);overflow-x:hidden}.tsp-nav .nav-links{gap:0}.tsp-nav .nav-links a{padding:13px 3px;font-size:13px}.tsp-nav .nav-dropdown-menu{padding:3px 10px;background:var(--sp-sky);border-radius:13px}.tsp-nav .nav-cta{width:100%;max-width:100%;margin:13px 0 0;justify-content:space-between}
  .sp-hero{padding:58px 0 72px}.sp-hero-grid{grid-template-columns:1fr;gap:50px}.sp-hero-copy{text-align:center}.sp-hero h1,.sp-hero-copy>p,.sp-hero-search{margin-left:auto;margin-right:auto}.sp-popular-searches,.sp-hero-proof{justify-content:center}.sp-hero-visual{min-height:620px;max-width:720px;width:100%;margin:auto}.sp-photo-frame{left:44px}.sp-route-card{left:0}
  .sp-explore-bar .sp-container{width:100%;max-width:none;grid-template-columns:repeat(5,1fr);overflow:auto;scrollbar-width:none}.sp-explore-bar .sp-container::-webkit-scrollbar{display:none}.sp-explore-label{display:none}.sp-explore-bar a{min-width:150px;min-height:76px}
  .sp-section-head{align-items:flex-start;flex-direction:column;gap:18px}.sp-goal-grid{grid-template-columns:repeat(2,1fr)}.sp-goal-card{min-height:330px}.sp-goal-card>span{margin-top:42px}
  .sp-application-grid{grid-template-columns:1fr}.sp-application-card{min-height:310px}.sp-app-logo{height:85px}
  .sp-tools-layout{grid-template-columns:1fr;gap:45px}.sp-tools-copy{position:static}.sp-tool-card:hover{transform:translateY(-3px)}
  .sp-guidance-grid{grid-template-columns:1fr}.sp-guidance-art{min-height:550px}.sp-guidance-copy{max-width:650px;margin:auto}
  .sp-process-grid{grid-template-columns:repeat(2,1fr)}.sp-process-grid article:nth-child(2){border-right:0}.sp-process-grid article{border-bottom:1px solid rgba(255,255,255,.15)}
  .sp-final-inner{grid-template-columns:1fr;gap:35px}.sp-final-action{max-width:480px}.footer-top{width:calc(100% - 40px)!important;grid-template-columns:1fr 1fr!important}.footer-top>div:first-child,.footer-top>div:last-child{grid-column:1/-1}
}
@media(max-width:640px){
  .sp-container{width:calc(100% - 32px)}
  .tsp-nav .nav-inner{width:calc(100% - 28px)}.tsp-nav .nav-logo-img{width:184px;height:50px}.tsp-nav .nav-toggle{width:40px;height:40px}
  .sp-hero{padding:42px 0 55px}.sp-hero::before{background-size:38px 38px}.sp-live-pill{font-size:8px}.sp-hero h1{margin:19px 0;font-size:clamp(43px,13vw,58px)}.sp-hero-copy>p{font-size:14px;line-height:1.65}.sp-hero-search{min-height:60px;margin-top:25px;padding:6px 6px 6px 15px;border-radius:15px}.sp-hero-search input{font-size:13px}.sp-hero-search button{min-height:47px;padding:0 15px;font-size:11px}.sp-hero-search button span{display:none}.sp-popular-searches{gap:6px}.sp-popular-searches>span{width:100%}.sp-hero-proof{margin-top:28px}.sp-hero-proof>div{min-width:0;flex:1;padding-right:11px;margin-right:11px}.sp-hero-proof strong{font-size:19px}.sp-hero-proof span{font-size:7px}
  .sp-hero-visual{min-height:490px}.sp-photo-frame{inset:0 0 60px 0;border-radius:24px}.sp-photo-frame>img{object-position:center}.sp-photo-badge{right:12px;bottom:12px;padding:8px}.sp-photo-badge>span{width:29px;height:29px}.sp-photo-badge small{display:none}.sp-route-card{left:12px;right:12px;bottom:0;width:auto;padding:15px;border-radius:18px}.sp-route-steps{grid-template-columns:repeat(3,1fr);gap:3px}.sp-route-steps>div{display:flex;flex-direction:column;align-items:flex-start;padding:5px}.sp-route-steps p strong{font-size:9px}.sp-route-steps p small,.sp-route-steps>div>b{display:none}.sp-route-action{min-height:40px;margin-top:8px}.sp-route-head{font-size:8px}.sp-route-progress{margin:10px 0 7px}
  .sp-explore-bar a{min-width:132px;padding:0 14px;font-size:10px}.sp-section{padding:76px 0}.sp-section-head{margin-bottom:33px}.sp-section h2,.sp-guidance h2,.sp-process h2,.sp-final h2{font-size:37px}.sp-section-head>p{font-size:12px}.sp-goal-grid{grid-template-columns:1fr}.sp-goal-card{min-height:290px}.sp-goal-card>span{margin-top:34px}
  .sp-application-card{min-height:320px}.sp-app-footer{align-items:flex-start;flex-direction:column}.sp-app-footer b{align-self:flex-end}
  .sp-tool-card{min-height:205px;padding:20px;grid-template-columns:38px 1fr}.sp-tool-card>b{grid-column:2}.sp-tool-number{width:38px;height:38px}.sp-tool-card h3{font-size:20px}
  .sp-stream-grid{grid-template-columns:1fr}.sp-stream-card:nth-child(odd){border-right:0}.sp-stream-card{padding:17px 12px;grid-template-columns:33px 1fr auto}.sp-stream-card:hover{padding-left:17px}.sp-stream-card h3{font-size:16px}
  .sp-guidance{padding:76px 0}.sp-guidance-art{min-height:430px}.sp-guidance-orbit{width:270px;height:270px}.sp-guidance-orbit::before{inset:35px}.sp-guidance-orbit::after{inset:75px}.sp-guidance-orbit>span{font-size:42px}.sp-fit-card{min-width:165px;padding:12px}.sp-fit-card--one{top:35px}.sp-fit-card--two{top:210px}.sp-fit-card--three{left:10px;bottom:25px}.sp-fit-card strong{font-size:10px}.sp-guidance-copy>p{font-size:13px}
  .sp-process{padding:76px 0}.sp-process-grid{grid-template-columns:1fr}.sp-process-grid article{min-height:250px;border-right:0}.sp-process-grid article>i{margin-top:-37px}.sp-process-grid small{margin-top:55px}
  .sp-story-slider{grid-template-columns:35px minmax(0,1fr) 35px;gap:5px}.sp-story-slider .tslider-arrow{width:34px;height:34px;border-radius:10px}.sp-story-card{grid-template-columns:1fr;min-height:430px}.sp-quote-mark{display:none}.sp-story-content{padding:29px 21px}.sp-story-content blockquote{font-size:21px}
  .sp-final{padding:80px 0}.sp-final::before{width:360px;height:360px}.sp-final h2 em{display:inline}.footer-top{width:calc(100% - 32px)!important;grid-template-columns:1fr!important;padding:60px 0!important}.footer-top>div{grid-column:1!important}.footer-bottom{padding:22px 16px!important}.pre-footer-links{padding:50px 16px!important}.whats-new-rail{display:none!important}
  .whatsapp-connect-label,.ai-finder-label{display:none!important}.whatsapp-connect,.ai-finder-launch{width:54px!important;height:54px!important;padding:0!important;justify-content:center!important;border-radius:18px!important}
}

/* Slider sizing guard: keep every testimonial inside its grid column. */
.sp-testimonial-layout{grid-template-columns:minmax(0,.68fr) minmax(0,1.32fr)}
.sp-testimonial-slider.tslider{width:100%;min-width:0;max-width:none;margin:0;padding:0}
.sp-testimonial-slider .tslider-track{width:100%}
.sp-testimonial-slider .sp-testimonial-card{flex:0 0 100%;width:100%;min-width:100%}

@media(prefers-reduced-motion:reduce){.sp-goal-card,.sp-application-card,.sp-tool-card,.sp-stream-card,.sp-primary-btn{transition:none!important}.fade-in{opacity:1!important;transform:none!important}}

/* ================================================================
   SCHOLAR PORTAL — HEADER, DISCOVERY CONTENT & FOOTER V2
   ================================================================ */

/* Single discovery header */
.sp-site-header{position:relative;z-index:210;background:#fff}
.sp-site-nav{position:sticky;top:0;background:rgba(255,255,255,.97);border:0;box-shadow:none;backdrop-filter:blur(18px)}
.sp-site-nav .sp-header-inner{width:min(1420px,calc(100% - 56px));height:84px;padding:0;gap:34px}
.sp-site-nav .sp-header-brand{flex:0 0 auto}.sp-site-nav .sp-header-brand img{width:230px;height:61px}
.sp-header-collapse{flex:1;justify-content:flex-end;gap:25px}
.sp-site-nav .sp-header-links{gap:7px}
.sp-site-nav .sp-header-links>li>a{display:flex;align-items:center;gap:5px;padding:12px 13px;border-radius:10px;color:#31445f;font-size:12px;font-weight:800;transition:.2s ease}
.sp-site-nav .sp-header-links>li>a::after{display:none}
.sp-site-nav .sp-header-links>li>a i{width:14px;height:14px;display:grid;place-items:center;flex:0 0 14px;color:#90a0b5;font-style:normal;line-height:1;transition:transform .2s ease}
.sp-site-nav .sp-header-links>li>a i svg{display:block;width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.sp-site-nav .sp-header-links>li>a:hover,.sp-site-nav .sp-header-links>li>a.active{background:#eef4ff;color:var(--sp-blue)}
.sp-site-nav .sp-nav-group:hover>a i{transform:rotate(180deg)}
.sp-site-nav .sp-mega-menu{top:calc(100% + 16px);left:-14px;width:350px;min-width:350px;padding:10px;border:1px solid var(--sp-line);border-radius:18px;background:#fff;box-shadow:0 28px 70px rgba(7,28,62,.16)}
.sp-site-nav .sp-mega-menu::before{content:"";position:absolute;left:24px;top:-7px;width:13px;height:13px;transform:rotate(45deg);background:#fff;border-left:1px solid var(--sp-line);border-top:1px solid var(--sp-line)}
.sp-site-nav .sp-mega-menu>a{position:relative;z-index:1;min-height:68px;padding:11px;display:grid;grid-template-columns:34px 1fr;align-items:center;gap:11px;border:0;border-radius:12px;color:var(--sp-ink)}
.sp-site-nav .sp-mega-menu>a>span{display:grid;place-items:center;width:33px;height:33px;border-radius:10px;background:#eef4ff;color:var(--sp-blue);font-size:9px;font-weight:900}
.sp-site-nav .sp-mega-menu>a strong,.sp-site-nav .sp-mega-menu>a small{display:block}.sp-site-nav .sp-mega-menu>a strong{font-size:12px}.sp-site-nav .sp-mega-menu>a small{margin-top:3px;color:#8290a5;font-size:9px;font-weight:500;line-height:1.35}
.sp-site-nav .sp-mega-menu>a:hover{padding-left:11px;background:#f4f7fb;color:var(--sp-blue)}
.sp-site-nav .sp-mega-menu--compact{width:320px;min-width:320px}
.sp-header-actions{display:flex;align-items:center;gap:9px}
.sp-header-search{display:grid;place-items:center;width:43px;height:43px;border:1px solid var(--sp-line);border-radius:13px;color:var(--sp-ink);background:#fff;transition:.2s ease}.sp-header-search svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}.sp-header-search:hover{color:#fff;border-color:var(--sp-blue);background:var(--sp-blue)}
.sp-login-dropdown{position:relative}.sp-login-trigger{height:43px;padding:0 12px;display:flex;align-items:center;gap:8px;border:1px solid var(--sp-line);border-radius:13px;background:#fff;color:#435672;font-size:10px;font-weight:800;cursor:pointer}.sp-login-trigger svg{width:17px;height:17px;fill:none;stroke:var(--sp-blue);stroke-width:1.8;stroke-linecap:round}
.sp-login-menu{position:absolute;top:calc(100% + 13px);right:0;width:245px;padding:8px;border:1px solid var(--sp-line);border-radius:15px;background:#fff;box-shadow:0 24px 55px rgba(7,28,62,.15);opacity:0;visibility:hidden;transform:translateY(7px);transition:.2s ease}
.sp-login-dropdown:hover .sp-login-menu,.sp-login-dropdown:focus-within .sp-login-menu{opacity:1;visibility:visible;transform:none}.sp-login-menu a{padding:11px 10px;display:flex;align-items:center;justify-content:space-between;border-radius:9px;color:#3c506d;font-size:10px;font-weight:700;text-decoration:none}.sp-login-menu a span{color:var(--sp-blue)}.sp-login-menu a:hover{background:#eef4ff;color:var(--sp-blue)}
.sp-site-nav .sp-header-cta{height:44px;padding:6px 6px 6px 15px;background:var(--sp-ink);border-radius:14px;box-shadow:none}.sp-site-nav .sp-header-cta b{width:31px;height:31px;display:grid;place-items:center;flex:0 0 31px;border-radius:9px;line-height:1}.sp-site-nav .sp-header-cta b svg{display:block;width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.sp-site-nav .sp-header-cta:hover{transform:none;background:var(--sp-blue)!important}
.sp-admission-radar{height:39px;background:#071c3e;border-top:1px solid #10294f;color:#fff}.sp-radar-inner{width:min(1420px,calc(100% - 56px));height:100%;margin:auto;display:flex;align-items:center;gap:0}.sp-radar-title{height:100%;padding-right:20px;display:flex;align-items:center;gap:9px;color:#fff;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.sp-radar-title i{width:7px;height:7px;border-radius:50%;background:var(--sp-mint);box-shadow:0 0 0 4px rgba(39,195,184,.13)}
.sp-radar-inner>a,.sp-radar-inner>button{height:100%;padding:0 18px;display:flex;align-items:center;gap:13px;border:0;border-left:1px solid rgba(255,255,255,.1);background:transparent;color:#aebed5;font-size:9px;font-weight:700;text-decoration:none;cursor:pointer}.sp-radar-inner>a b,.sp-radar-inner>button b{width:15px;height:15px;display:grid;place-items:center;flex:0 0 15px;color:#6fe5dc;line-height:1}.sp-radar-inner>a b svg,.sp-radar-inner>button b svg{display:block;width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.sp-radar-inner>a:hover,.sp-radar-inner>button:hover{background:rgba(255,255,255,.06);color:#fff}.sp-radar-contact{margin-left:auto;display:flex;align-items:center;gap:10px;font-size:9px}.sp-radar-contact a{color:#9aabc4;text-decoration:none}.sp-radar-contact a:hover{color:#fff}.sp-radar-contact i{width:3px;height:3px;border-radius:50%;background:var(--sp-coral)}

/* Top college listing */
.sp-top-colleges{background:#f5f8fd}
.sp-college-head-side{max-width:480px;display:grid;justify-items:end;gap:15px}.sp-college-head-side>p{color:var(--sp-muted);font-size:13px;line-height:1.65;text-align:right}
.sp-top-college-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.sp-college-pick{overflow:hidden;border:1px solid #dce4f0;border-radius:22px;background:#fff;box-shadow:0 12px 35px rgba(7,28,62,.055);transition:.28s ease}.sp-college-pick:hover{transform:translateY(-6px);border-color:#b9cbe7;box-shadow:0 25px 60px rgba(7,28,62,.12)}
.sp-college-pick-media{position:relative;height:195px;display:block;overflow:hidden;background:#dbe6f4}.sp-college-pick-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,28,62,.04),rgba(7,28,62,.58))}.sp-college-pick-media>img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.sp-college-pick:hover .sp-college-pick-media>img{transform:scale(1.045)}
.sp-college-pick-media>span{position:absolute;z-index:2;left:14px;top:14px;padding:7px 9px;display:flex;align-items:center;gap:7px;border-radius:999px;background:rgba(255,255,255,.92);color:#324660;font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.sp-college-pick-media>span i{width:6px;height:6px;border-radius:50%;background:var(--sp-mint)}
.sp-college-pick-media>b{position:absolute;z-index:2;left:14px;bottom:13px;padding:6px 8px;border:1px solid rgba(255,255,255,.22);border-radius:8px;background:rgba(7,28,62,.58);color:#fff;font-size:8px;font-weight:800;backdrop-filter:blur(7px)}
.sp-college-pick-body{padding:0 18px 18px}.sp-college-identity{min-height:88px;display:grid;grid-template-columns:55px 1fr;align-items:center;gap:12px}.sp-college-logo{width:55px;height:55px;margin-top:-24px;position:relative;z-index:3;display:grid;place-items:center;padding:5px;border:1px solid var(--sp-line);border-radius:14px;background:#fff;box-shadow:0 10px 22px rgba(7,28,62,.1)}.sp-college-logo img{position:absolute;inset:5px;width:calc(100% - 10px);height:calc(100% - 10px);object-fit:contain;background:#fff}.sp-college-logo strong{color:var(--sp-blue);font-size:16px}
.sp-college-identity h3{font-size:15px;line-height:1.3;letter-spacing:-.02em}.sp-college-identity h3 a{color:var(--sp-ink);text-decoration:none}.sp-college-identity h3 a:hover{color:var(--sp-blue)}.sp-college-identity p{margin-top:5px;color:#7b8ba1;font-size:9px}
.sp-college-facts{display:grid;grid-template-columns:1fr 1fr;gap:1px;border:1px solid #e3e9f2;border-radius:13px;overflow:hidden;background:#e3e9f2}.sp-college-facts>div{min-height:65px;padding:11px;background:#f8fafc}.sp-college-facts small,.sp-college-facts strong{display:block}.sp-college-facts small{color:#8b98a9;font-size:7px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.sp-college-facts strong{margin-top:5px;color:#31445f;font-size:9px;line-height:1.35}.sp-college-fee{grid-column:1/-1;min-height:56px!important}
.sp-college-pick-actions{margin-top:15px;display:grid;grid-template-columns:1fr 1fr;gap:8px}.sp-college-pick-actions a,.sp-college-pick-actions button{min-height:42px;padding:0 12px;display:flex;align-items:center;justify-content:center;gap:14px;border:1px solid var(--sp-line);border-radius:11px;background:#fff;color:var(--sp-ink);font-size:10px;font-weight:800;text-decoration:none;cursor:pointer}.sp-college-pick-actions a:hover{border-color:var(--sp-blue);color:var(--sp-blue)}.sp-college-pick-actions button{border-color:var(--sp-blue);background:var(--sp-blue);color:#fff}.sp-college-pick-actions button:hover{background:var(--sp-blue-dark)}

/* Editorial desk */
.sp-editorial{background:#fff}
.sp-editorial-grid{display:grid;grid-template-columns:minmax(0,1.28fr) minmax(370px,.72fr);gap:20px;align-items:stretch}.sp-blog-desk,.sp-news-desk{padding:20px;border:1px solid var(--sp-line);border-radius:24px;background:#f8fafc}.sp-editorial-label{min-height:38px;margin-bottom:15px;display:flex;align-items:center;justify-content:space-between}.sp-editorial-label>span{display:flex;align-items:center;gap:8px;color:#586b85;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.sp-editorial-label>span i{width:7px;height:7px;border-radius:50%;background:var(--sp-coral);box-shadow:0 0 0 4px rgba(255,122,69,.12)}.sp-editorial-label>a{color:var(--sp-blue);font-size:9px;font-weight:800;text-decoration:none}
.sp-blog-grid{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:1fr 1fr;gap:12px}.sp-blog-card{min-height:190px;display:grid;grid-template-columns:145px 1fr;overflow:hidden;border:1px solid #e1e7f0;border-radius:17px;background:#fff}.sp-blog-card--feature{grid-row:1/3;display:flex;flex-direction:column}.sp-blog-image{position:relative;display:block;min-height:100%;overflow:hidden;background:#dfe7f2}.sp-blog-card--feature .sp-blog-image{height:245px;min-height:245px}.sp-blog-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}.sp-blog-card:hover .sp-blog-image img{transform:scale(1.04)}.sp-blog-image>span{position:absolute;left:10px;top:10px;padding:6px 8px;border-radius:7px;background:rgba(7,28,62,.82);color:#fff;font-size:7px;font-weight:800;text-transform:uppercase;letter-spacing:.07em}
.sp-blog-body{padding:16px;display:flex;flex-direction:column}.sp-blog-meta{display:flex;align-items:center;gap:7px;color:#8a97aa;font-size:7px;font-weight:700;text-transform:uppercase;letter-spacing:.07em}.sp-blog-meta i{width:3px;height:3px;border-radius:50%;background:var(--sp-coral)}.sp-blog-body h3{margin-top:9px;font-size:15px;line-height:1.3;letter-spacing:-.025em}.sp-blog-card--feature h3{font-size:22px}.sp-blog-body h3 a{color:var(--sp-ink);text-decoration:none}.sp-blog-body h3 a:hover{color:var(--sp-blue)}.sp-blog-body p{margin-top:8px;color:#6c7b91;font-size:9px;line-height:1.5}.sp-blog-card--feature p{font-size:11px}.sp-read-link{margin-top:auto;padding-top:12px;display:flex;align-items:center;justify-content:space-between;color:var(--sp-blue);font-size:9px;font-weight:800;text-decoration:none}
.sp-news-desk{background:var(--sp-ink);border-color:var(--sp-ink);color:#fff}.sp-news-desk .sp-editorial-label>span{color:#fff}.sp-news-desk .sp-editorial-label>a{color:#71e3da}.sp-news-list{display:grid}.sp-news-item{position:relative;min-height:112px;padding:14px 34px 14px 0;display:grid;grid-template-columns:43px 1fr;gap:12px;border-top:1px solid rgba(255,255,255,.12);color:#fff;text-decoration:none}.sp-news-date{height:47px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.16);border-radius:11px;background:rgba(255,255,255,.05)}.sp-news-date strong{font-size:12px}.sp-news-date span{margin-top:2px;color:#8093b1;font-size:7px;text-transform:uppercase}.sp-news-item>div:nth-child(2)>span{color:#67dcd3;font-size:7px;font-weight:800;text-transform:uppercase;letter-spacing:.09em}.sp-news-item h3{margin-top:5px;font-size:12px;line-height:1.35}.sp-news-item p{margin-top:5px;color:#8fa1bc;font-size:8px;line-height:1.4}.sp-news-item>b{position:absolute;right:4px;top:18px;color:#7185a4;font-size:12px}.sp-news-item:hover h3{color:#8df0e8}.sp-news-item:hover>b{color:#fff}

/* Completely new student outcome section */
.sp-testimonials{position:relative;padding:clamp(68px,6vw,92px) 0;overflow:hidden;background:#071c3e;color:#fff}.sp-testimonials::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 5% 5%,rgba(18,87,229,.3),transparent 27%),linear-gradient(130deg,transparent 0 64%,rgba(39,195,184,.05) 64% 65%,transparent 65%)}.sp-testimonial-orbit{position:absolute;left:-230px;bottom:-280px;width:620px;height:620px;border:1px solid rgba(255,255,255,.1);border-radius:50%;box-shadow:0 0 0 80px rgba(255,255,255,.018),0 0 0 160px rgba(255,255,255,.012)}
.sp-testimonial-layout{position:relative;display:grid;grid-template-columns:.68fr 1.32fr;gap:clamp(55px,8vw,120px);align-items:center}.sp-testimonial-intro .sp-eyebrow{color:#72e4dc}.sp-testimonial-intro h2{margin-top:17px;color:#fff;font-family:'Manrope',sans-serif;font-size:clamp(38px,4vw,61px);font-weight:800;line-height:1.04;letter-spacing:-.057em}.sp-testimonial-intro h2 em{color:#8ff0e9;font-style:normal}.sp-testimonial-intro>p{max-width:460px;margin-top:22px;color:#98abc7;font-size:13px;line-height:1.7}.sp-student-rating{margin-top:32px;padding:17px 0;display:flex;align-items:center;gap:18px;border-top:1px solid rgba(255,255,255,.13);border-bottom:1px solid rgba(255,255,255,.13)}.sp-student-rating>strong{font-family:'Manrope',sans-serif;font-size:41px;letter-spacing:-.05em}.sp-student-rating div span,.sp-student-rating div small{display:block}.sp-student-rating div span{color:var(--sp-coral);font-size:11px;letter-spacing:.12em}.sp-student-rating div small{margin-top:5px;color:#8295b2;font-size:8px;text-transform:uppercase;letter-spacing:.09em}.sp-testimonial-all{margin-top:27px;display:inline-flex;align-items:center;gap:15px;color:#fff;font-size:10px;font-weight:800;text-decoration:none}.sp-testimonial-all span{display:grid;place-items:center;width:31px;height:31px;border-radius:9px;background:rgba(255,255,255,.09);color:#74e4dc}.sp-testimonial-all:hover{color:#8ff0e9}
.sp-testimonial-slider{min-width:0}.sp-testimonial-controls{height:48px;padding:0 5px;display:flex;align-items:center;justify-content:space-between}.sp-testimonial-controls>span{color:#8194b1;font-size:8px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}.sp-testimonial-controls>div{display:flex;gap:7px}.sp-testimonial-slider .tslider-arrow{position:static;transform:none;width:37px;height:37px;border:1px solid rgba(255,255,255,.16);border-radius:11px;background:rgba(255,255,255,.05);color:#fff;box-shadow:none}.sp-testimonial-slider .tslider-arrow:hover{transform:none;background:#fff;color:var(--sp-ink)}.sp-testimonial-slider .tslider-viewport{overflow:hidden;border-radius:24px}.sp-testimonial-card{min-width:100%;min-height:0;display:grid;grid-template-columns:.42fr .58fr;gap:0;align-items:stretch;padding:0;border:0;overflow:hidden;border-radius:24px;background:#fff;color:var(--sp-ink)}
.sp-testimonial-person{position:relative;min-height:0;align-self:stretch;overflow:hidden;background:#dce5f2}.sp-testimonial-person::after{content:"";position:absolute;inset:35% 0 0;background:linear-gradient(transparent,rgba(7,28,62,.88))}.sp-testimonial-person>img{position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover}.sp-testimonial-person-overlay{position:absolute;z-index:2;left:21px;right:21px;bottom:21px}.sp-testimonial-person-overlay span,.sp-testimonial-person-overlay strong,.sp-testimonial-person-overlay small{display:block}.sp-testimonial-person-overlay>span{color:#77e5dd;font-size:7px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.sp-testimonial-person-overlay strong{margin-top:6px;color:#fff;font-size:19px}.sp-testimonial-person-overlay small{margin-top:4px;color:#b2c0d4;font-size:9px;line-height:1.4}
.sp-testimonial-quote{position:relative;min-height:460px;padding:clamp(30px,3.2vw,48px);display:flex;flex-direction:column;justify-content:center}.sp-testimonial-stars{color:var(--sp-coral);font-size:10px;letter-spacing:.13em}.sp-testimonial-mark{position:absolute;right:34px;top:22px;color:#e9eff8;font-family:Georgia,serif;font-size:104px;line-height:1}.sp-testimonial-quote blockquote{position:relative;z-index:1;max-height:245px;margin-top:25px;overflow:auto;color:#1a3152;font-family:'Manrope',sans-serif;font-size:clamp(18px,1.65vw,25px);font-weight:700;line-height:1.45;letter-spacing:-.032em;scrollbar-width:thin}.sp-testimonial-verification{margin-top:27px;padding-top:17px;display:flex;align-items:center;gap:11px;border-top:1px solid var(--sp-line)}.sp-testimonial-verification>i{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:#e9faf8;color:#07998e;font-size:13px;font-style:normal;font-weight:900}.sp-testimonial-verification span strong,.sp-testimonial-verification span small{display:block}.sp-testimonial-verification strong{font-size:9px}.sp-testimonial-verification small{margin-top:3px;color:#8896aa;font-size:7px;text-transform:uppercase;letter-spacing:.08em}.sp-testimonial-slider .tslider-dots{margin-top:12px}.sp-testimonial-slider .tslider-dot{width:17px;height:3px;border-radius:99px;background:rgba(255,255,255,.18)}.sp-testimonial-slider .tslider-dot.is-active{width:42px;background:#72e4dc}

/* CollegeChalo-inspired, Scholar Portal-owned footer */
footer.sp-footer{background:#031229!important;color:#8ea2bf!important;border:0!important}.sp-footer-container{width:min(1380px,calc(100% - 64px));margin-inline:auto}
.sp-footer-tracks{padding:70px 0;background:#f0f5fb;color:var(--sp-ink)}.sp-footer-tracks .sp-footer-container{display:grid;grid-template-columns:.62fr 1.38fr;gap:75px;align-items:end}.sp-footer-tracks-head>span{color:var(--sp-blue);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.13em}.sp-footer-tracks-head h2{max-width:440px;margin-top:11px;font-family:'Manrope',sans-serif;font-size:31px;line-height:1.12;letter-spacing:-.045em}.sp-footer-track-links{display:flex;flex-wrap:wrap;gap:8px}.sp-footer-track-links a{min-width:135px;padding:12px 13px;display:flex;align-items:center;justify-content:space-between;border:1px solid #dbe4f0;border-radius:11px;background:#fff;color:#354963;font-size:10px;font-weight:800;text-decoration:none}.sp-footer-track-links a span{color:var(--sp-blue)}.sp-footer-track-links a:hover{border-color:var(--sp-blue);color:var(--sp-blue);transform:translateY(-2px)}
.sp-footer-alerts{padding:58px 0;background:linear-gradient(115deg,#1257e5,#0c3ca5);color:#fff}.sp-footer-alerts-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}.sp-footer-kicker{display:flex;align-items:center;gap:9px;color:#b7fff9;font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.sp-footer-kicker i{width:7px;height:7px;border-radius:50%;background:#6de5dc;box-shadow:0 0 0 5px rgba(109,229,220,.14)}.sp-footer-alert-copy h2{margin-top:12px;font-family:'Manrope',sans-serif;font-size:34px;line-height:1.12;letter-spacing:-.045em}.sp-footer-alert-copy p{margin-top:10px;color:#c4d5fb;font-size:11px}.sp-footer-newsletter-wrap{max-width:610px}.sp-footer-newsletter{padding:6px;display:flex;border:1px solid rgba(255,255,255,.22);border-radius:15px;background:rgba(255,255,255,.11);backdrop-filter:blur(10px)}.sp-footer-newsletter input{min-width:0;flex:1;padding:0 15px;border:0;outline:0;background:transparent;color:#fff;font-size:11px}.sp-footer-newsletter input::placeholder{color:#c3d4f5}.sp-footer-newsletter button{min-height:47px;padding:0 17px;display:flex;align-items:center;gap:18px;border:0;border-radius:11px;background:#fff;color:var(--sp-blue);font-size:10px;font-weight:900;cursor:pointer}.sp-footer-newsletter-wrap>small{display:block;margin-top:8px;color:#aac2f2;font-size:8px}.sp-footer-form-message{margin-bottom:8px;font-size:10px}.sp-footer-form-message.is-success{color:#aafff7}.sp-footer-form-message.is-error{color:#ffd4c4}
.sp-footer-main{padding:82px 0 72px;background:#031229}.sp-footer-grid{display:grid;grid-template-columns:1.6fr repeat(4,.62fr);gap:50px}.sp-footer-brand>a{display:inline-block;padding:6px 10px;border-radius:13px;background:#fff}.sp-footer-brand>a img{display:block;width:235px;height:58px;object-fit:contain}.sp-footer-brand>p{max-width:480px;margin-top:22px;color:#8195b2;font-size:11px;line-height:1.8}.sp-footer-contact-list{margin-top:25px;display:grid;grid-template-columns:1fr 1fr;gap:9px}.sp-footer-contact-list>a,.sp-footer-contact-list>div{padding:11px 12px;border:1px solid rgba(255,255,255,.1);border-radius:11px;text-decoration:none}.sp-footer-contact-list>div{grid-column:1/-1}.sp-footer-contact-list span,.sp-footer-contact-list strong{display:block}.sp-footer-contact-list span{color:#627896;font-size:7px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.sp-footer-contact-list strong{margin-top:5px;color:#becbe0;font-size:9px;font-weight:700}.sp-footer-contact-list a:hover{border-color:rgba(113,228,220,.35)}.sp-footer-contact-list a:hover strong{color:#76e6de}.sp-footer-social{margin-top:20px;display:flex;gap:7px}.sp-footer-social a{display:grid;place-items:center;width:35px;height:35px;border:1px solid rgba(255,255,255,.12);border-radius:10px;color:#94a6c0}.sp-footer-social svg{width:15px;height:15px;fill:currentColor}.sp-footer-social a:hover{border-color:var(--sp-blue);background:var(--sp-blue);color:#fff}
.sp-footer-column h3{margin:10px 0 22px;color:#fff;font-size:12px;font-weight:800}.sp-footer-column>a{position:relative;margin:0 0 14px;padding-left:12px;display:block;color:#8195b2;font-size:9px;font-weight:600;text-decoration:none}.sp-footer-column>a::before{content:"";position:absolute;left:0;top:6px;width:4px;height:4px;border-radius:50%;background:#244c85}.sp-footer-column>a:hover{color:#fff;transform:translateX(3px)}.sp-footer-column>a:hover::before{background:#72e4dc}
.sp-footer-bottom{padding:21px 0;border-top:1px solid rgba(255,255,255,.09);background:#020e21}.sp-footer-bottom .sp-footer-container{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:25px;color:#536a8a;font-size:8px}.sp-footer-bottom>div>div{display:flex;gap:18px}.sp-footer-bottom a{color:#6f84a2;text-decoration:none}.sp-footer-bottom a:hover{color:#fff}.sp-footer-note{text-align:right;color:#607695}

@media(max-width:1240px){
  .sp-site-nav .sp-header-inner{width:calc(100% - 36px);gap:18px}.sp-site-nav .sp-header-brand img{width:200px}.sp-site-nav .sp-header-links>li>a{padding:10px 8px;font-size:10px}.sp-header-collapse{gap:14px}.sp-login-trigger span{display:none}.sp-login-trigger{width:43px;padding:0;justify-content:center}.sp-radar-inner{width:calc(100% - 36px)}.sp-radar-contact{display:none}
  .sp-footer-grid{grid-template-columns:1.35fr repeat(4,.7fr);gap:28px}.sp-footer-brand>a img{width:210px}.sp-editorial-grid{grid-template-columns:1.15fr .85fr}
}
@media(max-width:1000px){
  .sp-site-header{position:sticky;top:0}.sp-site-nav{position:relative}.sp-site-nav .sp-header-inner{height:68px;width:calc(100% - 32px)}.sp-site-nav .sp-header-brand img{width:195px;height:51px}.sp-header-collapse{top:68px!important;left:-16px!important;right:-16px!important;max-height:calc(100vh - 107px)!important;padding:14px 20px 23px!important}.sp-site-nav .sp-header-links>li>a{padding:13px 4px;font-size:13px}.sp-site-nav .sp-header-links>li>a i{margin-left:auto}.sp-site-nav .sp-mega-menu,.sp-site-nav .sp-mega-menu--compact{position:static;width:100%;min-width:0;padding:5px 8px;margin-bottom:7px;border:0;border-radius:13px;background:#f2f6fc;box-shadow:none;opacity:1;visibility:visible;transform:none}.sp-site-nav .sp-mega-menu::before{display:none}.sp-site-nav .sp-mega-menu>a{min-height:54px;padding:8px}.sp-site-nav .sp-mega-menu>a:hover{padding-left:8px}.sp-header-actions{width:100%;display:grid;grid-template-columns:43px 1fr 1.25fr;gap:8px;margin-top:10px}.sp-login-trigger{width:100%;justify-content:center}.sp-login-trigger span{display:block}.sp-login-menu{right:auto;left:0}.sp-site-nav .sp-header-cta{width:100%;height:43px;margin:0}.sp-admission-radar{height:36px;overflow:hidden}.sp-radar-inner{width:100%;overflow-x:auto;scrollbar-width:none}.sp-radar-inner::-webkit-scrollbar{display:none}.sp-radar-title{padding:0 15px;flex:0 0 auto}.sp-radar-inner>a,.sp-radar-inner>button{padding:0 15px;flex:0 0 auto}
  .sp-top-college-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.sp-college-head-side{justify-items:start}.sp-college-head-side>p{text-align:left}.sp-editorial-grid{grid-template-columns:1fr}.sp-blog-grid{grid-template-columns:1.1fr .9fr}.sp-news-list{grid-template-columns:1fr 1fr}.sp-news-item:nth-child(even){padding-left:16px;border-left:1px solid rgba(255,255,255,.12)}
  .sp-testimonial-layout{grid-template-columns:1fr;gap:38px}.sp-testimonial-intro{max-width:690px}.sp-testimonial-card{min-height:0}.sp-footer-tracks .sp-footer-container{grid-template-columns:1fr;gap:30px}.sp-footer-alerts-inner{grid-template-columns:1fr;gap:30px}.sp-footer-grid{grid-template-columns:1.3fr repeat(2,1fr)}.sp-footer-brand{grid-row:span 2}.sp-footer-bottom .sp-footer-container{grid-template-columns:1fr auto}.sp-footer-note{display:none}
}
@media(max-width:640px){
  .sp-site-nav .sp-header-inner{width:calc(100% - 26px)}.sp-site-nav .sp-header-brand img{width:180px}.sp-header-collapse{left:-13px!important;right:-13px!important}.sp-header-actions{grid-template-columns:1fr 1.25fr}.sp-header-search{display:none}.sp-login-menu{width:100%}.sp-radar-title{font-size:8px}.sp-radar-inner>a,.sp-radar-inner>button{font-size:8px}
  .sp-top-college-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;margin-right:-16px;padding-right:16px}.sp-top-college-grid::-webkit-scrollbar{display:none}.sp-college-pick{min-width:86%;scroll-snap-align:start}.sp-college-head-side{gap:12px}.sp-college-pick-media{height:185px}
  .sp-editorial-grid{gap:13px}.sp-blog-desk,.sp-news-desk{padding:14px;border-radius:20px}.sp-blog-grid{display:grid;grid-template-columns:1fr;grid-template-rows:auto}.sp-blog-card,.sp-blog-card--feature{grid-row:auto;display:grid;grid-template-columns:120px 1fr;min-height:170px}.sp-blog-card .sp-blog-image,.sp-blog-card--feature .sp-blog-image{height:auto;min-height:170px}.sp-blog-card--feature h3{font-size:17px}.sp-blog-card--feature p,.sp-blog-body p{font-size:8px}.sp-news-list{grid-template-columns:1fr}.sp-news-item:nth-child(even){padding-left:0;border-left:0}.sp-news-item{min-height:105px}
  .sp-testimonials{padding:54px 0}.sp-testimonial-layout{gap:26px}.sp-testimonial-intro h2{font-size:37px}.sp-testimonial-slider .sp-testimonial-card{min-height:0;display:grid!important;grid-template-columns:1fr!important;padding:0!important;gap:0!important;text-align:left}.sp-testimonial-person{min-height:240px;height:240px}.sp-testimonial-quote{min-height:310px;padding:22px 20px}.sp-testimonial-quote blockquote{max-height:170px;font-size:18px}.sp-testimonial-mark{font-size:76px;right:18px}.sp-testimonial-controls{height:44px}.sp-testimonial-slider .tslider-viewport{border-radius:20px}
  .sp-footer-container{width:calc(100% - 32px)}.sp-footer-tracks{padding:55px 0}.sp-footer-tracks-head h2{font-size:27px}.sp-footer-track-links{display:grid;grid-template-columns:1fr 1fr}.sp-footer-track-links a{min-width:0}.sp-footer-alerts{padding:48px 0}.sp-footer-alert-copy h2{font-size:28px}.sp-footer-newsletter{display:grid;gap:6px}.sp-footer-newsletter input{min-height:45px}.sp-footer-newsletter button{width:100%;justify-content:space-between}.sp-footer-main{padding:60px 0}.sp-footer-grid{grid-template-columns:1fr 1fr;gap:35px 25px}.sp-footer-brand{grid-column:1/-1;grid-row:auto}.sp-footer-brand>a img{width:205px}.sp-footer-column h3{margin-bottom:17px}.sp-footer-bottom .sp-footer-container{grid-template-columns:1fr;gap:13px}.sp-footer-bottom>div>div{flex-wrap:wrap;gap:12px 18px}
}

/* ================================================================
   HOMEPAGE READABILITY, VECTOR DEPTH & MOTION POLISH
   ================================================================ */
.sp-hero-vectors{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.sp-hero-grid{position:relative;z-index:1}
.sp-hero-vector{position:absolute;display:grid;place-items:center;width:88px;height:88px;border:1px solid rgba(18,87,229,.14);border-radius:27px;background:rgba(255,255,255,.46);color:var(--sp-blue);box-shadow:0 18px 55px rgba(18,87,229,.07);backdrop-filter:blur(7px);animation:sp-vector-float 7s ease-in-out infinite}
.sp-hero-vector svg{width:48px;height:48px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.sp-hero-vector--cap{left:47.5%;top:42px;transform:rotate(-8deg);opacity:.34}
.sp-hero-vector--book{left:3.5%;bottom:45px;width:76px;height:76px;color:var(--sp-mint);transform:rotate(7deg);opacity:.28;animation-delay:-2.2s}
.sp-hero-vector--target{right:2.5%;top:125px;width:72px;height:72px;color:var(--sp-coral);transform:rotate(8deg);opacity:.3;animation-delay:-4.4s}
.sp-hero-vector-path{position:absolute;right:-20px;bottom:5px;width:46%;height:58%;fill:none;stroke:rgba(18,87,229,.12);stroke-width:1.5;stroke-dasharray:8 11}
.sp-hero-vector-path circle{fill:#fff;stroke:rgba(18,87,229,.22);stroke-width:3}

/* Lift the smallest type without changing the established visual hierarchy. */
.sp-site-nav .sp-header-links>li>a{font-size:13px}.sp-login-trigger{font-size:11px}.sp-login-menu a{font-size:11px}
.sp-radar-title{font-size:10px}.sp-radar-inner>a,.sp-radar-inner>button,.sp-radar-contact{font-size:10px}
.sp-live-pill{font-size:11px}
.sp-hero-copy>p{font-size:18px}
.sp-hero-search input{font-size:16px}.sp-hero-search button{font-size:14px}
.sp-popular-searches{font-size:12.5px}.sp-hero-proof span{font-size:10.5px}
.sp-photo-badge small{font-size:10px}.sp-photo-badge strong{font-size:12.5px}
.sp-route-head{font-size:11px}.sp-route-steps p small{font-size:9px}.sp-route-steps p strong{font-size:12px}.sp-route-steps>div>b{font-size:9px}.sp-route-action{font-size:12px}
.sp-explore-label{font-size:11px}.sp-explore-bar a{font-size:13px}.sp-explore-bar a b{font-size:10px}
.sp-section-head>p{font-size:15.5px}.sp-eyebrow{font-size:11px}.sp-text-link,.sp-link-btn{font-size:13px}.sp-primary-btn,.sp-white-btn{font-size:13px}
.sp-goal-card>span{font-size:10.5px}.sp-goal-card p{font-size:14px}.sp-goal-card>b{font-size:12.5px}
.sp-app-card-top span{font-size:10.5px}.sp-application-card>p{font-size:13px}.sp-app-footer span,.sp-app-footer b{font-size:11.5px}
.sp-tools-copy>p{font-size:16px}.sp-tool-card small{font-size:10px}.sp-tool-card p{font-size:13px}.sp-tool-card>b{font-size:11.5px}
.sp-stream-card>span{font-size:11px}.sp-stream-card p{font-size:12.5px}
.sp-guidance-copy>p{font-size:16px}.sp-guidance-copy li>span{font-size:12px}.sp-guidance-copy li strong{font-size:15.5px}.sp-guidance-copy li p{font-size:13px}
.sp-fit-card small{font-size:9.5px}.sp-fit-card strong{font-size:13px}
.sp-process-grid small{font-size:10.5px}.sp-process-grid p{font-size:13px}.sp-process .sp-section-head--light>p{font-size:15.5px}
.sp-editorial-label>span,.sp-editorial-label>a{font-size:10.5px}.sp-blog-image>span{font-size:9px}.sp-blog-meta{font-size:9px}.sp-blog-body p{font-size:11.5px}.sp-blog-card--feature p{font-size:13px}.sp-read-link{font-size:10.5px}
.sp-news-date span,.sp-news-item>div:nth-child(2)>span{font-size:9px}.sp-news-item h3{font-size:13.5px}.sp-news-item p{font-size:10.5px}
.sp-testimonial-intro>p{font-size:14.5px}.sp-student-rating div small{font-size:9.5px}.sp-testimonial-all{font-size:11.5px}.sp-testimonial-controls>span{font-size:9.5px}.sp-testimonial-person-overlay>span{font-size:9px}.sp-testimonial-person-overlay small{font-size:11px}.sp-testimonial-stars{font-size:11px}.sp-testimonial-verification strong{font-size:11px}.sp-testimonial-verification small{font-size:9px}
.sp-final-action p{font-size:15px}

/* College cards: readable facts, explicit type badge and location affordance. */
.sp-college-head-side>p{font-size:14.5px}
.sp-college-pick-media>span{max-width:calc(100% - 28px);font-size:10px;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sp-college-pick-media>b{font-size:9.5px}
.sp-college-identity h3{font-size:16.5px}
.sp-college-identity p.sp-college-location{margin-top:7px;display:flex;align-items:center;gap:5px;color:#667a95;font-size:11.5px;line-height:1.35}
.sp-college-location svg{width:14px;height:14px;flex:0 0 14px;fill:none;stroke:var(--sp-coral);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sp-college-facts small{font-size:9px}.sp-college-facts strong{font-size:11px;line-height:1.45}
.sp-college-pick-actions a,.sp-college-pick-actions button{font-size:11.5px}

/* Soft glows keep the progress points lively without distracting blinking. */
.sp-guidance-orbit>i,.sp-process-grid article>i{will-change:transform,filter,opacity;animation:sp-dot-glow 2.35s ease-in-out infinite}
.sp-guidance-orbit>i:nth-of-type(1){color:var(--sp-coral)}
.sp-guidance-orbit>i:nth-of-type(2){color:var(--sp-mint);animation-delay:-.78s}
.sp-guidance-orbit>i:nth-of-type(3){color:var(--sp-blue);animation-delay:-1.56s}
.sp-process-grid article:nth-child(1)>i{color:var(--sp-coral)}
.sp-process-grid article:nth-child(2)>i{color:var(--sp-mint);animation-delay:-.58s}
.sp-process-grid article:nth-child(3)>i{color:#78a0ff;animation-delay:-1.16s}
.sp-process-grid article:nth-child(4)>i{color:#d3b5ff;animation-delay:-1.74s}

@keyframes sp-vector-float{
  0%,100%{margin-top:0}
  50%{margin-top:-13px}
}
@keyframes sp-dot-glow{
  0%,100%{opacity:.72;transform:scale(.92);filter:drop-shadow(0 0 2px currentColor)}
  50%{opacity:1;transform:scale(1.18);filter:drop-shadow(0 0 11px currentColor)}
}

@media(max-width:1000px){
  .sp-hero-vector--cap{left:auto;right:6%;top:24px}.sp-hero-vector--book{left:2%;bottom:42%}.sp-hero-vector--target{right:1%;top:44%}.sp-hero-vector-path{width:88%;height:48%;opacity:.7}
}
@media(max-width:640px){
  .sp-hero-vector{width:56px;height:56px;border-radius:18px;opacity:.2}.sp-hero-vector svg{width:31px;height:31px}.sp-hero-vector--cap{right:-12px;top:25px}.sp-hero-vector--book{left:-18px;bottom:47%}.sp-hero-vector--target{display:none}.sp-hero-vector-path{right:-80px;bottom:40px;width:130%;height:35%;opacity:.55}
  .sp-live-pill{font-size:9.5px}.sp-hero-copy>p{font-size:15.5px}.sp-hero-search input{font-size:14px}.sp-hero-search button{font-size:12px}.sp-popular-searches{font-size:11.5px}.sp-hero-proof span{font-size:8.5px}
  .sp-section-head>p,.sp-process .sp-section-head--light>p{font-size:14px}.sp-eyebrow{font-size:10px}.sp-goal-card p{font-size:13.5px}.sp-tools-copy>p,.sp-guidance-copy>p{font-size:14.5px}
  .sp-fit-card small{font-size:8.5px}.sp-fit-card strong{font-size:11px}.sp-process-grid p{font-size:12.5px}
  .sp-college-pick-media>span{font-size:9px}.sp-college-identity h3{font-size:16px}.sp-college-identity p.sp-college-location{font-size:11px}.sp-college-facts small{font-size:8.5px}.sp-college-facts strong{font-size:10.5px}
  .sp-site-nav .sp-header-links>li>a{font-size:13px}.sp-radar-title,.sp-radar-inner>a,.sp-radar-inner>button{font-size:9px}
  .sp-blog-body p,.sp-blog-card--feature p{font-size:11px}.sp-news-item p{font-size:10px}.sp-testimonial-intro>p{font-size:13.5px}.sp-final-action p{font-size:14px}
}

@media(prefers-reduced-motion:reduce){
  .sp-hero-vector,.sp-guidance-orbit>i,.sp-process-grid article>i{animation:none!important}
}

/* ================================================================
   HOMEPAGE TYPOGRAPHY VISIBILITY PASS
   Headline sizes stay unchanged; navigation, body copy and footer grow.
   ================================================================ */

/* Primary header + admission radar: exactly one pixel larger. */
.sp-site-nav .sp-header-links>li>a{font-size:14px}
.sp-site-nav .sp-header-links>li>a i{font-size:13px}
.sp-site-nav .sp-mega-menu>a>span{font-size:10px}
.sp-site-nav .sp-mega-menu>a strong{font-size:13px}
.sp-site-nav .sp-mega-menu>a small{font-size:10px}
.sp-login-trigger,.sp-login-menu a{font-size:12px}
.sp-site-nav .sp-header-cta{font-size:12px!important}
.sp-radar-title,.sp-radar-inner>a,.sp-radar-inner>button,.sp-radar-contact{font-size:11px}

/* Homepage supporting copy, labels, metadata and actions. */
.sp-live-pill{font-size:12px}
.sp-hero-copy>p{font-size:19px}
.sp-hero-search input{font-size:17px}.sp-hero-search button{font-size:15px}
.sp-popular-searches{font-size:13.5px}
.sp-hero-proof strong{font-size:23px}.sp-hero-proof span{font-size:11.5px}
.sp-photo-badge small{font-size:11px}.sp-photo-badge strong{font-size:13.5px}
.sp-route-head{font-size:12px}.sp-route-steps p small{font-size:10px}.sp-route-steps p strong{font-size:13px}.sp-route-steps>div>b{font-size:10px}.sp-route-action{font-size:13px}
.sp-explore-label{font-size:12px}.sp-explore-bar a{font-size:14px}.sp-explore-bar a b{font-size:11px}
.sp-section-head>p{font-size:16.5px}.sp-eyebrow{font-size:12px}.sp-text-link,.sp-link-btn{font-size:14px}.sp-primary-btn,.sp-white-btn{font-size:14px}
.sp-goal-card>span{font-size:11.5px}.sp-goal-card p{font-size:15px}.sp-goal-card>b{font-size:13.5px}
.sp-app-card-top span{font-size:11.5px}.sp-application-card>p{font-size:14px}.sp-app-footer span,.sp-app-footer b{font-size:12.5px}
.sp-tools-copy>p{font-size:17px}.sp-tool-card small{font-size:11px}.sp-tool-card p{font-size:14px}.sp-tool-card>b{font-size:12.5px}
.sp-stream-card>span{font-size:12px}.sp-stream-card p{font-size:13.5px}
.sp-guidance-copy>p{font-size:17px}.sp-guidance-copy li>span{font-size:13px}.sp-guidance-copy li p{font-size:14px}
.sp-fit-card small{font-size:10.5px}.sp-fit-card strong{font-size:14px}
.sp-process-grid small{font-size:11.5px}.sp-process-grid p{font-size:14px}.sp-process .sp-section-head--light>p{font-size:16.5px}
.sp-college-head-side>p{font-size:15.5px}.sp-college-pick-media>span{font-size:11px}.sp-college-pick-media>b{font-size:10.5px}
.sp-college-identity p.sp-college-location{font-size:12.5px}.sp-college-facts small{font-size:10px}.sp-college-facts strong{font-size:12px}.sp-college-pick-actions a,.sp-college-pick-actions button{font-size:12.5px}
.sp-editorial-label>span,.sp-editorial-label>a{font-size:11.5px}.sp-blog-image>span{font-size:10px}.sp-blog-meta{font-size:10px}.sp-blog-body p{font-size:12.5px}.sp-blog-card--feature p{font-size:14px}.sp-read-link{font-size:11.5px}
.sp-news-date span,.sp-news-item>div:nth-child(2)>span{font-size:10px}.sp-news-item p{font-size:11.5px}
.sp-testimonial-intro>p{font-size:15.5px}.sp-student-rating div small{font-size:10.5px}.sp-testimonial-all{font-size:12.5px}.sp-testimonial-controls>span{font-size:10.5px}
.sp-testimonial-person-overlay>span{font-size:10px}.sp-testimonial-person-overlay small{font-size:12px}.sp-testimonial-stars{font-size:12px}.sp-testimonial-quote blockquote{font-size:clamp(17px,1.35vw,22px)}.sp-testimonial-verification strong{font-size:12px}.sp-testimonial-verification small{font-size:10px}
.sp-final-action p{font-size:16px}

/* Footer receives a stronger, independent reading scale. */
.sp-footer-tracks-head>span{font-size:11px}
.sp-footer-tracks-head h2{font-size:34px}
.sp-footer-track-links a{font-size:12.5px}
.sp-footer-kicker{font-size:10.5px}
.sp-footer-alert-copy h2{font-size:37px}
.sp-footer-alert-copy p{font-size:14px}
.sp-footer-newsletter input{font-size:13.5px}.sp-footer-newsletter button{font-size:12.5px}
.sp-footer-newsletter-wrap>small,.sp-footer-form-message{font-size:10.5px}
.sp-footer-brand>p{font-size:14px}
.sp-footer-contact-list span{font-size:10px}.sp-footer-contact-list strong{font-size:12px}
.sp-footer-column h3{font-size:15px}
.sp-footer-column>a{font-size:12.5px;line-height:1.45}
.sp-footer-bottom .sp-footer-container{font-size:11px;line-height:1.5}

@media(max-width:1240px) and (min-width:1001px){
  .sp-site-nav .sp-header-links>li>a{font-size:11px}
}

@media(max-width:640px){
  .sp-site-nav .sp-header-links>li>a{font-size:14px}
  .sp-radar-title,.sp-radar-inner>a,.sp-radar-inner>button{font-size:10px}
  .sp-live-pill{font-size:10.5px}.sp-hero-copy>p{font-size:16.5px}.sp-hero-search input{font-size:15px}.sp-hero-search button{font-size:13px}.sp-popular-searches{font-size:12.5px}.sp-hero-proof span{font-size:9.5px}
  .sp-section-head>p,.sp-process .sp-section-head--light>p{font-size:15px}.sp-eyebrow{font-size:11px}.sp-goal-card p{font-size:14.5px}.sp-tools-copy>p,.sp-guidance-copy>p{font-size:15.5px}
  .sp-fit-card small{font-size:9.5px}.sp-fit-card strong{font-size:12px}.sp-process-grid p{font-size:13.5px}
  .sp-college-pick-media>span{font-size:10px}.sp-college-identity p.sp-college-location{font-size:12px}.sp-college-facts small{font-size:9.5px}.sp-college-facts strong{font-size:11.5px}
  .sp-blog-body p,.sp-blog-card--feature p{font-size:12px}.sp-news-item p{font-size:11px}.sp-testimonial-intro>p{font-size:14.5px}.sp-final-action p{font-size:15px}
  .sp-testimonial-quote blockquote{font-size:17px}
  .sp-footer-tracks-head>span{font-size:10px}.sp-footer-tracks-head h2{font-size:30px}.sp-footer-track-links a{font-size:12px}
  .sp-footer-kicker{font-size:10px}.sp-footer-alert-copy h2{font-size:31px}.sp-footer-alert-copy p{font-size:13px}
  .sp-footer-newsletter input{font-size:13px}.sp-footer-newsletter button{font-size:12px}.sp-footer-newsletter-wrap>small{font-size:10px}
  .sp-footer-brand>p{font-size:13px}.sp-footer-contact-list span{font-size:9.5px}.sp-footer-contact-list strong{font-size:11.5px}
  .sp-footer-column h3{font-size:14px}.sp-footer-column>a{font-size:12px}.sp-footer-bottom .sp-footer-container{font-size:10.5px}
}

/* ================================================================
   HERO DEPTH + DISCIPLINE EXPLORER
   A stronger Scholar Portal visual language with progressive content.
   ================================================================ */
.sp-hero{
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%,rgba(48,109,255,.48) 0,rgba(48,109,255,0) 32%),
    radial-gradient(circle at 86% 15%,rgba(48,214,198,.18) 0,rgba(48,214,198,0) 27%),
    radial-gradient(circle at 71% 93%,rgba(96,65,210,.24) 0,rgba(96,65,210,0) 34%),
    linear-gradient(128deg,#06152f 0%,#092b6b 48%,#101f51 100%);
}
.sp-hero::before{
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.72) 55%,rgba(0,0,0,.2) 100%);
  opacity:.82;
}
.sp-hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  width:270px;
  height:270px;
  right:7%;
  top:12%;
  border:1px solid rgba(255,255,255,.1);
  border-radius:34px;
  transform:rotate(34deg);
  box-shadow:195px 175px 0 -1px rgba(255,255,255,.035),-800px 410px 0 -1px rgba(54,214,199,.05);
  pointer-events:none;
}
.sp-hero-glow--one{background:rgba(39,195,184,.16)}
.sp-hero-glow--two{background:rgba(45,103,246,.32)}
.sp-live-pill{border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.1);color:#e4ecff;box-shadow:0 12px 34px rgba(1,8,25,.14);backdrop-filter:blur(14px)}
.sp-hero h1{color:#fff;text-shadow:0 9px 35px rgba(1,9,27,.2)}
.sp-hero h1 em{color:#6fe6da;background:linear-gradient(90deg,#78eee1 0%,#8cb9ff 72%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.sp-hero-copy>p{color:#c8d6f2}
.sp-hero-search{border-color:rgba(255,255,255,.72);border-radius:20px;box-shadow:0 24px 58px rgba(0,8,29,.34),0 0 0 5px rgba(255,255,255,.08)}
.sp-hero-search:focus-within{box-shadow:0 24px 62px rgba(0,8,29,.4),0 0 0 5px rgba(111,230,218,.2)}
.sp-hero-search button{background:var(--sp-action-gradient);box-shadow:var(--sp-action-shadow)}
.sp-hero-search button:hover{background:var(--sp-action-gradient-hover)}
.sp-popular-searches{color:#9db1d6}
.sp-popular-searches a{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.08);color:#dbe6fb;backdrop-filter:blur(9px)}
.sp-popular-searches a:hover{border-color:#70e5d9;background:rgba(112,229,217,.14);color:#fff}
.sp-hero-proof>div{border-color:rgba(255,255,255,.17)}
.sp-hero-proof strong{color:#fff}.sp-hero-proof span{color:#9fb2d5}
.sp-photo-frame{border:1px solid rgba(255,255,255,.2);box-shadow:0 38px 90px rgba(0,7,27,.46)}
.sp-route-card{border-color:rgba(255,255,255,.82);box-shadow:0 27px 68px rgba(0,7,27,.37)}
.sp-hero-vector{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.08);color:#9fbfff;box-shadow:0 18px 55px rgba(0,7,27,.16)}
.sp-hero-vector--book{color:#71e8dc}.sp-hero-vector--target{color:#ff8a6e}
.sp-hero-vector-path{stroke:rgba(141,185,255,.25)}.sp-hero-vector-path circle{fill:#0d2d68;stroke:rgba(111,230,218,.55)}

.sp-streams{background:linear-gradient(180deg,#fff 0%,#f8fbff 100%)}
.sp-stream-grid{gap:14px;border-top:0}
.sp-stream-card{
  min-height:118px;
  padding:18px 22px;
  grid-template-columns:54px minmax(0,1fr) auto;
  gap:18px;
  border:1px solid #e1e9f4!important;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 28px rgba(7,28,62,.035);
}
.sp-stream-card:hover{padding-left:22px;border-color:#bcd0fa!important;background:#fff;box-shadow:0 20px 42px rgba(18,87,229,.1);transform:translateY(-3px)}
.sp-stream-card>.sp-stream-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:#eef4ff;color:#185ce2;font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;font-size:26px;line-height:1}
.sp-stream-card:nth-child(4n+2) .sp-stream-icon{background:#eafaf7;color:#069183}
.sp-stream-card:nth-child(4n+3) .sp-stream-icon{background:#fff1eb;color:#e85c35}
.sp-stream-card:nth-child(4n+4) .sp-stream-icon{background:#f3efff;color:#6545cf}
.sp-stream-card h3{font-size:18px}.sp-stream-card p{margin-top:6px}
.sp-stream-card>b{width:38px;height:38px;background:#f1f5fb}
.sp-stream-card:hover>b{background:#1257e5}
.sp-stream-card.is-stream-hidden{display:none}
.sp-stream-more{display:flex;justify-content:center;margin-top:30px}
.sp-stream-load-more{min-height:52px;padding:0 21px;display:inline-flex;align-items:center;gap:16px;border:1px solid #cddaf0;border-radius:15px;background:#fff;color:#102b58;font-size:13px;font-weight:800;cursor:pointer;box-shadow:0 12px 28px rgba(7,28,62,.06);transition:.22s ease}
.sp-stream-load-more[hidden]{display:none}
.sp-stream-load-more b{display:grid;place-items:center;width:29px;height:29px;border-radius:9px;background:#eaf1ff;color:#1257e5;font-size:16px;transition:transform .22s ease}
.sp-stream-load-more:hover{border-color:#1257e5;color:#1257e5;transform:translateY(-2px);box-shadow:0 17px 34px rgba(18,87,229,.12)}
.sp-stream-load-more:hover b{transform:translateY(2px)}

@media(max-width:1000px){
  .sp-hero::after{right:-12%;top:20%}
  .sp-hero-copy{text-align:center}.sp-popular-searches,.sp-hero-proof{justify-content:center}
}
@media(max-width:640px){
  .sp-hero::before{background-size:38px 38px;opacity:.62}
  .sp-hero::after{width:190px;height:190px;right:-35%;top:12%}
  .sp-live-pill{color:#eef4ff}
  .sp-hero-search{border-radius:16px;box-shadow:0 18px 42px rgba(0,8,29,.34),0 0 0 3px rgba(255,255,255,.07)}
  .sp-popular-searches a{color:#e2eaff}
  .sp-stream-grid{gap:10px}
  .sp-stream-card{min-height:98px;padding:14px;grid-template-columns:44px minmax(0,1fr) 34px;gap:12px;border-radius:15px}
  .sp-stream-card:hover{padding-left:14px}
  .sp-stream-card>.sp-stream-icon{width:43px;height:43px;border-radius:13px;font-size:22px}
  .sp-stream-card h3{font-size:15px;line-height:1.25}.sp-stream-card p{font-size:11.5px}.sp-stream-card>b{width:34px;height:34px}
  .sp-stream-more{margin-top:22px}.sp-stream-load-more{min-height:48px;font-size:12px}
}

/* ================================================================
   CENTERED SEARCH HERO
   Image-free composition with stronger focus on discovery.
   ================================================================ */
.sp-hero{min-height:690px;padding:84px 0 76px;display:flex;align-items:center}
.sp-hero-grid{display:block;width:min(1180px,calc(100% - 56px))}
.sp-hero-copy{max-width:1080px;margin:0 auto;text-align:center}
.sp-hero h1{max-width:1050px;margin:25px auto 24px;font-size:clamp(58px,5.7vw,88px);line-height:.98;letter-spacing:-.065em}
.sp-hero h1 em{display:block}
.sp-hero-copy>p{max-width:770px;margin:0 auto;color:#cfdbf2;line-height:1.65}
.sp-hero-search{max-width:790px;margin:34px auto 0;min-height:72px;padding-left:23px;border-radius:22px}
.sp-hero-search button{min-width:130px;justify-content:center}
.sp-popular-searches{justify-content:center;margin-top:17px}
.sp-popular-searches>span{color:#aabbd9}
.sp-popular-searches a{padding:7px 12px}
.sp-hero-proof{justify-content:center;gap:11px;margin-top:34px}
.sp-hero-proof>div{min-width:175px;margin:0;padding:15px 20px;border:1px solid rgba(255,255,255,.13);border-radius:15px;background:rgba(255,255,255,.065);box-shadow:0 12px 34px rgba(0,7,27,.1);backdrop-filter:blur(10px)}
.sp-hero-proof>div:last-child{margin:0;padding:15px 20px;border:1px solid rgba(255,255,255,.13)}
.sp-hero-proof strong{font-size:25px}.sp-hero-proof span{margin-top:4px}
.sp-hero-vector--cap{left:8%;top:14%;transform:rotate(-8deg);opacity:.42}
.sp-hero-vector--book{left:4%;bottom:10%;opacity:.38}
.sp-hero-vector--target{right:5%;top:17%;opacity:.4}
.sp-hero-vector-path{right:-4%;bottom:-6%;width:58%;height:52%;opacity:.7}
.sp-hero::after{right:10%;top:8%;width:235px;height:235px;opacity:.8}

@media(max-width:1000px){
  .sp-hero{min-height:650px;padding:72px 0 68px}
  .sp-hero-grid{width:calc(100% - 40px)}
  .sp-hero-vector--cap{left:5%;right:auto;top:12%}.sp-hero-vector--book{left:1%;bottom:9%}.sp-hero-vector--target{right:2%;top:20%}
  .sp-hero-vector-path{width:78%;height:45%}
}
@media(max-width:640px){
  .sp-hero{min-height:auto;padding:48px 0 52px}
  .sp-hero-grid{width:calc(100% - 30px)}
  .sp-hero h1{margin:22px auto 20px;font-size:clamp(40px,10.8vw,46px);line-height:1.01}
  .sp-hero-copy>p{font-size:16px;line-height:1.6}
  .sp-hero-search{min-height:61px;margin-top:27px;padding-left:15px;border-radius:17px}
  .sp-hero-search button{min-width:91px}
  .sp-popular-searches{margin-top:16px}.sp-popular-searches a{padding:6px 9px}
  .sp-hero-proof{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px;width:100%;margin-top:27px}
  .sp-hero-proof>div,.sp-hero-proof>div:last-child{min-width:0;margin:0;padding:12px 5px;border:1px solid rgba(255,255,255,.13)}
  .sp-hero-proof strong{font-size:20px}.sp-hero-proof span{font-size:8px;line-height:1.3}
  .sp-hero-vector--cap{left:auto;right:-15px;top:9%}.sp-hero-vector--book{left:-18px;bottom:8%}.sp-hero-vector--target{display:none}
  .sp-hero-vector-path{right:-45%;bottom:-2%;width:150%;height:32%;opacity:.42}
  .sp-hero::after{right:-42%;top:4%;width:180px;height:180px}
}

/* ================================================================
   BLOG HORIZONTAL LIST
   Consistent image-left article rows replace the uneven feature mosaic.
   ================================================================ */
.sp-editorial-grid{height:800px}
.sp-blog-desk,.sp-news-desk{min-height:0;display:grid;grid-template-rows:auto minmax(0,1fr)}
.sp-blog-grid{min-height:0;height:100%;display:grid;grid-template-columns:1fr;grid-template-rows:repeat(4,minmax(0,1fr));gap:10px}
.sp-blog-card{min-height:0;height:100%;display:grid;grid-template-columns:210px minmax(0,1fr);overflow:hidden;border:1px solid #e1e7f0;border-radius:17px;background:#fff;transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease}
.sp-blog-card:hover{transform:translateY(-2px);border-color:#c4d4ed;box-shadow:0 16px 34px rgba(7,28,62,.08)}
.sp-blog-card .sp-blog-image{height:100%;min-height:0}
.sp-blog-card .sp-blog-image img{display:block;width:100%;height:100%;object-fit:cover}
.sp-blog-card .sp-blog-body{min-width:0;min-height:0;padding:14px 17px}
.sp-blog-card .sp-blog-body h3{display:-webkit-box;margin-top:7px;overflow:hidden;font-size:16px;line-height:1.26;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sp-blog-card .sp-blog-body p{display:-webkit-box;margin-top:6px;overflow:hidden;font-size:11.5px;line-height:1.45;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sp-blog-card .sp-read-link{padding-top:7px}
.sp-news-list{min-height:0;height:100%;grid-auto-rows:minmax(0,1fr)}
.sp-news-item{min-height:0}

@media(max-width:1000px){
  .sp-editorial-grid{height:auto}
  .sp-blog-desk,.sp-news-desk{display:block}
  .sp-blog-grid{height:auto;grid-template-rows:none}
  .sp-news-list{height:auto;grid-auto-rows:auto}
  .sp-blog-card{min-height:168px;height:auto;grid-template-columns:190px minmax(0,1fr)}
  .sp-blog-card .sp-blog-image{min-height:168px}
}
@media(max-width:640px){
  .sp-blog-grid{gap:10px}
  .sp-blog-card{min-height:150px;grid-template-columns:112px minmax(0,1fr);border-radius:15px}
  .sp-blog-card .sp-blog-image{height:100%;min-height:150px}
  .sp-blog-card .sp-blog-body{padding:13px 12px}
  .sp-blog-card .sp-blog-meta{font-size:8px;gap:5px}
  .sp-blog-card .sp-blog-body h3{margin-top:7px;font-size:15px;line-height:1.25}
  .sp-blog-card .sp-blog-body p{margin-top:6px;font-size:11px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .sp-blog-card .sp-read-link{padding-top:8px;font-size:10.5px}
}

/* Radar contact clarity: one-pixel type lift with contextual icons. */
.sp-radar-contact{font-size:12px}
.sp-radar-contact a{display:inline-flex;align-items:center;gap:6px;line-height:1}
.sp-radar-contact a svg{display:block;width:13px;height:13px;flex:0 0 13px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sp-radar-contact .sp-radar-contact-phone{color:#76e5db}
.sp-radar-contact .sp-radar-contact-email{color:#ff9878}
.sp-radar-contact .sp-radar-contact-phone:hover,.sp-radar-contact .sp-radar-contact-email:hover{color:#fff}

/* Portal Login is a direct link until its final destination is available. */
.sp-login-trigger{text-decoration:none}

/* Clear study-abroad cue placed beside the hero's existing route line. */
.sp-hero-abroad-mark{position:absolute;right:8%;bottom:22%;width:72px;height:82px;display:grid;place-items:center;padding:9px 10px 7px;border:1px solid rgba(120,233,223,.38);border-radius:21px;background:rgba(7,28,62,.5);color:#7aebe1;box-shadow:0 16px 38px rgba(0,7,27,.22),inset 0 0 24px rgba(120,233,223,.06);backdrop-filter:blur(10px);transform:rotate(5deg);animation:sp-abroad-mark-glow 3.6s ease-in-out infinite}
.sp-hero-abroad-mark svg{width:34px;height:42px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.sp-hero-abroad-mark small{color:#dffcf9;font-size:7px;font-weight:900;line-height:1;text-transform:uppercase;letter-spacing:.14em}
@keyframes sp-abroad-mark-glow{0%,100%{opacity:.76;box-shadow:0 16px 38px rgba(0,7,27,.22),0 0 0 rgba(120,233,223,0)}50%{opacity:1;box-shadow:0 18px 42px rgba(0,7,27,.28),0 0 20px rgba(120,233,223,.22)}}
@media(max-width:1000px){.sp-hero-abroad-mark{right:4%;bottom:17%;transform:scale(.88) rotate(5deg)}}
@media(max-width:640px){.sp-hero-abroad-mark{display:none}}
@media(prefers-reduced-motion:reduce){.sp-hero-abroad-mark{animation:none!important}}

/* ================================================================
   STUDY ABROAD PASSPORT BOARD
   A route-led destination listing distinct from the site's card grids.
   ================================================================ */
.sp-abroad-home{position:relative;overflow:hidden;background:linear-gradient(180deg,#f4f8ff 0%,#fff 100%)}
.sp-abroad-home::before{content:"";position:absolute;right:-160px;top:90px;width:390px;height:390px;border:1px solid rgba(18,87,229,.08);border-radius:50%;box-shadow:0 0 0 65px rgba(18,87,229,.025),0 0 0 130px rgba(18,87,229,.018);pointer-events:none}
.sp-abroad-head-side{max-width:455px;display:grid;justify-items:end;gap:16px}
.sp-abroad-head-side>p{color:var(--sp-muted);font-size:15.5px;line-height:1.65;text-align:right}
.sp-abroad-board{position:relative;display:grid;grid-template-columns:minmax(360px,.72fr) minmax(0,1.28fr);overflow:hidden;border:1px solid rgba(255,255,255,.15);border-radius:32px;background:#071c3e;box-shadow:0 34px 80px rgba(7,28,62,.18)}
.sp-abroad-intro{position:relative;isolation:isolate;min-height:460px;padding:32px 40px;overflow:hidden;color:#fff;background:radial-gradient(circle at 85% 16%,rgba(39,195,184,.2),transparent 30%),linear-gradient(145deg,#071c3e 0%,#0b3679 72%,#174e9c 100%)}
.sp-abroad-intro::before{content:"";position:absolute;inset:0;z-index:-2;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(135deg,#000,transparent 82%)}
.sp-abroad-map{position:absolute;z-index:-1;right:-38px;top:-24px;width:315px;height:275px;fill:none;stroke:rgba(255,255,255,.12);stroke-width:1.2}
.sp-abroad-map .sp-abroad-flight-line{stroke:#69dfd6;stroke-width:1.7;stroke-dasharray:7 9}.sp-abroad-map .sp-abroad-plane{stroke:#77e8df;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:drop-shadow(0 0 5px rgba(105,223,214,.45))}
.sp-abroad-kicker{display:inline-flex;align-items:center;gap:9px;padding:8px 11px;border:1px solid rgba(255,255,255,.15);border-radius:999px;background:rgba(255,255,255,.08);color:#dbe8ff;font-size:10.5px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;backdrop-filter:blur(9px)}
.sp-abroad-kicker i{width:7px;height:7px;border-radius:50%;background:#6fe3da;box-shadow:0 0 0 4px rgba(111,227,218,.12)}
.sp-abroad-intro h3{max-width:390px;margin:40px 0 12px;font-family:'Manrope',sans-serif;font-size:clamp(38px,3.5vw,53px);line-height:1.02;letter-spacing:-.05em}
.sp-abroad-intro>p{max-width:430px;color:#b9cae6;font-size:15px;line-height:1.65}
.sp-abroad-mini-route{position:relative;display:grid;gap:0;margin:16px 0 18px;padding-left:3px}
.sp-abroad-mini-route::before{content:"";position:absolute;left:17px;top:18px;bottom:18px;border-left:1px dashed rgba(111,227,218,.42)}
.sp-abroad-mini-route>span{position:relative;display:flex;align-items:center;gap:12px;min-height:33px;color:#e6edfa;font-size:12px}
.sp-abroad-mini-route b{position:relative;z-index:1;display:grid;place-items:center;width:29px;height:29px;border:1px solid rgba(111,227,218,.32);border-radius:9px;background:#0a2a5d;color:#76e6dc;font-size:9px}
.sp-abroad-mini-route strong{font-weight:700}
.sp-abroad-cta{min-height:49px;padding:0 17px;display:inline-flex;align-items:center;gap:26px;border-radius:13px;background:#fff;color:#092653;font-size:13px;font-weight:800;text-decoration:none;box-shadow:0 13px 28px rgba(0,8,30,.2);transition:.22s ease}
.sp-abroad-cta span{color:#1257e5;font-size:18px}.sp-abroad-cta:hover{transform:translateY(-2px);background:#6fe3da}
.sp-country-route-list{padding:18px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;background:linear-gradient(135deg,#edf3fc,#f8fbff)}
.sp-country-route{position:relative;min-height:136px;padding:0 54px 0 0;display:grid;grid-template-columns:165px minmax(0,1fr);align-items:stretch;gap:15px;overflow:hidden;border:1px solid #dce6f4;border-radius:18px;background:#fff;color:var(--sp-ink);text-decoration:none;box-shadow:0 9px 25px rgba(7,28,62,.045);transition:.25s ease}
.sp-country-route::before{content:"";position:absolute;right:48px;top:11px;bottom:11px;border-left:1px dashed #d7e2f0}
.sp-country-route::after{content:"";position:absolute;right:-43px;bottom:-48px;width:100px;height:100px;border-radius:50%;background:rgba(18,87,229,.055)}
.sp-country-route:hover{transform:translateY(-4px);border-color:#abc5f7;box-shadow:0 19px 42px rgba(18,87,229,.11)}
.sp-country-stamp{position:relative;display:grid;place-items:center;width:48px;height:48px;border-radius:15px;background:#eaf1ff;color:#1257e5;font-family:'Manrope',sans-serif;font-size:13px;font-weight:900;letter-spacing:.04em}
.sp-country-stamp i{position:absolute;right:5px;top:5px;width:5px;height:5px;border-radius:50%;background:#65ddd3}
.sp-country-stamp--photo{align-self:stretch;width:165px;height:100%;min-height:136px;overflow:hidden;border:0;border-right:1px solid #dce6f4;border-radius:17px 0 0 17px;background:#eaf1ff;box-shadow:none}
.sp-country-stamp--photo img{position:absolute;inset:0;z-index:2;display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.sp-country-stamp--photo b{position:relative;z-index:1}
.sp-country-stamp--photo i{z-index:3;border:1px solid rgba(255,255,255,.8);box-shadow:0 2px 7px rgba(7,28,62,.2)}
.sp-country-route:hover .sp-country-stamp--photo img{transform:scale(1.06)}
.sp-country-route:nth-child(3n+2) .sp-country-stamp{background:#eafaf7;color:#078e82}.sp-country-route:nth-child(3n+2) .sp-country-stamp i{background:#ff7a45}
.sp-country-route:nth-child(3n+3) .sp-country-stamp{background:#fff1eb;color:#d8532f}.sp-country-route:nth-child(3n+3) .sp-country-stamp i{background:#765be2}
.sp-country-route-copy{min-width:0;display:flex;flex-direction:column;justify-content:center;padding:15px 0}.sp-country-route-copy strong,.sp-country-route-copy small,.sp-country-route-copy em{display:block}
.sp-country-route-copy strong{font-family:'Manrope',sans-serif;font-size:18.5px;line-height:1.18;letter-spacing:-.03em}
.sp-country-route-copy small{display:-webkit-box;margin-top:7px;overflow:hidden;color:#6e7e94;font-size:12px;line-height:1.42;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sp-country-route-copy em{margin-top:9px;color:#1257e5;font-size:10px;font-style:normal;font-weight:800;text-transform:uppercase;letter-spacing:.065em}
.sp-country-go{position:absolute;z-index:1;right:14px;top:50%;display:grid;place-items:center;width:27px;height:27px;margin-top:-14px;border-radius:9px;background:#eef4ff;color:#1257e5;font-size:13px;transition:.22s ease}
.sp-country-route:hover .sp-country-go{background:#1257e5;color:#fff;transform:rotate(45deg)}

@media(max-width:1000px){
  .sp-abroad-head-side{max-width:none;justify-items:start}.sp-abroad-head-side>p{text-align:left}
  .sp-abroad-board{grid-template-columns:1fr}.sp-abroad-intro{min-height:470px;border-bottom:1px dashed rgba(255,255,255,.16)}
  .sp-country-route-list{border-radius:0 0 31px 31px}
}
@media(max-width:640px){
  .sp-abroad-home::before{display:none}.sp-abroad-head-side{gap:13px}
  .sp-abroad-board{border-radius:24px}.sp-abroad-intro{min-height:auto;padding:31px 22px 33px}.sp-abroad-map{right:-105px;top:-15px;width:285px;opacity:.72}
  .sp-abroad-kicker{font-size:9px}.sp-abroad-intro h3{margin:57px 0 14px;font-size:39px}.sp-abroad-intro>p{font-size:13.5px}
  .sp-abroad-mini-route{margin:21px 0 24px}.sp-abroad-mini-route>span{font-size:11.5px}.sp-abroad-cta{width:100%;justify-content:space-between}
  .sp-country-route-list{grid-template-columns:1fr;padding:11px;gap:9px;border-radius:0 0 23px 23px}
  .sp-country-route{min-height:124px;padding:0 48px 0 0;grid-template-columns:118px minmax(0,1fr);gap:10px;border-radius:15px}
  .sp-country-route::before{right:42px}.sp-country-stamp{width:44px;height:44px;border-radius:13px;font-size:12px}.sp-country-stamp--photo{width:118px;height:100%;min-height:124px;border-radius:14px 0 0 14px}
  .sp-country-route-copy{padding:13px 0}.sp-country-route-copy strong{font-size:17px}.sp-country-route-copy small{margin-top:6px;font-size:11.5px}.sp-country-route-copy em{margin-top:7px;font-size:9px}
  .sp-country-go{right:10px;width:25px;height:25px}
}

/* ================================================================
   INNER PAGE — COURSE UNIVERSE
   Scoped redesign: theme-led hero, connected search and readable cards.
   ================================================================ */
.sp-course-page{overflow:hidden;background:#f4f7fc;color:#071d42}
.sp-inner-container{width:min(1380px,calc(100% - 80px));margin-inline:auto}
.sp-course-hero{position:relative;isolation:isolate;min-height:565px;overflow:hidden;color:#fff;background:radial-gradient(circle at 13% 8%,rgba(42,103,230,.66),transparent 34%),radial-gradient(circle at 91% 12%,rgba(29,197,184,.25),transparent 25%),linear-gradient(128deg,#061a3d 0%,#0a3678 54%,#172568 100%)}
.sp-course-hero::after{content:"";position:absolute;z-index:-2;right:-12%;bottom:-48%;width:620px;height:620px;border:1px solid rgba(116,229,219,.18);border-radius:50%;box-shadow:0 0 0 75px rgba(116,229,219,.035),0 0 0 150px rgba(116,229,219,.025)}
.sp-course-hero-grid{position:absolute;z-index:-3;inset:0;background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(105deg,#000 0%,rgba(0,0,0,.8) 58%,transparent 100%)}
.sp-course-hero-orb{position:absolute;z-index:-2;border-radius:38%;filter:blur(.2px);transform:rotate(31deg);pointer-events:none}
.sp-course-hero-orb--one{left:36%;top:-150px;width:330px;height:330px;background:linear-gradient(145deg,rgba(86,223,214,.11),rgba(34,92,225,.04))}
.sp-course-hero-orb--two{right:8%;bottom:-205px;width:390px;height:390px;background:linear-gradient(145deg,rgba(255,103,83,.1),rgba(78,83,220,.11))}
.sp-course-float-icon{position:absolute;z-index:-1;display:grid;place-items:center;width:76px;height:76px;border:1px solid rgba(255,255,255,.12);border-radius:24px;background:rgba(255,255,255,.045);color:rgba(117,231,222,.58);backdrop-filter:blur(4px);transform:rotate(-8deg)}
.sp-course-float-icon svg{width:36px;height:36px;fill:none;stroke:currentColor;stroke-width:1.45;stroke-linecap:round;stroke-linejoin:round}
.sp-course-float-icon--book{left:5%;bottom:13%}
.sp-course-float-icon--cap{right:3.5%;top:17%;color:rgba(255,151,117,.55);transform:rotate(9deg)}
.sp-course-hero-layout{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(350px,.72fr);align-items:center;gap:76px;padding:70px 0 106px}
.sp-course-hero-copy{min-width:0;max-width:800px}
.sp-course-kicker{display:inline-flex;align-items:center;gap:10px;margin-bottom:22px;padding:9px 13px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.075);color:#d9e8ff;font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.12em;backdrop-filter:blur(9px)}
.sp-course-kicker i{width:8px;height:8px;border-radius:50%;background:#67e0d6;box-shadow:0 0 0 5px rgba(103,224,214,.12),0 0 16px rgba(103,224,214,.7)}
.sp-course-hero h1{max-width:780px;margin:0;font-family:'Manrope',sans-serif;font-size:clamp(52px,5.2vw,78px);font-weight:750;line-height:.99;letter-spacing:-.062em}
.sp-course-hero h1 em{display:block;background:linear-gradient(90deg,#67e4d8,#91b9ff 72%);-webkit-background-clip:text;background-clip:text;color:transparent;font-style:normal}
.sp-course-hero-lead{max-width:700px;margin:22px 0 0;color:#c3d3eb;font-size:17px;line-height:1.7}
.sp-course-popular{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:25px}
.sp-course-popular>span{margin-right:2px;color:#8fa7c9;font-size:12px;font-weight:750}
.sp-course-popular a{padding:7px 11px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.055);color:#e2edff;font-size:12px;text-decoration:none;transition:.2s ease}
.sp-course-popular a:hover{border-color:#66ded5;background:rgba(102,222,213,.15);color:#fff;transform:translateY(-2px)}
.sp-course-hero-stats{display:flex;align-items:stretch;margin-top:32px}
.sp-course-hero-stat{min-width:145px;padding:0 28px;border-left:1px solid rgba(255,255,255,.16)}
.sp-course-hero-stat:first-child{padding-left:0;border-left:0}
.sp-course-hero-stat strong,.sp-course-hero-stat span{display:block}
.sp-course-hero-stat strong{font-family:'Manrope',sans-serif;font-size:27px;line-height:1;color:#fff;letter-spacing:-.04em}
.sp-course-hero-stat span{margin-top:7px;color:#91a8ca;font-size:9.5px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.sp-course-compass{position:relative;min-width:0;padding:25px;border:1px solid rgba(255,255,255,.16);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055));box-shadow:0 30px 70px rgba(0,10,38,.3);backdrop-filter:blur(14px)}
.sp-course-compass::before{content:"";position:absolute;left:37px;top:96px;bottom:112px;border-left:1px dashed rgba(104,225,216,.34)}
.sp-course-compass-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.12)}
.sp-course-compass-head small,.sp-course-compass-head strong{display:block}.sp-course-compass-head small{color:#7fe2da;font-size:9.5px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.sp-course-compass-head strong{max-width:245px;margin-top:5px;font-family:'Manrope',sans-serif;font-size:18px;line-height:1.25}
.sp-course-compass-mark{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:#69e1d6;color:#07234c;font-size:20px;font-weight:900;box-shadow:0 10px 25px rgba(105,225,214,.23)}
.sp-course-compass-steps{display:grid;gap:5px;padding:14px 0}
.sp-course-compass-step{position:relative;display:grid;grid-template-columns:30px 1fr;align-items:center;gap:12px;padding:9px 0}
.sp-course-compass-step b{position:relative;z-index:1;display:grid;place-items:center;width:30px;height:30px;border:1px solid rgba(104,225,216,.3);border-radius:9px;background:#0a316c;color:#7ce6dc;font-size:9px}
.sp-course-compass-step span{font-size:13px;font-weight:700}.sp-course-compass-step small{display:block;margin-top:3px;color:#93a9c8;font-size:10.5px;font-weight:500}
.sp-course-compass-cta{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px 17px;border-radius:15px;background:#fff;color:#09234c;text-decoration:none;box-shadow:0 15px 30px rgba(0,8,30,.2);transition:.22s ease}
.sp-course-compass-cta strong{font-size:13px}.sp-course-compass-cta span{color:#1459e6;font-size:19px}.sp-course-compass-cta:hover{background:#6ce1d7;transform:translateY(-2px)}
.sp-course-catalog{position:relative;padding:0 0 92px;background:radial-gradient(circle at 92% 8%,rgba(36,196,184,.075),transparent 20%),linear-gradient(180deg,#eef4fc 0%,#f8faff 44%,#fff 100%)}
.sp-course-search-deck{position:relative;z-index:8;margin:-48px auto 64px;padding:14px;border:1px solid rgba(152,176,212,.36);border-radius:24px;background:rgba(255,255,255,.96);box-shadow:0 26px 60px rgba(7,29,66,.14);backdrop-filter:blur(13px)}
.sp-course-search-deck .sp-course-search-row{display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:10px;max-width:none}
.sp-course-search-field{position:relative;display:flex;align-items:center;min-height:58px;padding:0 14px 0 49px;border:1px solid #dde6f3;border-radius:16px;background:#f7f9fd;transition:.2s ease}
.sp-course-search-field:focus-within{border-color:#76a0ef;background:#fff;box-shadow:0 0 0 4px rgba(18,87,229,.08)}
.sp-course-search-field>svg{position:absolute;left:18px;width:20px;height:20px;fill:none;stroke:#7186a5;stroke-width:1.8;stroke-linecap:round}
.sp-course-search-field .college-search-input{width:100%;height:56px;padding:0;border:0;outline:0;background:transparent;color:#09234c;font-size:15px}
.sp-course-search-field .college-search-input::placeholder{color:#8a9bb2}
.sp-course-search-field .college-search-clear{right:12px}
.sp-course-search-submit,.sp-course-filter-toggle{min-height:58px;display:inline-flex;align-items:center;justify-content:center;gap:11px;padding:0 20px;border:0;border-radius:16px;font-size:13px;font-weight:800;cursor:pointer;transition:.22s ease}
.sp-course-search-submit{min-width:128px;background:linear-gradient(135deg,#ff6c59,#ff565e);color:#fff;box-shadow:0 12px 25px rgba(255,91,87,.25)}
.sp-course-search-submit:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(255,91,87,.32)}
.sp-course-search-submit svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sp-course-filter-toggle{position:relative;min-width:135px;border:1px solid #dbe5f3;background:#091f47;color:#fff}
.sp-course-filter-toggle:hover,.sp-course-filter-toggle.is-active{border-color:#1459e6;background:#1459e6}
.sp-course-filter-toggle[aria-expanded="true"]{border-color:#1459e6;background:#1459e6;color:#fff}
.sp-course-filter-toggle svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sp-course-filter-toggle .college-filter-count{position:static;margin-left:-3px;background:#68e1d6;color:#08234c}
.sp-course-search-deck .college-filter-chips{margin:12px 3px 1px}
.sp-course-filter-panel{top:calc(100% + 10px);padding:22px;border:1px solid #dce6f3;border-radius:22px;background:#fff;box-shadow:0 24px 55px rgba(7,29,66,.17)}
.sp-course-filter-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:19px;padding-bottom:15px;border-bottom:1px solid #e5ebf4}
.sp-course-filter-heading strong{display:block;font-family:'Manrope',sans-serif;font-size:18px}.sp-course-filter-heading small{display:block;margin-top:4px;color:#75869d;font-size:11.5px}
.sp-course-filter-panel .college-filter-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:13px}
.sp-course-filter-panel .college-filter-field label{margin-bottom:7px;color:#647892;font-size:9.5px;letter-spacing:.09em}
.sp-course-filter-panel .college-filter-field select,.sp-course-filter-panel .college-filter-field input{height:43px;border-radius:11px;background:#f7f9fd;font-size:12px}
.sp-course-results-head{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:30px;margin-bottom:27px}
.sp-course-results-kicker{display:flex;align-items:center;gap:10px;margin-bottom:10px;color:#1459e6;font-size:10.5px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}
.sp-course-results-kicker::before{content:"";width:22px;border-top:2px solid #ff6b57}
.sp-course-results-head h2{margin:0;font-family:'Manrope',sans-serif;font-size:clamp(34px,3.2vw,47px);line-height:1.08;letter-spacing:-.045em}
.sp-course-results-head .js-listing-title-count::after,.sp-list-results-head .js-listing-title-count::after{content:"+"}
.sp-course-results-note{max-width:370px;color:#687b96;font-size:13.5px;line-height:1.58;text-align:right}
.sp-course-results-note strong{color:#09234c}
.sp-course-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.sp-course-list-card{position:relative;display:grid!important;grid-template-columns:205px minmax(0,1fr);min-height:286px;overflow:hidden;border:1px solid #dce5f2!important;border-radius:22px!important;background:#fff;box-shadow:0 11px 30px rgba(7,29,66,.055)!important;transition:.26s ease}
.sp-course-list-card:hover{border-color:#a9c3ee!important;transform:translateY(-5px);box-shadow:0 23px 46px rgba(7,29,66,.11)!important}
.sp-course-card-media{position:relative;width:100%!important;min-width:0;min-height:100%;overflow:hidden;aspect-ratio:auto!important;background:linear-gradient(150deg,#dce9ff,#c5daf9)}
.sp-course-card-media::after{content:"";position:absolute;inset:35% 0 0;background:linear-gradient(transparent,rgba(2,17,43,.65))}
.sp-course-card-media img{width:100%;height:100%;min-height:286px;display:block;object-fit:cover;transition:transform .4s ease}
.sp-course-list-card:hover .sp-course-card-media img{transform:scale(1.045)}
.sp-course-card-media--fallback{display:grid;place-items:center;background:linear-gradient(145deg,#0c3d83,#152866)}
.sp-course-card-media--fallback svg{width:64px;height:64px;fill:none;stroke:rgba(116,229,219,.74);stroke-width:1.2}
.sp-course-card-tag{position:absolute;z-index:2;left:13px;top:13px;max-width:calc(100% - 26px);padding:7px 9px;border-radius:9px;background:rgba(255,255,255,.92);color:#0b2858;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.07em;box-shadow:0 5px 14px rgba(4,21,47,.14);backdrop-filter:blur(7px)}
.sp-course-card-tag::before{content:"";display:inline-block;width:6px;height:6px;margin-right:7px;border-radius:50%;background:#25bfb3}
.sp-course-card-arrow{position:absolute;z-index:3;right:13px;bottom:13px;display:grid;place-items:center;width:36px;height:36px;border-radius:12px;background:#fff;color:#1559e6;font-size:17px;box-shadow:0 8px 20px rgba(2,17,43,.2);transition:.22s ease}
.sp-course-list-card:hover .sp-course-card-arrow{background:#68e0d6;color:#07234c;transform:rotate(45deg)}
.sp-course-card-body{min-width:0;display:flex;flex-direction:column;padding:22px 22px 20px}
.sp-course-card-meta{display:flex;align-items:center;flex-wrap:wrap;gap:8px 15px;margin-bottom:9px;color:#637792;font-size:10.5px;font-weight:700}
.sp-course-card-meta span{display:inline-flex;align-items:center;gap:6px}.sp-course-card-meta svg{width:14px;height:14px;fill:none;stroke:#1459e6;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.sp-course-list-card .sp-course-card-meta{gap:7px;margin-bottom:10px}
.sp-course-list-card .sp-course-card-meta-item{min-height:27px;padding:5px 9px;border:1px solid transparent;border-radius:999px;line-height:1.2;white-space:nowrap}
.sp-course-list-card .sp-course-card-level{background:#f1f5fd;color:#46617f}
.sp-course-list-card .sp-course-card-duration{border-color:#86d8d0;background:#f0fbf9;color:#147a72}
.sp-course-list-card .sp-course-card-meta-item svg{flex:0 0 auto;stroke:currentColor}
.sp-course-card-title{margin:0;font-family:'Manrope',sans-serif;font-size:20px;font-weight:760;line-height:1.25;letter-spacing:-.027em}
.sp-course-card-title a{color:#071d42;text-decoration:none}.sp-course-card-title a:hover{color:#1459e6}
.sp-course-card-description{display:-webkit-box;margin:8px 0 0;overflow:hidden;color:#64758c;font-size:12px;line-height:1.55;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sp-course-card-facts{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.82fr);gap:9px;margin:14px 0}
.sp-course-card-fact{min-width:0;padding:9px 10px;border:1px solid #e3eaf4;border-radius:11px;background:#f8fafd}
.sp-course-card-fact small,.sp-course-card-fact strong{display:block}.sp-course-card-fact small{margin-bottom:4px;color:#8797ac;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.sp-course-card-fact strong{overflow:hidden;color:#173157;font-size:10.5px;line-height:1.35;text-overflow:ellipsis;white-space:nowrap}
.sp-course-card-actions{display:flex;align-items:center;gap:9px;margin-top:auto;padding-top:1px}
.sp-course-card-actions a,.sp-course-card-actions button{min-height:39px;display:inline-flex;align-items:center;justify-content:center;gap:12px;padding:0 14px;border-radius:11px;font-size:11px;font-weight:800;text-decoration:none;cursor:pointer;transition:.2s ease}
.sp-course-card-detail{flex:1;border:1px solid #d9e4f2;background:#fff;color:#09234c}.sp-course-card-detail:hover{border-color:#1459e6;color:#1459e6}
.sp-course-card-enquire{border:1px solid #1459e6;background:#1459e6;color:#fff}.sp-course-card-enquire:hover{background:#0a397b;transform:translateY(-1px)}
.sp-course-empty{padding:60px 25px;border:1px dashed #c9d8eb;border-radius:22px;background:rgba(255,255,255,.72);text-align:center}.sp-course-empty svg{width:45px;height:45px;fill:none;stroke:#1459e6;stroke-width:1.4}.sp-course-empty h3{margin:13px 0 5px;font-family:'Manrope',sans-serif}.sp-course-empty p{color:#73849a}
.sp-course-load-more-wrap{display:flex;justify-content:center;margin-top:28px}.sp-course-load-more{min-height:50px;display:inline-flex;align-items:center;justify-content:center;gap:14px;padding:0 24px;border:0;border-radius:13px;background:linear-gradient(135deg,#ff7048 0%,#ff4f63 100%);color:#fff;font-size:14px;font-weight:850;cursor:pointer;box-shadow:0 12px 27px rgba(255,86,77,.25);transition:.22s ease}.sp-course-load-more:hover{background:linear-gradient(135deg,#ff815e 0%,#f43f59 100%);color:#fff;transform:translateY(-2px);box-shadow:0 16px 32px rgba(255,86,77,.32)}
.sp-course-guidance{padding:0 0 90px;background:#fff}.sp-course-guidance-card{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:35px;overflow:hidden;padding:40px 44px;border-radius:27px;background:radial-gradient(circle at 85% 0,rgba(104,225,214,.2),transparent 28%),linear-gradient(125deg,#071c3e,#0b397d);color:#fff;box-shadow:0 25px 55px rgba(7,28,62,.15)}
.sp-course-guidance-card::before{content:"";position:absolute;right:22%;top:-80px;width:200px;height:200px;border:1px solid rgba(255,255,255,.08);border-radius:50%;box-shadow:0 0 0 45px rgba(255,255,255,.025)}
.sp-course-guidance-copy{position:relative;max-width:770px}.sp-course-guidance-copy small{color:#70e1d7;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.sp-course-guidance-copy h2{margin:8px 0 8px;font-family:'Manrope',sans-serif;font-size:clamp(28px,3vw,41px);line-height:1.15;letter-spacing:-.04em}.sp-course-guidance-copy p{margin:0;color:#b9cae4;font-size:14px}
.sp-course-guidance-button{position:relative;min-height:52px;display:inline-flex;align-items:center;gap:26px;padding:0 20px;border-radius:14px;background:#fff;color:#09234c;font-size:12px;font-weight:850;text-decoration:none;box-shadow:0 12px 28px rgba(0,8,30,.2);transition:.22s ease}.sp-course-guidance-button span{color:#1459e6;font-size:18px}.sp-course-guidance-button:hover{background:#69e1d6;transform:translateY(-2px)}

@media(max-width:1120px){
  .sp-inner-container{width:min(100% - 48px,1380px)}
  .sp-course-hero-layout{grid-template-columns:minmax(0,1fr) 355px;gap:38px}.sp-course-hero h1{font-size:55px}
  .sp-course-list-card{grid-template-columns:175px minmax(0,1fr)}.sp-course-card-body{padding:19px 18px 17px}.sp-course-card-title{font-size:18px}.sp-course-card-facts{grid-template-columns:1fr}.sp-course-card-fact:last-child{display:none}
  .sp-course-filter-panel .college-filter-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:900px){
  .sp-course-hero-layout{grid-template-columns:1fr;gap:38px;padding:58px 0 102px}.sp-course-hero-copy{max-width:760px}.sp-course-compass{max-width:630px}.sp-course-float-icon--cap{right:5%;top:8%}
  .sp-course-grid{grid-template-columns:1fr}.sp-course-list-card{grid-template-columns:210px minmax(0,1fr)}.sp-course-card-facts{grid-template-columns:minmax(0,1fr) minmax(0,.82fr)}.sp-course-card-fact:last-child{display:block}
  .sp-course-results-head{align-items:start}.sp-course-results-note{max-width:300px}
  .sp-course-guidance-card{padding:34px;grid-template-columns:1fr;gap:24px}.sp-course-guidance-button{justify-self:start}
}
@media(max-width:640px){
  .sp-inner-container{width:calc(100% - 32px)}
  .sp-course-hero{min-height:auto}.sp-course-hero::after{display:none}.sp-course-hero-grid{background-size:34px 34px;opacity:.72}.sp-course-hero-orb--one{left:52%;top:-110px;width:240px;height:240px}
  .sp-course-float-icon{width:58px;height:58px;border-radius:18px;opacity:.62}.sp-course-float-icon svg{width:27px;height:27px}.sp-course-float-icon--book{left:auto;right:4%;bottom:37%}.sp-course-float-icon--cap{display:none}
  .sp-course-hero-layout{gap:30px;padding:43px 0 90px}.sp-course-hero-copy,.sp-course-compass{width:100%;max-width:100%}.sp-course-kicker{margin-bottom:17px;padding:8px 11px;font-size:9px}.sp-course-hero h1{max-width:100%;font-size:42px;line-height:1.02;letter-spacing:-.055em;overflow-wrap:anywhere}.sp-course-hero-lead{margin-top:17px;font-size:14px;line-height:1.63}
  .sp-course-popular{margin-top:20px;flex-wrap:nowrap;overflow-x:auto;padding-bottom:5px;scrollbar-width:none}.sp-course-popular::-webkit-scrollbar{display:none}.sp-course-popular>span,.sp-course-popular a{flex:0 0 auto}.sp-course-popular a{font-size:11px}
  .sp-course-hero-stats{margin-top:25px}.sp-course-hero-stat{min-width:0;flex:1;padding:0 12px}.sp-course-hero-stat strong{font-size:21px}.sp-course-hero-stat span{font-size:7.5px;line-height:1.35}
  .sp-course-compass{padding:18px;border-radius:21px}.sp-course-compass::before{left:30px;top:88px;bottom:101px}.sp-course-compass-head strong{font-size:16px}.sp-course-compass-mark{width:37px;height:37px;border-radius:12px}.sp-course-compass-step{grid-template-columns:25px 1fr;gap:10px}.sp-course-compass-step b{width:25px;height:25px}.sp-course-compass-step span{font-size:12px}.sp-course-compass-step small{font-size:9.5px}.sp-course-compass-cta{padding:14px}
  .sp-course-catalog{padding-bottom:68px}.sp-course-search-deck{margin:-46px auto 48px;padding:9px;border-radius:18px}.sp-course-search-deck .sp-course-search-row{grid-template-columns:minmax(0,1fr) 52px;gap:7px}.sp-course-search-field{min-height:52px;padding-left:42px;border-radius:13px}.sp-course-search-field>svg{left:15px;width:18px}.sp-course-search-field .college-search-input{height:50px;font-size:13px}.sp-course-search-submit{grid-column:2;grid-row:1;min-width:52px;width:52px;min-height:52px;padding:0;border-radius:13px}.sp-course-search-submit span{display:none}.sp-course-filter-toggle{grid-column:1/-1;min-height:44px;border-radius:12px}
  .sp-course-filter-panel{position:fixed;inset:auto 12px 12px!important;max-height:75vh;overflow-y:auto;padding:18px;border-radius:19px}.sp-course-filter-heading{margin-bottom:14px}.sp-course-filter-panel .college-filter-grid{grid-template-columns:1fr 1fr}.sp-course-filter-panel .college-filter-actions{grid-column:1/-1}
  .sp-course-results-head{grid-template-columns:1fr;gap:12px;margin-bottom:21px}.sp-course-results-head h2{font-size:31px}.sp-course-results-note{max-width:none;font-size:12px;text-align:left}
  .sp-course-grid{gap:13px}.sp-course-list-card{grid-template-columns:1fr;min-height:0;border-radius:19px!important}.sp-course-card-media{height:185px;min-height:185px}.sp-course-card-media img{min-height:185px}.sp-course-card-body{padding:18px 17px}.sp-course-card-title{font-size:18px}.sp-course-card-description{font-size:11.5px}.sp-course-card-facts{grid-template-columns:1fr 1fr;margin:12px 0}.sp-course-card-actions a,.sp-course-card-actions button{padding:0 12px}.sp-course-card-enquire{white-space:nowrap}
  .sp-course-guidance{padding-bottom:65px}.sp-course-guidance-card{padding:28px 23px;border-radius:22px}.sp-course-guidance-copy h2{font-size:28px}.sp-course-guidance-copy p{font-size:12.5px}.sp-course-guidance-button{width:100%;justify-content:space-between}
}
@media(max-width:390px){.sp-course-filter-panel .college-filter-grid{grid-template-columns:1fr}.sp-course-card-facts{grid-template-columns:1fr}.sp-course-card-fact:last-child{display:none}.sp-course-card-actions{align-items:stretch;flex-direction:column}.sp-course-card-actions a,.sp-course-card-actions button{width:100%}}
@media(prefers-reduced-motion:reduce){.sp-course-page *{scroll-behavior:auto!important}.sp-course-list-card,.sp-course-card-media img,.sp-course-search-submit,.sp-course-guidance-button{transition:none!important}}

/* Course page template bindings. */
.sp-course-hero-icon{position:absolute;z-index:-1;display:grid;place-items:center;width:76px;height:76px;border:1px solid rgba(255,255,255,.12);border-radius:24px;background:rgba(255,255,255,.045);color:rgba(117,231,222,.58);backdrop-filter:blur(4px);transform:rotate(-8deg)}
.sp-course-hero-icon svg{display:block;width:36px;height:36px;fill:none;stroke:currentColor;stroke-width:1.45;stroke-linecap:round;stroke-linejoin:round}
.sp-course-hero-icon--book{left:5%;bottom:13%}.sp-course-hero-icon--cap{right:3.5%;top:17%;color:rgba(255,151,117,.55);transform:rotate(9deg)}
.sp-course-hero-copy>p{max-width:700px;margin:22px 0 0;color:#c3d3eb;font-size:17px;line-height:1.7}
.sp-course-hero-chips{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:25px}.sp-course-hero-chips>span{margin-right:2px;color:#8fa7c9;font-size:12px;font-weight:750}.sp-course-hero-chips a{padding:7px 11px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.055);color:#e2edff;font-size:12px;text-decoration:none;transition:.2s ease}.sp-course-hero-chips a:hover{border-color:#66ded5;background:rgba(102,222,213,.15);color:#fff;transform:translateY(-2px)}
.sp-course-hero-stats>div{min-width:145px;padding:0 28px;border-left:1px solid rgba(255,255,255,.16)}.sp-course-hero-stats>div:first-child{padding-left:0;border-left:0}.sp-course-hero-stats strong,.sp-course-hero-stats span{display:block}.sp-course-hero-stats strong{font-family:'Manrope',sans-serif;font-size:27px;line-height:1;color:#fff;letter-spacing:-.04em}.sp-course-hero-stats span{margin-top:7px;color:#91a8ca;font-size:9.5px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.sp-course-compass-head{align-items:center}.sp-course-compass-mark svg{display:block;width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.5}.sp-course-compass-head small{display:block;color:#7fe2da;font-size:9.5px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.sp-course-compass-head h2{max-width:260px;margin:5px 0 0;font-family:'Manrope',sans-serif;font-size:18px;line-height:1.25;letter-spacing:-.02em}
.sp-course-compass-line{height:3px;margin:15px 0 5px;overflow:hidden;border-radius:9px;background:rgba(255,255,255,.09)}.sp-course-compass-line span{display:block;width:46%;height:100%;background:linear-gradient(90deg,#65ded5,#80a8ff,#ff765b)}
.sp-course-compass-steps{list-style:none;margin:0;padding:8px 0 14px}.sp-course-compass-steps li{position:relative;display:grid;grid-template-columns:30px minmax(0,1fr) auto;align-items:center;gap:12px;padding:9px 0}.sp-course-compass-steps li>b{position:relative;z-index:1;display:grid;place-items:center;width:30px;height:30px;border:1px solid rgba(104,225,216,.3);border-radius:9px;background:#0a316c;color:#7ce6dc;font-size:9px}.sp-course-compass-steps li small,.sp-course-compass-steps li strong,.sp-course-compass-steps li span{display:block}.sp-course-compass-steps li small{color:#7f96b8;font-size:8px;font-weight:800;letter-spacing:.08em}.sp-course-compass-steps li strong{margin-top:2px;font-size:12.5px}.sp-course-compass-steps li span{margin-top:2px;color:#93a9c8;font-size:10px;line-height:1.35}.sp-course-compass-steps li>i{color:#6ee2d8;font-size:12px;font-style:normal}.sp-course-compass-cta{width:100%;border:0;cursor:pointer;font-family:inherit}
.sp-course-search-deck .sp-course-search-row{grid-template-columns:minmax(0,1fr) auto}.sp-course-search-field{padding-right:145px}.sp-course-search-field .listing-search-icon{position:absolute;left:18px;top:50%;display:grid;place-items:center;width:20px;height:20px;transform:translateY(-50%)}.sp-course-search-field .listing-search-icon svg{display:block;width:20px;height:20px;fill:none;stroke:#7186a5;stroke-width:1.8;stroke-linecap:round}.sp-course-search-field .listing-search-input{width:100%;height:56px;padding:0;border:0;outline:0;background:transparent;color:#09234c;font-size:15px}.sp-course-search-field .listing-search-clear{right:139px}.sp-course-search-field .sp-course-search-submit{position:absolute;right:5px;top:5px;min-height:48px}
.sp-course-filter-panel .sp-course-filter-panel-head{display:flex;align-items:flex-end;justify-content:space-between;gap:25px;margin-bottom:18px;padding-bottom:15px;border-bottom:1px solid #e5ebf4}.sp-course-filter-panel-head small,.sp-course-filter-panel-head strong{display:block}.sp-course-filter-panel-head small{color:#1459e6;font-size:9px;font-weight:850;letter-spacing:.1em}.sp-course-filter-panel-head strong{margin-top:4px;font-family:'Manrope',sans-serif;font-size:18px}.sp-course-filter-panel-head>span{color:#75869d;font-size:11px}
.sp-course-filter-panel .college-filter-field>span,.sp-course-filter-panel .course-fee-field>span{display:block;margin-bottom:7px;color:#647892;font-size:9.5px;font-weight:800;text-transform:uppercase;letter-spacing:.09em}.sp-course-filter-panel .college-filter-field select,.sp-course-filter-panel .course-fee-field input{height:43px;border:1px solid #dce5f2;border-radius:11px;background:#f7f9fd;color:#173157;font-size:12px}.sp-course-filter-panel .course-fee-inputs{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:7px}.sp-course-filter-panel .course-fee-inputs i{color:#8393a8;font-size:10px;font-style:normal}.sp-course-filter-panel .college-filter-actions{display:flex;align-items:center;justify-content:flex-end;gap:9px;margin-top:18px;padding-top:16px;border-top:1px solid #e5ebf4}.sp-course-filter-panel .college-filter-reset,.sp-course-filter-apply{min-height:42px;padding:0 15px;border-radius:11px;font-size:11px;font-weight:800;cursor:pointer}.sp-course-filter-panel .college-filter-reset{border:1px solid #d9e3f0;background:#fff;color:#52677f}.sp-course-filter-apply{border:1px solid #1459e6;background:#1459e6;color:#fff}.sp-course-filter-apply span{margin-left:12px}
.sp-course-section-kicker{display:flex;align-items:center;gap:10px;margin-bottom:10px;color:#1459e6;font-size:10.5px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.sp-course-section-kicker::before{content:"";width:22px;border-top:2px solid #ff6b57}.sp-course-results-note{display:flex;align-items:center;justify-content:flex-end;gap:11px}.sp-course-results-note>i{width:8px;height:8px;border-radius:50%;background:#29beb2;box-shadow:0 0 0 5px rgba(41,190,178,.1)}.sp-course-results-note>span{display:block}.sp-course-results-note strong{display:block;margin-bottom:3px}
.sp-course-card-overlay{position:absolute;inset:35% 0 0;background:linear-gradient(transparent,rgba(2,17,43,.65))}.sp-course-list-card .course-card-desc{display:-webkit-box;margin:8px 0 0;overflow:hidden;color:#64758c;font-size:12px;line-height:1.55;-webkit-line-clamp:2;-webkit-box-orient:vertical}.sp-course-list-card .sp-course-card-facts>div{min-width:0;padding:9px 10px;border:1px solid #e3eaf4;border-radius:11px;background:#f8fafd}.sp-course-list-card .sp-course-card-facts small,.sp-course-list-card .sp-course-card-facts strong{display:block}.sp-course-list-card .sp-course-card-facts small{margin-bottom:4px;color:#8797ac;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.sp-course-list-card .sp-course-card-facts strong{overflow:hidden;color:#173157;font-size:10.5px;line-height:1.35;text-overflow:ellipsis;white-space:nowrap}.sp-course-list-card .sp-course-view-btn,.sp-course-list-card .sp-course-enquire-btn{min-height:39px;display:inline-flex;align-items:center;justify-content:center;gap:12px;padding:0 14px;border-radius:11px;font-size:11px;font-weight:800;text-decoration:none;cursor:pointer;transition:.2s ease}.sp-course-list-card .sp-course-view-btn{flex:1;border:1px solid #d9e4f2;background:#fff;color:#09234c}.sp-course-list-card .sp-course-view-btn:hover{border-color:#1459e6;color:#1459e6}.sp-course-list-card .sp-course-enquire-btn{border:1px solid #1459e6;background:#1459e6;color:#fff}.sp-course-list-card .sp-course-enquire-btn:hover{background:#0a397b;transform:translateY(-1px)}
.sp-course-guidance-inner{position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.62fr) auto;align-items:center;gap:35px;overflow:hidden;padding:40px 44px;border-radius:27px;background:radial-gradient(circle at 85% 0,rgba(104,225,214,.2),transparent 28%),linear-gradient(125deg,#071c3e,#0b397d);color:#fff;box-shadow:0 25px 55px rgba(7,28,62,.15)}.sp-course-guidance-inner::before{content:"";position:absolute;right:22%;top:-80px;width:200px;height:200px;border:1px solid rgba(255,255,255,.08);border-radius:50%;box-shadow:0 0 0 45px rgba(255,255,255,.025)}.sp-course-guidance-inner>div,.sp-course-guidance-inner>p,.sp-course-guidance-inner>button{position:relative}.sp-course-guidance-inner>div span{color:#70e1d7;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.sp-course-guidance-inner h2{margin:8px 0 0;font-family:'Manrope',sans-serif;font-size:clamp(27px,2.5vw,38px);line-height:1.15;letter-spacing:-.04em}.sp-course-guidance-inner>p{margin:0;color:#b9cae4;font-size:13px;line-height:1.6}.sp-course-guidance-inner>button{min-height:52px;display:inline-flex;align-items:center;gap:23px;padding:0 19px;border:0;border-radius:14px;background:#fff;color:#09234c;font-family:inherit;font-size:12px;font-weight:850;white-space:nowrap;cursor:pointer;box-shadow:0 12px 28px rgba(0,8,30,.2);transition:.22s ease}.sp-course-guidance-inner>button span{color:#1459e6;font-size:18px}.sp-course-guidance-inner>button:hover{background:#69e1d6;transform:translateY(-2px)}
@media(max-width:1120px){.sp-course-guidance-inner{grid-template-columns:1fr auto}.sp-course-guidance-inner>p{grid-column:1/-1;grid-row:2}}
@media(max-width:900px){.sp-course-guidance-inner{grid-template-columns:1fr}.sp-course-guidance-inner>p{grid-column:auto;grid-row:auto}.sp-course-guidance-inner>button{justify-self:start}.sp-course-hero-icon--cap{right:5%;top:8%}}
@media(max-width:640px){.sp-course-hero-icon{width:58px;height:58px;border-radius:18px;opacity:.62}.sp-course-hero-icon svg{width:27px;height:27px}.sp-course-hero-icon--book{left:auto;right:4%;bottom:37%}.sp-course-hero-icon--cap{display:none}.sp-course-hero-copy>p{margin-top:17px;font-size:14px;line-height:1.63}.sp-course-hero-chips{margin-top:20px;flex-wrap:nowrap;overflow-x:auto;padding-bottom:5px;scrollbar-width:none}.sp-course-hero-chips::-webkit-scrollbar{display:none}.sp-course-hero-chips>span,.sp-course-hero-chips a{flex:0 0 auto}.sp-course-hero-chips a{font-size:11px}.sp-course-hero-stats>div{min-width:0;flex:1;padding:0 12px}.sp-course-hero-stats>div strong{font-size:21px}.sp-course-hero-stats>div span{font-size:7.5px;line-height:1.35}.sp-course-compass::before{display:none}.sp-course-compass-steps li{grid-template-columns:25px minmax(0,1fr) auto;gap:10px}.sp-course-compass-steps li>b{width:25px;height:25px}.sp-course-search-field{padding-right:59px}.sp-course-search-field .listing-search-clear{right:57px}.sp-course-search-field .sp-course-search-submit{right:4px;top:4px;width:44px;min-width:44px;min-height:44px;padding:0}.sp-course-search-field .sp-course-search-submit{font-size:0}.sp-course-search-field .sp-course-search-submit span{display:block;font-size:16px}.sp-course-filter-toggle{width:100%;min-width:100%;padding:0 16px}.sp-course-filter-toggle>span:not(.college-filter-count){display:inline}.sp-course-filter-panel{position:absolute!important;inset:auto 0 auto!important;top:calc(100% + 8px)!important;max-height:none;overflow:visible}.sp-course-filter-panel .sp-course-filter-panel-head{align-items:flex-start;flex-direction:column;gap:5px}.sp-course-filter-panel .college-filter-actions{position:static;margin:14px 0 0;padding:14px 0 0;background:#fff}.sp-course-guidance-inner{padding:28px 23px;border-radius:22px}.sp-course-guidance-inner h2{font-size:28px}.sp-course-guidance-inner>p{font-size:12.5px}.sp-course-guidance-inner>button{width:100%;justify-content:space-between}.sp-course-list-card .sp-course-card-facts{grid-template-columns:1fr 1fr}.sp-course-list-card .sp-course-enquire-btn{white-space:nowrap}}

/* ================================================================
   INNER DISCOVERY SYSTEM — COLLEGES, COURSES AND EXAMS
   ================================================================ */
.sp-list-page,.sp-detail-page{overflow:hidden;background:#f6f9fd;color:#071d42}
.sp-list-hero,.sp-detail-hero{position:relative;isolation:isolate;overflow:hidden;color:#fff;background:radial-gradient(circle at 12% 4%,rgba(37,96,220,.62),transparent 34%),radial-gradient(circle at 92% 10%,rgba(32,198,185,.26),transparent 25%),linear-gradient(128deg,#061a3d,#0a397d 56%,#172568)}
.sp-list-grid-pattern,.sp-detail-grid-pattern{position:absolute;z-index:-2;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(108deg,#000,rgba(0,0,0,.72) 65%,transparent)}
.sp-list-hero::after,.sp-detail-hero::after{content:"";position:absolute;z-index:-1;right:-170px;bottom:-300px;width:600px;height:600px;border:1px solid rgba(111,227,218,.16);border-radius:50%;box-shadow:0 0 0 75px rgba(111,227,218,.035),0 0 0 150px rgba(111,227,218,.022)}
.sp-list-hero-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(370px,.74fr);align-items:center;gap:70px;padding:70px 0 108px}
.sp-list-hero-copy{min-width:0}.sp-detail-kicker{display:inline-flex;align-items:center;gap:10px;margin-bottom:20px;padding:8px 12px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.075);color:#dce9fc;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.115em;backdrop-filter:blur(8px)}.sp-detail-kicker i{width:7px;height:7px;border-radius:50%;background:#68e1d6;box-shadow:0 0 0 5px rgba(104,225,214,.12),0 0 15px rgba(104,225,214,.65)}
.sp-list-hero h1,.sp-detail-hero h1{margin:0;font-family:'Manrope',sans-serif;font-size:clamp(49px,4.8vw,72px);font-weight:760;line-height:1;letter-spacing:-.06em}.sp-list-hero h1 em{display:block;background:linear-gradient(90deg,#6de4da,#96b9ff);-webkit-background-clip:text;background-clip:text;color:transparent;font-style:normal}.sp-list-hero-copy>p,.sp-detail-hero-copy>p{max-width:715px;margin:21px 0 0;color:#c3d3eb;font-size:16px;line-height:1.68}.sp-list-quick-links,.sp-exam-hero-pills{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:25px}.sp-list-quick-links>span{margin-right:2px;color:#8fa7c9;font-size:11px;font-weight:750}.sp-list-quick-links a,.sp-exam-hero-pills span{padding:7px 11px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.055);color:#e5efff;font-size:11px;text-decoration:none;transition:.2s}.sp-list-quick-links a:hover{border-color:#68e1d6;background:rgba(104,225,214,.14);transform:translateY(-2px)}
.sp-college-hero-board,.sp-exam-hero-board{padding:24px;border:1px solid rgba(255,255,255,.16);border-radius:27px;background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055));box-shadow:0 30px 70px rgba(0,10,38,.3);backdrop-filter:blur(14px)}
.sp-college-board-head span,.sp-college-board-head strong{display:block}.sp-college-board-head span{color:#72e1d8;font-size:9px;font-weight:850;letter-spacing:.11em}.sp-college-board-head strong{margin-top:5px;font-family:'Manrope',sans-serif;font-size:19px}.sp-college-board-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:18px 0}.sp-college-board-grid>div{position:relative;padding:14px;border:1px solid rgba(255,255,255,.11);border-radius:14px;background:rgba(4,28,66,.24)}.sp-college-board-grid b{position:absolute;right:10px;top:9px;color:rgba(255,255,255,.18);font-family:'Manrope',sans-serif;font-size:20px}.sp-college-board-grid span,.sp-college-board-grid small{display:block}.sp-college-board-grid span{font-size:12px;font-weight:800}.sp-college-board-grid small{margin-top:5px;color:#92a9c9;font-size:9.5px}.sp-college-board-foot{display:flex;align-items:center;gap:10px;padding-top:15px;border-top:1px solid rgba(255,255,255,.12)}.sp-college-board-foot strong{font-family:'Manrope',sans-serif;font-size:25px}.sp-college-board-foot span{color:#9eb2cf;font-size:10px}
.sp-list-catalog{padding:0 0 92px;background:radial-gradient(circle at 93% 7%,rgba(37,197,184,.08),transparent 20%),linear-gradient(180deg,#eef4fc,#f9fbff 45%,#fff)}
.sp-list-search-deck,.sp-exam-search-deck{position:relative;z-index:8;margin:-48px auto 62px;padding:14px;border:1px solid rgba(152,176,212,.36);border-radius:24px;background:rgba(255,255,255,.97);box-shadow:0 26px 60px rgba(7,29,66,.14);backdrop-filter:blur(13px)}
.sp-list-search-row{display:grid!important;grid-template-columns:minmax(0,1fr) auto;gap:10px!important;max-width:none!important}.sp-list-search-field{position:relative;display:flex;align-items:center;min-height:58px;padding:0 145px 0 49px!important;border:1px solid #dde6f3!important;border-radius:16px!important;background:#f7f9fd!important}.sp-list-search-field:focus-within{border-color:#76a0ef!important;background:#fff!important;box-shadow:0 0 0 4px rgba(18,87,229,.08)}.sp-list-search-field .listing-search-icon{position:absolute;left:18px;top:50%;display:grid;place-items:center;width:20px;height:20px;transform:translateY(-50%)}.sp-list-search-field .listing-search-icon svg{width:20px;height:20px;fill:none;stroke:#7186a5;stroke-width:1.8;stroke-linecap:round}.sp-list-search-field .listing-search-input{width:100%;height:56px;padding:0;border:0;outline:0;background:transparent;color:#09234c;font-size:15px}.sp-list-search-field .listing-search-clear{right:139px}.sp-list-search-submit{position:absolute;right:5px;top:5px;min-width:128px;min-height:48px;display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:0 17px;border:0;border-radius:13px;background:linear-gradient(135deg,#ff6c59,#ff565e);color:#fff;font-size:12px;font-weight:800;cursor:pointer;box-shadow:0 11px 24px rgba(255,91,87,.24)}.sp-list-filter-toggle{min-width:145px!important;width:auto!important;min-height:58px!important;padding:0 18px!important;border:1px solid #dbe5f3!important;border-radius:16px!important;background:#091f47!important;color:#fff!important}.sp-list-filter-toggle[aria-expanded="true"]{border-color:#1459e6!important;background:#1459e6!important}.sp-list-filter-panel{top:calc(100% + 10px)!important;padding:22px!important;border:1px solid #dce6f3!important;border-radius:22px!important;background:#fff!important;box-shadow:0 24px 55px rgba(7,29,66,.17)!important}.sp-list-filter-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:18px;padding-bottom:15px;border-bottom:1px solid #e5ebf4}.sp-list-filter-head small,.sp-list-filter-head strong{display:block}.sp-list-filter-head small{color:#1459e6;font-size:9px;font-weight:850;letter-spacing:.1em}.sp-list-filter-head strong{margin-top:4px;font-family:'Manrope',sans-serif;font-size:18px}.sp-list-filter-head>span{color:#75869d;font-size:11px}.sp-list-filter-panel .college-filter-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:11px}.sp-list-filter-panel .college-filter-field span{display:block;margin-bottom:7px;color:#647892;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.07em}.sp-list-filter-panel .college-filter-field select{height:43px;border-radius:11px;background:#f7f9fd;font-size:11px}.sp-list-filter-panel .college-filter-actions{margin-top:17px;padding-top:15px;border-top:1px solid #e5ebf4}.sp-list-filter-apply{min-height:42px;padding:0 15px;border:0;border-radius:11px;background:#1459e6;color:#fff;font-size:11px;font-weight:800}.sp-list-filter-apply span{margin-left:12px}
.sp-list-results-head{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:30px;margin-bottom:26px}.sp-section-kicker{display:flex;align-items:center;gap:10px;margin-bottom:10px;color:#1459e6;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.sp-section-kicker::before{content:"";width:22px;border-top:2px solid #ff6b57}.sp-list-results-head h2,.sp-related-head h2,.sp-detail-main-card>h2{margin:0;font-family:'Manrope',sans-serif;font-size:clamp(32px,3vw,45px);line-height:1.1;letter-spacing:-.045em}.sp-list-results-head>p{max-width:390px;margin:0;color:#697c97;font-size:13px;line-height:1.55;text-align:right}.sp-list-results-head>p strong{display:block;color:#09234c}.sp-list-empty{padding:60px 25px;border:1px dashed #c9d8eb;border-radius:22px;background:rgba(255,255,255,.75);text-align:center}.sp-list-empty h3{margin:0;font-family:'Manrope',sans-serif}.sp-list-empty p{margin:7px 0 0;color:#75869d}.sp-list-load-wrap{display:flex;justify-content:center;margin-top:28px}.sp-list-load-more{min-height:48px;padding:0 22px;border:1px solid #cbd9ec;border-radius:13px;background:#fff;color:#09234c;font-size:12px;font-weight:800;cursor:pointer;box-shadow:0 8px 20px rgba(7,29,66,.06)}.sp-list-load-more span{margin-left:14px}
.sp-college-list-page .sp-list-load-more{min-height:50px;padding:0 24px;border:0;background:linear-gradient(135deg,#ff7048 0%,#ff4f63 100%);color:#fff;font-size:14px;font-weight:850;box-shadow:0 12px 27px rgba(255,86,77,.25);transition:.22s ease}.sp-college-list-page .sp-list-load-more:hover{background:linear-gradient(135deg,#ff815e 0%,#f43f59 100%);color:#fff;transform:translateY(-2px);box-shadow:0 16px 32px rgba(255,86,77,.32)}
.sp-college-list-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.sp-college-list-card{display:grid;grid-template-columns:210px minmax(0,1fr);min-height:318px;overflow:hidden;border:1px solid #dce5f2;border-radius:22px;background:#fff;box-shadow:0 11px 30px rgba(7,29,66,.055);transition:.25s}.sp-college-list-card:hover{border-color:#a9c3ee;transform:translateY(-5px);box-shadow:0 23px 46px rgba(7,29,66,.11)}.sp-college-list-media{position:relative;min-width:0;overflow:hidden;background:#dce8f8}.sp-college-list-media img{display:block;width:100%;height:100%;object-fit:cover;transition:.4s}.sp-college-list-card:hover .sp-college-list-media img{transform:scale(1.05)}.sp-college-list-shade{position:absolute;inset:30% 0 0;background:linear-gradient(transparent,rgba(3,18,43,.72))}.sp-college-list-media>b{position:absolute;left:13px;top:13px;max-width:calc(100% - 26px);padding:7px 9px;border-radius:9px;background:rgba(255,255,255,.93);color:#0a2858;font-size:8.5px;font-weight:850;text-transform:uppercase;letter-spacing:.06em}.sp-college-list-media>b::before{content:"";display:inline-block;width:6px;height:6px;margin-right:7px;border-radius:50%;background:#26bdb2}.sp-college-list-media>i{position:absolute;right:13px;bottom:13px;display:grid;place-items:center;width:36px;height:36px;border-radius:12px;background:#fff;color:#1459e6;font-size:17px;font-style:normal;box-shadow:0 8px 20px rgba(2,17,43,.2)}.sp-college-list-content{min-width:0;display:flex;flex-direction:column;padding:20px}.sp-college-list-identity{display:grid;grid-template-columns:45px minmax(0,1fr);align-items:center;gap:11px}.sp-college-monogram{display:grid;place-items:center;width:45px;height:45px;border:1px solid #dae5f4;border-radius:13px;background:#f4f7fd;color:#1459e6;font-family:'Manrope',sans-serif;font-size:12px;font-weight:850}.sp-college-list-identity h3{margin:0;font-family:'Manrope',sans-serif;font-size:17px;line-height:1.25;letter-spacing:-.025em}.sp-college-list-identity h3 a{color:#071d42;text-decoration:none}.sp-college-list-identity p{display:flex;align-items:center;gap:5px;margin:5px 0 0;color:#71839b;font-size:10.5px}.sp-college-list-identity p svg{width:13px;height:13px;fill:none;stroke:#ff6b57;stroke-width:1.8}.sp-college-list-desc{display:-webkit-box;margin:13px 0 0;overflow:hidden;color:#65768d;font-size:11.5px;line-height:1.5;-webkit-line-clamp:2;-webkit-box-orient:vertical}.sp-college-list-facts{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:13px 0}.sp-college-list-facts>div{min-width:0;padding:9px 10px;border:1px solid #e3eaf4;border-radius:11px;background:#f8fafd}.sp-college-list-facts small,.sp-college-list-facts strong{display:block}.sp-college-list-facts small{margin-bottom:4px;color:#8797ac;font-size:7.5px;font-weight:850;text-transform:uppercase;letter-spacing:.075em}.sp-college-list-facts strong{overflow:hidden;color:#173157;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.sp-college-list-actions{display:grid;grid-template-columns:1fr auto auto;gap:7px;margin-top:auto}.sp-college-list-actions>a,.sp-college-list-actions>button{min-height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0 11px;border:1px solid #d9e4f2;border-radius:10px;background:#fff;color:#09234c;font-family:inherit;font-size:9.5px;font-weight:800;text-decoration:none;cursor:pointer}.sp-college-list-actions>a:first-child{justify-content:space-between}.sp-college-list-actions>button.js-open-consult{border-color:#1459e6;background:#1459e6;color:#fff}.sp-college-list-actions .sp-college-media-action{grid-row:2}.sp-college-list-actions .sp-college-compare-action{grid-row:2;grid-column:2/-1;color:#1459e6}
.sp-exam-hero-board{padding-bottom:20px}.sp-exam-board-top small,.sp-exam-board-top strong{display:block}.sp-exam-board-top small{color:#70e1d7;font-size:9px;font-weight:850;letter-spacing:.11em}.sp-exam-board-top strong{margin-top:5px;font-family:'Manrope',sans-serif;font-size:19px}.sp-exam-route{position:relative;display:grid;gap:0;margin:17px 0}.sp-exam-route::before{content:"";position:absolute;left:14px;top:15px;bottom:15px;border-left:1px dashed rgba(111,227,218,.34)}.sp-exam-route>div{position:relative;display:grid;grid-template-columns:29px 1fr;align-items:center;gap:11px;padding:7px 0}.sp-exam-route b{z-index:1;display:grid;place-items:center;width:29px;height:29px;border:1px solid rgba(111,227,218,.3);border-radius:9px;background:#0a316c;color:#75e4da;font-size:8px}.sp-exam-route span,.sp-exam-route small{display:block}.sp-exam-route span{font-size:11.5px;font-weight:800}.sp-exam-route small{margin-top:3px;color:#91a8c7;font-size:9px}.sp-exam-route .is-active b{background:#68e1d6;color:#08234c}.sp-exam-hero-board>button{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;padding:0 16px;border:0;border-radius:13px;background:#fff;color:#09234c;font-size:12px;font-weight:800;cursor:pointer}.sp-exam-hero-board>button span{color:#1459e6;font-size:17px}.sp-exam-search-deck{max-width:920px}.sp-exam-search-deck .sp-list-search-field{min-height:58px}.sp-exam-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}.sp-exam-card{overflow:hidden;border:1px solid #dce5f2;border-radius:21px;background:#fff;box-shadow:0 11px 30px rgba(7,29,66,.055);transition:.25s}.sp-exam-card:hover{border-color:#abc4ed;transform:translateY(-5px);box-shadow:0 22px 44px rgba(7,29,66,.11)}.sp-exam-card-head{position:relative;display:grid;grid-template-columns:62px minmax(0,1fr) 34px;align-items:center;gap:12px;padding:17px;border-bottom:1px solid #e6ecf4;background:linear-gradient(135deg,#f5f8fd,#edf4ff)}.sp-exam-logo{display:grid;place-items:center;width:62px;height:62px;overflow:hidden;border:1px solid #dbe5f2;border-radius:16px;background:#fff}.sp-exam-logo img{display:block;width:48px;height:48px;object-fit:contain}.sp-exam-card-head>div span,.sp-exam-card-head>div b{display:block}.sp-exam-card-head>div span{color:#71839b;font-size:8.5px;font-weight:850;text-transform:uppercase;letter-spacing:.075em}.sp-exam-card-head>div b{margin-top:5px;color:#1459e6;font-family:'Manrope',sans-serif;font-size:15px}.sp-exam-card-arrow{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:#fff;color:#1459e6;font-size:15px;text-decoration:none;box-shadow:0 6px 15px rgba(7,29,66,.08)}.sp-exam-card-body{padding:19px}.sp-exam-card-body h3{margin:0;font-family:'Manrope',sans-serif;font-size:18px;line-height:1.28}.sp-exam-card-body h3 a{color:#071d42;text-decoration:none}.sp-exam-card-body>p{display:-webkit-box;min-height:53px;margin:9px 0 13px;overflow:hidden;color:#65768d;font-size:11.5px;line-height:1.5;-webkit-line-clamp:3;-webkit-box-orient:vertical}.sp-exam-card-meta{display:grid;grid-template-columns:1fr 1fr;gap:8px}.sp-exam-card-meta>span{padding:8px 9px;border:1px solid #e3eaf4;border-radius:10px;background:#f8fafd}.sp-exam-card-meta small,.sp-exam-card-meta strong{display:block}.sp-exam-card-meta small{color:#8797ac;font-size:7px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.sp-exam-card-meta strong{margin-top:3px;color:#173157;font-size:10px}.sp-exam-card-link{display:flex;align-items:center;justify-content:space-between;min-height:39px;margin-top:13px;padding:0 12px;border-radius:10px;background:#1459e6;color:#fff;font-size:10.5px;font-weight:800;text-decoration:none}
.sp-detail-hero-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(390px,.72fr);align-items:center;gap:65px;padding:60px 0 78px}.sp-detail-hero-copy{min-width:0}.sp-detail-back{display:inline-flex;margin-bottom:17px;color:#9fb5d4;font-size:10px;font-weight:750;text-decoration:none}.sp-detail-hero h1{font-size:clamp(45px,4.6vw,68px);overflow-wrap:anywhere}.sp-detail-hero-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:25px}.sp-primary-action,.sp-secondary-action{min-height:49px;display:inline-flex;align-items:center;justify-content:center;gap:20px;padding:0 17px;border-radius:13px;font-family:inherit;font-size:11.5px;font-weight:800;text-decoration:none;cursor:pointer}.sp-primary-action{border:0;background:linear-gradient(135deg,#ff6d59,#ff565e);color:#fff;box-shadow:0 12px 26px rgba(255,91,87,.23)}.sp-secondary-action{border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.07);color:#fff}.sp-detail-visual{position:relative;height:360px;overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:28px;background:#0d3b7a;box-shadow:0 30px 65px rgba(0,9,35,.33);transform:rotate(1deg)}.sp-detail-visual img{display:block;width:100%;height:100%;object-fit:cover}.sp-detail-visual-shade{position:absolute;inset:35% 0 0;background:linear-gradient(transparent,rgba(3,19,46,.82))}.sp-detail-visual-note{position:absolute;left:18px;right:18px;bottom:17px;padding:14px 15px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(5,25,56,.68);backdrop-filter:blur(9px)}.sp-detail-visual-note b,.sp-detail-visual-note span{display:block}.sp-detail-visual-note b{font-size:11.5px}.sp-detail-visual-note span{margin-top:3px;color:#b9c9e2;font-size:9.5px}.sp-college-detail-location{display:flex!important;align-items:center;gap:7px;margin-bottom:-9px!important;color:#77e3da!important;font-size:12px!important;font-weight:750}.sp-college-detail-location svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.7}
.sp-detail-facts-wrap{position:relative;z-index:3;background:#fff;border-bottom:1px solid #e0e8f3}.sp-detail-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));align-items:stretch}.sp-detail-fact{min-width:0;display:grid;grid-template-columns:38px minmax(0,1fr);align-items:center;gap:11px;padding:20px 22px;border-left:1px solid #e2e9f3}.sp-detail-fact:last-child{border-right:1px solid #e2e9f3}.sp-detail-fact-icon{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#eafaf7}.sp-detail-fact-icon::before{content:"";width:10px;height:10px;border:2px solid #12a89c;border-radius:50%;box-shadow:0 0 0 5px rgba(18,168,156,.1)}.sp-detail-fact small,.sp-detail-fact strong{display:block}.sp-detail-fact small{margin-bottom:5px;color:#8797ac;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.09em}.sp-detail-fact strong{overflow:hidden;color:#102b51;font-size:11.5px;line-height:1.4;text-overflow:ellipsis;white-space:nowrap}
.sp-detail-content-section{padding:76px 0 88px;background:linear-gradient(180deg,#f3f7fc,#fff)}.sp-detail-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;align-items:start;gap:24px}.sp-detail-main-card{min-width:0;padding:34px!important;border:1px solid #dfe7f1!important;border-radius:24px!important;background:#fff!important;box-shadow:0 15px 38px rgba(7,29,66,.06)!important}.sp-detail-main-card>h2{max-width:760px;margin-bottom:24px}.sp-rich-content,.sp-detail-main-card .course-detail-body{color:#465d78;font-size:14px;line-height:1.78}.sp-rich-content h2,.sp-rich-content h3,.sp-detail-main-card .course-detail-body h2,.sp-detail-main-card .course-detail-body h3{margin:30px 0 12px;color:#0a244b;font-family:'Manrope',sans-serif;letter-spacing:-.025em}.sp-rich-content p,.sp-detail-main-card .course-detail-body p{margin:0 0 15px}.sp-rich-content ul,.sp-detail-main-card .course-detail-body ul{display:grid;gap:8px;margin:14px 0 20px;padding-left:20px}.sp-detail-bottom-action{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:32px;padding:20px;border-radius:17px;background:linear-gradient(120deg,#edf4ff,#f1fbf9)}.sp-detail-bottom-action small,.sp-detail-bottom-action strong{display:block}.sp-detail-bottom-action small{color:#6d8099;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.sp-detail-bottom-action strong{margin-top:4px;color:#09234c;font-size:13px}.sp-detail-sidebar{display:grid!important;gap:15px}.sp-detail-side-card,.sp-detail-sidebar .course-detail-info-card,.sp-detail-sidebar .download-card,.sp-detail-sidebar>section,.sp-detail-sidebar>div{border:1px solid #dde6f1!important;border-radius:20px!important;background:#fff;box-shadow:0 12px 30px rgba(7,29,66,.055)}.sp-detail-side-card{padding:22px}.sp-detail-side-card--accent{border-color:rgba(255,255,255,.1)!important;background:radial-gradient(circle at 100% 0,rgba(104,225,214,.2),transparent 30%),linear-gradient(135deg,#071d41,#0a397a)!important;color:#fff}.sp-detail-side-card>span{color:#6fe0d6;font-size:8px;font-weight:850;letter-spacing:.1em}.sp-detail-side-card h3{margin:8px 0 9px;font-family:'Manrope',sans-serif;font-size:20px;line-height:1.25}.sp-detail-side-card p{margin:0 0 16px;color:#b8c8df;font-size:11.5px;line-height:1.55}.sp-detail-side-card .sp-primary-action{width:100%}.sp-detail-sidebar .course-detail-info-card,.sp-detail-sidebar .download-card{padding:20px}.sp-detail-sidebar .course-detail-info-title{margin:0 0 13px;font-family:'Manrope',sans-serif}.sp-detail-sidebar .course-detail-info-list li{padding:10px 0;border-bottom:1px solid #e7ecf3}.sp-detail-sidebar .cdi-label{color:#71839a;font-size:10px}.sp-detail-sidebar .cdi-val{color:#102b51;font-size:10.5px;font-weight:750}.sp-side-link-list{display:grid;gap:7px}.sp-side-link-list a{position:relative;padding:10px 27px 10px 11px;border:1px solid #e3eaf3;border-radius:11px;background:#f8fafd;text-decoration:none}.sp-side-link-list small,.sp-side-link-list strong{display:block}.sp-side-link-list small{color:#71839a;font-size:7.5px;text-transform:uppercase}.sp-side-link-list strong{margin-top:3px;color:#102b51;font-size:10.5px}.sp-side-link-list i{position:absolute;right:10px;top:50%;color:#1459e6;font-style:normal;transform:translateY(-50%)}
.sp-related-section{padding:80px 0 92px;background:#fff}.sp-related-head{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:30px;margin-bottom:27px}.sp-related-head>a{color:#1459e6;font-size:11.5px;font-weight:800;text-decoration:none}.sp-exam-detail-hero-layout{display:grid;grid-template-columns:145px minmax(0,1fr);align-items:center;gap:34px;padding:62px 0 76px}.sp-exam-detail-page .sp-detail-hero h1{font-size:clamp(40px,3.5vw,56px);line-height:1.08;letter-spacing:-.045em}.sp-exam-detail-logo{display:grid;place-items:center;width:145px;height:145px;overflow:hidden;border:1px solid rgba(255,255,255,.35);border-radius:26px;background:#fff;box-shadow:0 25px 55px rgba(0,9,35,.3)}.sp-exam-detail-logo img{display:block;width:110px;height:110px;object-fit:contain}.sp-exam-date-timeline{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin:20px 0 28px}.sp-exam-date-timeline>div{position:relative;padding:16px;border:1px solid #e0e8f2;border-radius:14px;background:#f8fafd}.sp-exam-date-timeline b{position:absolute;right:11px;top:9px;color:#dbe4f1;font-family:'Manrope',sans-serif;font-size:23px}.sp-exam-date-timeline span,.sp-exam-date-timeline strong{display:block}.sp-exam-date-timeline span{color:#1459e6;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.sp-exam-date-timeline strong{margin-top:9px;color:#173157;font-size:10.5px;line-height:1.45}.sp-exam-counselling-box,.sp-eligibility-box{margin:22px 0;padding:18px;border:1px solid #dfe8f2;border-radius:16px;background:linear-gradient(120deg,#edf4ff,#f2fbf9)}.sp-exam-counselling-box small,.sp-exam-counselling-box strong{display:block}.sp-exam-counselling-box small,.sp-eligibility-box>span{color:#1459e6;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.sp-exam-counselling-box strong{margin-top:5px;color:#0a244b;font-size:13px}.sp-exam-counselling-box>div{display:flex;flex-wrap:wrap;gap:7px;margin-top:12px}.sp-exam-counselling-box a{padding:7px 9px;border:1px solid #ceddf0;border-radius:9px;background:#fff;color:#1459e6;font-size:9px;font-weight:750;text-decoration:none}.sp-eligibility-box h3{margin:7px 0 5px;font-family:'Manrope',sans-serif;font-size:20px}.sp-eligibility-box p{margin:0;color:#526982;font-size:12px;line-height:1.6}
.sp-college-detail-page .course-detail-grid{width:min(1380px,calc(100% - 80px));max-width:none;margin:0 auto;grid-template-columns:minmax(0,1fr) 340px;gap:24px}.sp-college-detail-page .course-detail-main>.eyebrow{color:#1459e6}.sp-college-detail-page .course-detail-main>.sec-title{margin-bottom:22px;font-size:clamp(30px,3vw,43px)}.sp-college-detail-page .college-location-section{padding:82px 0;background:#eef4fc}.sp-college-detail-page .college-location-grid{width:min(1380px,calc(100% - 80px));max-width:none}.sp-college-detail-page .college-location-card{border-radius:21px;border-color:#dbe5f1;box-shadow:0 12px 30px rgba(7,29,66,.055)}.sp-college-detail-page .college-location-heading,.sp-college-detail-page .section>.fade-in{width:min(1380px,calc(100% - 80px));margin-left:auto!important;margin-right:auto!important}.sp-college-detail-page .college-gallery,.sp-college-detail-page #courses-offered>.course-grid{width:min(1380px,calc(100% - 80px));max-width:none;margin-left:auto;margin-right:auto}.sp-college-detail-page #courses-offered>.course-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
@media(max-width:1120px){.sp-list-hero-layout,.sp-detail-hero-layout{gap:38px}.sp-list-hero h1,.sp-detail-hero h1{font-size:52px}.sp-college-list-card{grid-template-columns:180px minmax(0,1fr)}.sp-list-filter-panel .college-filter-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.sp-exam-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.sp-detail-content-grid,.sp-college-detail-page .course-detail-grid{grid-template-columns:minmax(0,1fr) 310px}.sp-detail-fact{padding:18px 15px}.sp-detail-visual{height:330px}}
@media(max-width:900px){.sp-list-hero-layout,.sp-detail-hero-layout{grid-template-columns:1fr;gap:34px;padding:55px 0 100px}.sp-college-hero-board,.sp-exam-hero-board{max-width:650px}.sp-college-list-grid{grid-template-columns:1fr}.sp-college-list-card{grid-template-columns:220px minmax(0,1fr)}.sp-detail-content-grid,.sp-college-detail-page .course-detail-grid{grid-template-columns:1fr}.sp-detail-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))!important}.sp-detail-sidebar>div:first-child{grid-column:1/-1}.sp-detail-facts{grid-template-columns:repeat(2,minmax(0,1fr))}.sp-detail-fact:nth-child(3){border-top:1px solid #e2e9f3}.sp-detail-fact:nth-child(4){border-top:1px solid #e2e9f3}.sp-exam-detail-hero-layout{grid-template-columns:110px minmax(0,1fr);gap:25px;padding:55px 0 72px}.sp-exam-detail-logo{width:110px;height:110px;border-radius:21px}.sp-exam-detail-logo img{width:82px;height:82px}.sp-college-detail-page #courses-offered>.course-grid{grid-template-columns:1fr}}
@media(max-width:640px){.sp-list-hero::after,.sp-detail-hero::after{display:none}.sp-list-grid-pattern,.sp-detail-grid-pattern{background-size:34px 34px}.sp-list-hero-layout,.sp-detail-hero-layout{gap:27px;padding:42px 0 87px}.sp-list-hero h1,.sp-detail-hero h1{font-size:40px;line-height:1.03;overflow-wrap:anywhere}.sp-list-hero-copy>p,.sp-detail-hero-copy>p{font-size:13.5px;line-height:1.62}.sp-list-quick-links,.sp-exam-hero-pills{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none}.sp-list-quick-links::-webkit-scrollbar,.sp-exam-hero-pills::-webkit-scrollbar{display:none}.sp-list-quick-links>*{flex:0 0 auto}.sp-college-hero-board,.sp-exam-hero-board{padding:18px;border-radius:21px}.sp-college-board-grid{gap:6px}.sp-college-board-grid>div{padding:12px}.sp-list-catalog{padding-bottom:67px}.sp-list-search-deck,.sp-exam-search-deck{margin:-45px auto 46px;padding:9px;border-radius:18px}.sp-list-search-row{grid-template-columns:1fr!important}.sp-list-search-field{min-height:52px!important;padding:0 59px 0 42px!important;border-radius:13px!important}.sp-list-search-field .listing-search-icon{left:14px}.sp-list-search-field .listing-search-input{height:50px;font-size:12.5px}.sp-list-search-submit{right:4px;top:4px;width:44px;min-width:44px;min-height:44px;padding:0;font-size:0}.sp-list-search-submit span{font-size:16px}.sp-list-search-field .listing-search-clear{right:57px}.sp-list-filter-toggle{width:100%!important;min-width:100%!important;min-height:44px!important;border-radius:12px!important}.sp-list-filter-toggle>span:not(.college-filter-count){display:inline!important}.sp-list-filter-panel{position:absolute!important;inset:auto 0 auto!important;top:calc(100% + 8px)!important;max-height:none;overflow:visible;padding:18px!important}.sp-list-filter-head{align-items:flex-start;flex-direction:column;gap:5px}.sp-list-filter-panel .college-filter-grid{grid-template-columns:1fr}.sp-list-results-head{grid-template-columns:1fr;gap:11px}.sp-list-results-head h2,.sp-related-head h2,.sp-detail-main-card>h2{font-size:30px}.sp-list-results-head>p{max-width:none;text-align:left}.sp-college-list-card{grid-template-columns:1fr;min-height:0;border-radius:19px}.sp-college-list-media{height:190px}.sp-college-list-content{padding:17px}.sp-college-list-actions{grid-template-columns:1fr auto}.sp-college-list-actions .sp-college-media-action{grid-row:2}.sp-college-list-actions .sp-college-compare-action{grid-row:2;grid-column:2}.sp-exam-grid{grid-template-columns:1fr}.sp-exam-search-deck .sp-list-search-field{padding-right:59px!important}.sp-detail-visual{height:250px;border-radius:21px;transform:none}.sp-detail-facts{grid-template-columns:1fr}.sp-detail-fact{padding:14px 0;border-left:0;border-right:0!important;border-top:1px solid #e2e9f3}.sp-detail-fact:first-child{border-top:0}.sp-detail-content-section{padding:54px 0 68px}.sp-detail-content-grid{gap:14px}.sp-detail-main-card{padding:21px!important;border-radius:20px!important}.sp-detail-bottom-action{align-items:flex-start;flex-direction:column;padding:16px}.sp-detail-bottom-action .sp-primary-action{width:100%}.sp-detail-sidebar{grid-template-columns:1fr!important}.sp-detail-sidebar>div:first-child{grid-column:auto}.sp-related-section{padding:59px 0 68px}.sp-related-head{grid-template-columns:1fr;gap:12px}.sp-exam-detail-hero-layout{grid-template-columns:1fr;gap:22px;padding:42px 0 68px}.sp-exam-detail-logo{width:86px;height:86px;border-radius:17px}.sp-exam-detail-logo img{width:64px;height:64px}.sp-exam-date-timeline{grid-template-columns:1fr}.sp-college-detail-page .course-detail-grid,.sp-college-detail-page .college-location-grid,.sp-college-detail-page .college-location-heading,.sp-college-detail-page .section>.fade-in,.sp-college-detail-page .college-gallery,.sp-college-detail-page #courses-offered>.course-grid{width:calc(100% - 32px)}.sp-college-detail-page .college-location-section{padding:58px 0}.sp-college-detail-page .course-detail-main>.sec-title{font-size:29px}.sp-college-detail-page .college-gallery{grid-template-columns:1fr 1fr}.sp-college-detail-page .college-gallery .gallery-item{height:160px}.sp-college-detail-page .college-gallery .gallery-item:nth-child(7n+1){grid-column:auto;grid-row:auto}}
@media(max-width:640px){.sp-exam-detail-page .sp-detail-hero h1{font-size:34px;line-height:1.1}}

/* Course detail hero: centered, image-free title presentation. */
.sp-course-detail-page .sp-detail-hero::before{content:"";position:absolute;z-index:-1;left:50%;top:-220px;width:760px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(83,119,255,.2),rgba(83,119,255,0) 68%);transform:translateX(-50%);pointer-events:none}
.sp-course-detail-page .sp-detail-grid-pattern{opacity:.78;mask-image:linear-gradient(180deg,#000,rgba(0,0,0,.68) 72%,transparent)}
.sp-course-detail-page .sp-detail-hero-layout{display:block;padding:72px 0 88px}
.sp-course-detail-page .sp-detail-hero-copy{width:100%;max-width:1280px;display:flex;align-items:center;flex-direction:column;margin:0 auto;text-align:center}
.sp-course-discipline{display:inline-flex;align-items:center;gap:12px;margin-bottom:24px;padding:8px 16px 8px 9px;border:1px solid rgba(132,229,220,.28);border-radius:16px;background:linear-gradient(135deg,rgba(105,225,214,.14),rgba(255,255,255,.065));box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 14px 34px rgba(0,12,42,.18);backdrop-filter:blur(10px)}
.sp-course-discipline-mark{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(121,231,222,.34);border-radius:12px;background:linear-gradient(145deg,#68e1d6,#4ba8dc);color:#071e48;box-shadow:0 8px 18px rgba(73,197,190,.22)}
.sp-course-discipline-mark svg{display:block;width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.sp-course-discipline-copy{display:block;min-width:0;text-align:left}.sp-course-discipline-copy small,.sp-course-discipline-copy strong{display:block}.sp-course-discipline-copy small{margin-bottom:3px;color:#80e8df;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.14em}.sp-course-discipline-copy strong{max-width:320px;overflow:hidden;color:#fff;font-size:11px;font-weight:850;letter-spacing:.085em;text-overflow:ellipsis;text-transform:uppercase;white-space:nowrap}
.sp-course-detail-page .sp-detail-hero h1{width:100%;max-width:1280px;font-size:clamp(52px,5vw,78px);line-height:1.02;text-align:center;text-wrap:balance}
.sp-course-detail-page .sp-detail-hero-copy>p{max-width:880px;margin:24px auto 0;text-align:center;text-wrap:balance}
.sp-course-detail-page .sp-detail-hero-actions{justify-content:center;margin-top:28px}
.sp-course-detail-page .sp-detail-hero-actions .sp-primary-action,.sp-course-detail-page .sp-detail-hero-actions .sp-secondary-action{min-height:54px;padding:0 22px;font-size:13.5px}
.sp-course-detail-page .sp-detail-fact small{font-size:9.5px;line-height:1.25}.sp-course-detail-page .sp-detail-fact strong{font-size:13.5px;line-height:1.45}
.sp-course-detail-vector{position:absolute;z-index:-1;display:grid;place-items:center;width:82px;height:82px;border:1px solid rgba(142,222,239,.15);border-radius:25px;background:linear-gradient(145deg,rgba(121,226,217,.075),rgba(149,178,255,.04));color:rgba(139,231,224,.32);box-shadow:inset 0 1px 0 rgba(255,255,255,.045);pointer-events:none}
.sp-course-detail-vector svg{display:block;width:42px;height:42px;fill:none;stroke:currentColor;stroke-width:1.35;stroke-linecap:round;stroke-linejoin:round}
.sp-course-detail-vector--book{left:4.5%;top:19%;transform:rotate(-10deg)}.sp-course-detail-vector--cap{right:4.5%;top:17%;width:92px;height:92px;color:rgba(147,185,255,.28);transform:rotate(9deg)}.sp-course-detail-vector--atom{right:10%;bottom:8%;width:72px;height:72px;color:rgba(119,226,217,.25);transform:rotate(-7deg)}.sp-course-detail-vector--path{left:10%;bottom:9%;width:68px;height:68px;color:rgba(159,188,255,.24);transform:rotate(7deg)}

@media(max-width:900px){.sp-course-detail-page .sp-detail-hero-layout{padding:58px 0 76px}.sp-course-detail-page .sp-detail-hero h1{font-size:clamp(44px,7vw,60px)}}
@media(max-width:640px){.sp-course-detail-page .sp-detail-hero-layout{padding:44px 0 58px}.sp-course-discipline{margin-bottom:20px}.sp-course-discipline-mark{width:35px;height:35px}.sp-course-discipline-copy strong{max-width:230px}.sp-course-detail-page .sp-detail-hero h1{font-size:40px;line-height:1.04}.sp-course-detail-page .sp-detail-hero-copy>p{margin-top:18px}.sp-course-detail-page .sp-detail-hero-actions{width:100%;flex-direction:column;margin-top:23px}.sp-course-detail-page .sp-detail-hero-actions .sp-primary-action,.sp-course-detail-page .sp-detail-hero-actions .sp-secondary-action{width:min(100%,320px);font-size:13.5px}.sp-course-detail-vector{width:58px;height:58px;border-radius:18px}.sp-course-detail-vector svg{width:30px;height:30px}.sp-course-detail-vector--book{left:-18px;top:21%}.sp-course-detail-vector--cap{right:-19px;top:17%;width:64px;height:64px}.sp-course-detail-vector--atom{right:-16px;bottom:13%}.sp-course-detail-vector--path{left:-18px;bottom:15%}}

/* College detail hero identity, verification and quick-fact emphasis. */
.sp-college-type-card{display:inline-flex;align-items:center;gap:11px;margin-bottom:22px;padding:8px 15px 8px 9px;border:1px solid rgba(121,229,221,.3);border-left-color:#69e1d7;border-radius:13px;background:linear-gradient(100deg,rgba(104,225,214,.15),rgba(255,255,255,.055));box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 12px 28px rgba(0,14,42,.16);backdrop-filter:blur(10px)}
.sp-college-type-icon{display:grid;place-items:center;width:36px;height:36px;border-radius:10px;background:rgba(105,225,215,.15);color:#78e6dd;box-shadow:inset 0 0 0 1px rgba(121,230,221,.25)}
.sp-college-type-icon svg{display:block;width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.sp-college-type-copy{display:block;text-align:left}.sp-college-type-copy small,.sp-college-type-copy strong{display:block}.sp-college-type-copy small{margin-bottom:3px;color:#82e8df;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.13em}.sp-college-type-copy strong{max-width:250px;overflow:hidden;color:#fff;font-size:11px;font-weight:850;letter-spacing:.075em;text-overflow:ellipsis;text-transform:uppercase;white-space:nowrap}
.sp-verified-note-title{display:flex;align-items:center;gap:8px}.sp-verified-badge{display:grid!important;place-items:center;width:25px;height:25px;flex:0 0 25px;border:1px solid rgba(255,255,255,.5);border-radius:50%;background:linear-gradient(145deg,#2ee66b,#1fbd58);color:#fff;box-shadow:0 7px 17px rgba(37,211,102,.38),inset 0 1px 0 rgba(255,255,255,.28)}.sp-verified-badge svg{display:block;width:15px;height:15px;fill:none;stroke:#fff;stroke-width:2.35;stroke-linecap:round;stroke-linejoin:round}.sp-college-detail-page .sp-detail-visual-note>span{margin-top:7px}
.sp-college-detail-facts .sp-detail-fact small{font-size:9.5px;line-height:1.25}.sp-college-detail-facts .sp-detail-fact strong{font-size:13.5px;line-height:1.45}

@media(max-width:640px){.sp-college-type-card{margin-bottom:19px}.sp-college-detail-facts .sp-detail-fact small{font-size:9.5px}.sp-college-detail-facts .sp-detail-fact strong{font-size:13.5px}}

/* College campus experience revamp. */
.sp-college-detail-page .college-location-section{position:relative;overflow:hidden;padding:96px 0 104px;background:radial-gradient(circle at 8% 5%,rgba(20,89,230,.08),transparent 24%),radial-gradient(circle at 92% 92%,rgba(28,188,174,.1),transparent 27%),linear-gradient(180deg,#eef5ff 0%,#f7faff 48%,#eef8f7 100%)}
.sp-college-detail-page .college-location-section::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(21,72,136,.11) 1px,transparent 1px);background-size:26px 26px;mask-image:linear-gradient(120deg,rgba(0,0,0,.48),transparent 46%,rgba(0,0,0,.22));pointer-events:none}
.sp-college-detail-page .college-location-heading{position:relative;z-index:1;max-width:900px;margin-bottom:42px!important;text-align:center}
.college-location-heading-tag{display:inline-flex;align-items:center;gap:10px;margin-bottom:14px;color:#1459e6;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.14em}.college-location-heading-tag i{width:28px;border-top:2px solid #ff6658}.sp-college-detail-page .college-location-heading .sec-title{margin:0;color:#071e43;font-family:'Manrope',sans-serif;font-size:clamp(38px,4.2vw,58px);font-weight:760;line-height:1.06;letter-spacing:-.05em}.sp-college-detail-page .college-location-intro{max-width:720px;margin:16px auto 0;color:#607590;font-size:15px;line-height:1.7}
.college-location-guide{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;margin-top:24px}.college-location-guide span{display:inline-flex;align-items:center;gap:8px;min-height:36px;padding:0 13px;border:1px solid #d9e5f5;border-radius:999px;background:rgba(255,255,255,.78);color:#294766;font-size:10.5px;font-weight:750;box-shadow:0 7px 18px rgba(18,56,103,.05);backdrop-filter:blur(8px)}.college-location-guide b{display:grid;place-items:center;width:21px;height:21px;border-radius:50%;background:#e9f1ff;color:#1459e6;font-size:8px}
.sp-college-detail-page .college-location-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:20px;width:min(1380px,calc(100% - 80px));max-width:none;margin:0 auto}.sp-college-detail-page .college-video-card,.sp-college-detail-page .college-map-card{grid-column:span 7}.sp-college-detail-page .college-tour-card,.sp-college-detail-page .college-location-address-card{grid-column:span 5}
.sp-college-detail-page .college-location-card{min-width:0;display:flex;flex-direction:column;overflow:hidden;padding:0;border:1px solid rgba(193,210,232,.78);border-radius:25px;background:rgba(255,255,255,.94);box-shadow:0 20px 55px rgba(10,43,87,.09);transition:border-color .25s ease,box-shadow .25s ease,transform .25s ease}.sp-college-detail-page .college-location-card:hover{border-color:#a9c6ec;transform:translateY(-4px);box-shadow:0 28px 65px rgba(10,43,87,.14)}.sp-college-detail-page .college-location-card::before{z-index:2;height:3px;background:linear-gradient(90deg,#1459e6,#35c5b6,#89d45b)}
.sp-college-detail-page .college-location-card-head{display:grid;grid-template-columns:48px minmax(0,1fr);align-items:start;gap:14px;min-height:108px;margin:0;padding:21px 22px 16px}.sp-college-detail-page .college-location-icon{display:grid;place-items:center;width:48px;height:48px;flex:0 0 48px;border:1px solid #cfe0fa;border-radius:15px;background:linear-gradient(145deg,#edf4ff,#e5efff);color:#1459e6;box-shadow:0 8px 18px rgba(20,89,230,.1)}.sp-college-detail-page .college-location-icon--tour{border-color:#ccece8;background:linear-gradient(145deg,#eafbf8,#e2f5f2);color:#069e91}.sp-college-detail-page .college-location-icon--map{border-color:#ffd9d4;background:linear-gradient(145deg,#fff2f0,#ffe9e6);color:#f05c4f}.sp-college-detail-page .college-location-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.college-location-card-title small{display:block;margin-bottom:4px;color:#1459e6;font-size:8.5px;font-weight:850;text-transform:uppercase;letter-spacing:.11em}.college-tour-card .college-location-card-title small{color:#079b8f}.college-map-card .college-location-card-title small{color:#e45c50}.sp-college-detail-page .college-location-card-head h3{margin:0;color:#0b2448;font-family:'Manrope',sans-serif;font-size:21px;line-height:1.2;letter-spacing:-.025em}.sp-college-detail-page .college-location-card-head p{margin:6px 0 0;color:#6b7e96;font-size:12.5px;line-height:1.5}
.sp-college-detail-page .college-video-frame,.sp-college-detail-page .college-tour-frame,.sp-college-detail-page .college-map-frame,.sp-college-detail-page .college-location-empty{width:calc(100% - 36px);height:330px;aspect-ratio:auto;margin:0 18px 18px;border:1px solid #dbe5f1;border-radius:17px;background:#edf3fa;box-shadow:inset 0 1px 0 rgba(255,255,255,.7)}.sp-college-detail-page .college-video-frame,.sp-college-detail-page .college-tour-frame{display:block}.sp-college-detail-page .college-map-frame iframe{display:block;width:100%;height:100%}
.sp-college-detail-page .college-location-empty{display:flex;align-items:center;justify-content:center;flex-direction:column;padding:34px;text-align:center;background:radial-gradient(circle at 50% 0,rgba(20,89,230,.09),transparent 46%),linear-gradient(145deg,#f3f7fc,#eaf1f9);color:#60738d}.sp-college-detail-page .college-location-empty>span{display:grid;place-items:center;width:58px;height:58px;margin-bottom:14px;border:1px solid #cfddf0;border-radius:18px;background:#fff;color:#1459e6;box-shadow:0 10px 25px rgba(12,55,110,.09)}.sp-college-detail-page .college-location-empty svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.sp-college-detail-page .college-location-empty strong{color:#163253;font-family:'Manrope',sans-serif;font-size:16px}.sp-college-detail-page .college-location-empty small{max-width:290px;margin-top:7px;font-size:11.5px;line-height:1.55}
.sp-college-detail-page .college-location-address-card{display:flex;flex-direction:column}.sp-college-detail-page .college-address-thumb{position:relative;width:100%;height:184px;flex:0 0 184px;overflow:hidden;margin:0;padding:0;border:0;border-radius:0;background:#dce8f5}.sp-college-detail-page .college-address-thumb img{width:100%;height:100%;border-radius:0;object-fit:cover;transition:transform .45s ease}.sp-college-detail-page .college-location-address-card:hover .college-address-thumb img{transform:scale(1.045)}.college-address-thumb-shade{position:absolute;inset:30% 0 0;background:linear-gradient(transparent,rgba(4,24,51,.72))}.college-address-chip{position:absolute;left:16px;bottom:15px;display:inline-flex;align-items:center;gap:8px;max-width:calc(100% - 32px);padding:8px 11px;border:1px solid rgba(255,255,255,.28);border-radius:999px;background:rgba(4,27,59,.68);color:#fff;font-size:10px;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;backdrop-filter:blur(9px)}.college-address-chip i{width:7px;height:7px;flex:0 0 7px;border-radius:50%;background:#39d0c1;box-shadow:0 0 0 4px rgba(57,208,193,.15)}
.college-location-address-content{min-height:0;display:flex;flex:1;flex-direction:column;padding:21px 22px 22px}.college-location-address-title{display:grid;grid-template-columns:43px minmax(0,1fr);align-items:center;gap:12px}.college-location-address-title>span{display:grid;place-items:center;width:43px;height:43px;border-radius:13px;background:#fff0ee;color:#f05c4f}.college-location-address-title svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.college-location-address-title small{display:block;margin-bottom:4px;color:#e45c50;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}.sp-college-detail-page .college-location-address-title h3{margin:0;color:#0b2448;font-family:'Manrope',sans-serif;font-size:20px;letter-spacing:-.025em}.sp-college-detail-page .college-location-address{margin:17px 0 20px;padding:14px 15px;border:1px solid #e0e8f2;border-radius:14px;background:#f7f9fc;color:#3f5772;font-size:13px;line-height:1.65}
.sp-college-detail-page .college-location-address-card .college-how-reach{margin:0 0 20px;padding:0 0 18px;border-bottom:1px dashed #d7e1ee}.sp-college-detail-page .college-location-address-card .college-how-reach h4{margin:0 0 8px;color:#173253;font-size:15px}.sp-college-detail-page .college-location-address-card .college-how-reach-body{color:#657991;font-size:12px;line-height:1.6}
.sp-college-detail-page .college-location-actions{display:grid;grid-template-columns:repeat(auto-fit,minmax(105px,1fr));gap:8px;margin-top:auto;padding:0}.sp-college-detail-page .college-location-btn{min-height:44px;gap:7px;padding:0 10px;border-radius:12px;font-size:11px}.sp-college-detail-page .college-location-btn svg{width:15px;height:15px;flex-basis:15px}.sp-college-detail-page .college-location-btn.call-btn{border-color:#c9dcfb;background:#eef5ff;color:#1459e6}.sp-college-detail-page .college-location-btn.whatsapp-btn{border-color:#bdeecf;background:#effcf3;color:#159447}.sp-college-detail-page .college-location-btn.is-primary{border-color:#ffcfc9;background:#fff0ee;color:#e85044}

@media(max-width:1050px){.sp-college-detail-page .college-location-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.sp-college-detail-page .college-video-card,.sp-college-detail-page .college-tour-card,.sp-college-detail-page .college-map-card,.sp-college-detail-page .college-location-address-card{grid-column:auto}.sp-college-detail-page .college-video-frame,.sp-college-detail-page .college-tour-frame,.sp-college-detail-page .college-map-frame,.sp-college-detail-page .college-location-empty{height:300px}}
@media(max-width:760px){.sp-college-detail-page .college-location-section{padding:66px 0 72px}.sp-college-detail-page .college-location-grid{grid-template-columns:1fr;width:calc(100% - 32px);gap:15px}.sp-college-detail-page .college-location-heading{width:calc(100% - 32px)!important;margin-bottom:30px!important}.sp-college-detail-page .college-location-heading .sec-title{font-size:36px}.sp-college-detail-page .college-location-intro{font-size:13px}.college-location-guide{display:grid;grid-template-columns:1fr 1fr;max-width:360px;margin:20px auto 0}.college-location-guide span:last-child{grid-column:1/-1}.sp-college-detail-page .college-location-card-head{min-height:0;padding:18px}.sp-college-detail-page .college-video-frame,.sp-college-detail-page .college-tour-frame,.sp-college-detail-page .college-map-frame,.sp-college-detail-page .college-location-empty{width:calc(100% - 28px);height:auto;aspect-ratio:16/10;margin:0 14px 14px}.sp-college-detail-page .college-address-thumb{height:180px;flex-basis:180px}.college-location-address-content{padding:18px}.sp-college-detail-page .college-location-actions{grid-template-columns:1fr}.sp-college-detail-page .college-location-btn{min-height:46px;font-size:12px}}
@media(max-width:430px){.college-location-guide{grid-template-columns:1fr}.college-location-guide span:last-child{grid-column:auto}.sp-college-detail-page .college-location-heading .sec-title{font-size:32px}.sp-college-detail-page .college-location-card-head{grid-template-columns:44px minmax(0,1fr);gap:11px}.sp-college-detail-page .college-location-icon{width:44px;height:44px}.sp-college-detail-page .college-location-card-head h3{font-size:19px}}

/* Advanced college comparison launch tray */
#compareBar{
  left:50%;
  bottom:18px;
  width:min(720px,calc(100% - 34px));
  padding:11px 12px 11px 17px;
  border:1px solid rgba(255,255,255,.18);
  border-top:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  background:radial-gradient(circle at 88% 0,rgba(103,222,213,.18),transparent 30%),linear-gradient(120deg,#071d43,#0b3c7f);
  color:#fff;
  box-shadow:0 18px 48px rgba(7,29,66,.28);
  justify-content:space-between;
  gap:22px;
  transform:translateX(-50%);
  backdrop-filter:blur(14px);
}
#compareBar .compare-count{display:grid;gap:3px;color:#fff;font-size:inherit;line-height:1.2}
#compareBar .compare-count small{color:#72e2d8;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}
#compareBar .compare-count strong{font-size:12.5px;font-weight:800}
#compareBar .compare-count span{color:#fff;font-size:17px;font-weight:850}
#compareBar .compare-now-btn{min-height:45px;display:inline-flex;align-items:center;justify-content:center;gap:18px;padding:0 17px;border-radius:12px;background:linear-gradient(135deg,#ff704f,#ff5362);color:#fff;font-size:11.5px;font-weight:850;box-shadow:0 10px 23px rgba(255,91,87,.22)}
#compareBar .compare-now-btn:hover{background:linear-gradient(135deg,#ff7960,#ff5e6a);color:#fff;transform:translateY(-1px)}
#compareBar .compare-now-btn span{font-size:16px}
@media(max-width:560px){#compareBar{bottom:10px;padding:10px 10px 10px 13px;gap:11px}#compareBar .compare-count small{display:none}#compareBar .compare-count strong{font-size:10.5px}#compareBar .compare-count span{font-size:15px}#compareBar .compare-now-btn{min-height:42px;padding:0 12px;font-size:10px}#compareBar .compare-now-btn span{display:none}}
.sp-exam-route>div{grid-template-columns:29px minmax(0,1fr);grid-template-areas:"num label" "num note";column-gap:11px;row-gap:0}.sp-exam-route>div>b{grid-area:num}.sp-exam-route>div>span{grid-area:label}.sp-exam-route>div>small{grid-area:note;width:auto}.sp-college-detail-facts{grid-template-columns:repeat(5,minmax(0,1fr))}
@media(max-width:900px){.sp-college-detail-facts{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:640px){.sp-college-detail-facts{grid-template-columns:1fr}}

/* ================================================================
   COLLEGE DIRECTORY CARDS + DECISION SIDEBAR
   Homepage card language carried into the college discovery journey.
   ================================================================ */
.sp-college-list-page .sp-college-list-grid{
  grid-template-columns:repeat(6,minmax(0,1fr));
  align-items:stretch;
  gap:20px;
}
.sp-college-list-page .sp-college-directory-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  grid-column:span 2;
}
/* If the complete dataset genuinely ends with one or two records, let those
   cards fill the final row instead of leaving an empty, confusing column. */
.sp-college-list-page .sp-college-list-grid > .sp-college-directory-card:nth-last-child(2):nth-child(3n + 1),
.sp-college-list-page .sp-college-list-grid > .sp-college-directory-card:last-child:nth-child(3n + 2){grid-column:span 3}
.sp-college-list-page .sp-college-list-grid > .sp-college-directory-card:last-child:nth-child(3n + 1){grid-column:1/-1}
.sp-college-list-page .sp-college-directory-card .sp-college-pick-media{height:205px}
.sp-college-list-page .sp-college-directory-card .sp-college-pick-body{
  flex:1;
  display:flex;
  flex-direction:column;
}
.sp-college-list-page .sp-college-directory-card .sp-college-identity{min-height:58px}
.sp-college-list-page .sp-college-directory-card .sp-college-identity h3{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.sp-college-list-page .sp-college-directory-card .sp-college-facts{margin-top:15px}
.sp-college-list-page .sp-college-directory-card .sp-college-pick-actions{margin-top:auto;padding-top:15px}
.sp-college-directory-tools{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding-top:9px;
}
.sp-college-directory-tools>a,.sp-college-directory-tools>button,.sp-college-directory-tools>span{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:0 10px;
  border:1px solid #dce5f1;
  border-radius:10px;
  background:#f7f9fc;
  color:#4f6480;
  font-family:inherit;
  font-size:10px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
}
.sp-college-directory-tools svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sp-college-directory-media svg{fill:currentColor;stroke:none}
.sp-college-directory-tools .is-muted{color:#8b9ab0;cursor:default}
.sp-college-directory-tools .college-compare-btn{border-color:#cfddf3!important;background:#eef4ff!important;color:#1459e6!important}
.sp-college-directory-tools>a:hover,.sp-college-directory-tools .college-compare-btn:hover{border-color:#1459e6!important;background:#1459e6!important;color:#fff!important;transform:translateY(-1px)}

.sp-college-detail-page .sp-detail-sidebar{gap:18px}
.sp-detail-sidebar .sp-sidebar-panel{
  overflow:hidden;
  padding:0!important;
  border:1px solid #dae5f2!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:0 16px 38px rgba(7,29,66,.07)!important;
}
.sp-sidebar-panel-head{position:relative;padding:21px 20px 16px}
.sp-sidebar-panel-head::after{
  content:"";
  position:absolute;
  right:-32px;
  top:-37px;
  width:92px;
  height:92px;
  border:18px solid rgba(20,89,230,.055);
  border-radius:50%;
}
.sp-sidebar-kicker{display:flex;align-items:center;gap:8px;color:#1459e6;font-size:8.5px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
.sp-sidebar-kicker i{width:7px;height:7px;border-radius:50%;background:#28bdb2;box-shadow:0 0 0 5px rgba(40,189,178,.11)}
.sp-sidebar-panel-head h3{max-width:275px;margin:9px 0 0;color:#071d42;font-family:'Manrope',sans-serif;font-size:21px;line-height:1.2;letter-spacing:-.035em}
.sp-sidebar-panel-head p{margin:8px 0 0;color:#657991;font-size:11px;line-height:1.55}

.sp-sidebar-info{background:linear-gradient(180deg,#fff,#fbfdff)!important}
.sp-sidebar-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px;padding:0 15px 15px}
.sp-sidebar-info-item{
  position:relative;
  min-width:0;
  min-height:112px;
  padding:13px 12px;
  overflow:hidden;
  border:1px solid #e1e9f3;
  border-radius:15px;
  background:#f6f9fd;
}
.sp-sidebar-info-item--wide{grid-column:1/-1;min-height:96px;padding-left:58px}
.sp-sidebar-info-icon{display:grid;place-items:center;width:35px;height:35px;margin-bottom:12px;border-radius:11px;background:#e7efff;color:#1459e6}
.sp-sidebar-info-item--wide .sp-sidebar-info-icon{position:absolute;left:12px;top:13px}
.sp-sidebar-info-item:nth-child(4n+2) .sp-sidebar-info-icon{background:#e6f9f6;color:#0a9a8e}
.sp-sidebar-info-item:nth-child(4n+3) .sp-sidebar-info-icon{background:#fff0ea;color:#ef6646}
.sp-sidebar-info-item:nth-child(4n+4) .sp-sidebar-info-icon{background:#f1ecff;color:#6d48d7}
.sp-sidebar-info-icon svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.sp-sidebar-info-item small,.sp-sidebar-info-item strong{display:block}
.sp-sidebar-info-item small{color:#8090a7;font-size:7.5px;font-weight:850;letter-spacing:.075em;text-transform:uppercase}
.sp-sidebar-info-item strong{margin-top:5px;color:#153155;font-size:10.5px;line-height:1.42;overflow-wrap:anywhere}
.sp-sidebar-primary{
  width:calc(100% - 30px);
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 15px 15px;
  padding:0 16px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,#0a2d67,#1459e6);
  color:#fff;
  font-family:inherit;
  font-size:11.5px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 11px 23px rgba(20,89,230,.18);
}
.sp-sidebar-primary span{color:#75e2d8;font-size:18px}

.sp-sidebar-application-list,.sp-sidebar-news-list,.sp-sidebar-resource-list{display:grid;gap:8px;padding:0 14px 14px}
.sp-sidebar-application-row{
  min-width:0;
  display:grid;
  grid-template-columns:84px minmax(0,1fr) 24px;
  align-items:center;
  gap:12px;
  padding:7px;
  border:1px solid #e2e9f3;
  border-radius:14px;
  background:#f8fafd;
  text-decoration:none;
  transition:.22s ease;
}
.sp-sidebar-application-row:hover{border-color:#bcd0f3;background:#fff;transform:translateX(2px);box-shadow:0 10px 23px rgba(7,29,66,.07)}
.sp-sidebar-application-image{height:66px;overflow:hidden;border-radius:10px;background:#dfe8f5}
.sp-sidebar-application-image img{display:block;width:100%;height:100%;object-fit:cover}
.sp-sidebar-application-copy{min-width:0}
.sp-sidebar-application-copy small,.sp-sidebar-application-copy strong,.sp-sidebar-application-copy em{display:block}
.sp-sidebar-application-copy small{color:#0b9d90;font-size:7px;font-weight:850;letter-spacing:.055em;text-transform:uppercase}
.sp-sidebar-application-copy strong{display:-webkit-box;margin-top:4px;overflow:hidden;color:#102b51;font-size:10.5px;line-height:1.35;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sp-sidebar-application-copy em{margin-top:3px;overflow:hidden;color:#7a8ba2;font-size:8.5px;font-style:normal;text-overflow:ellipsis;white-space:nowrap}
.sp-sidebar-application-row>b{display:grid;place-items:center;width:24px;height:24px;border-radius:8px;background:#eaf1ff;color:#1459e6;font-size:11px}

.sp-sidebar-resource-row{
  width:100%;
  min-width:0;
  min-height:70px;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 28px;
  align-items:center;
  gap:11px;
  padding:9px 10px;
  border:1px solid #dfe7f2;
  border-radius:14px;
  background:#f8fafd;
  color:#102b51;
  font-family:inherit;
  text-align:left;
  cursor:pointer;
  transition:.22s ease;
}
.sp-sidebar-resource-row:hover{border-color:#a9c5f1;background:#fff;box-shadow:0 10px 24px rgba(7,29,66,.07);transform:translateY(-2px)}
.sp-sidebar-resource-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#eaf1ff;color:#1459e6}
.sp-sidebar-resource-row:nth-child(2) .sp-sidebar-resource-icon{background:#e9f9f6;color:#0b9c90}
.sp-sidebar-resource-icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.sp-sidebar-resource-row small,.sp-sidebar-resource-row strong{display:block}.sp-sidebar-resource-row small{color:#8191a7;font-size:7.5px;text-transform:uppercase;letter-spacing:.07em}.sp-sidebar-resource-row strong{margin-top:4px;font-size:10.5px}.sp-sidebar-resource-row>b{display:grid;place-items:center;width:28px;height:28px;border-radius:9px;background:#fff;color:#1459e6;font-size:15px}

.sp-detail-sidebar .sp-sidebar-review{
  position:relative;
  overflow:hidden;
  padding:23px!important;
  border:1px solid rgba(255,255,255,.11)!important;
  border-radius:22px!important;
  background:radial-gradient(circle at 100% 0,rgba(112,225,216,.25),transparent 31%),linear-gradient(140deg,#061a3c,#0b3a7a)!important;
  color:#fff;
  box-shadow:0 18px 42px rgba(4,25,59,.18)!important;
}
.sp-sidebar-review-orbit{position:absolute;right:-53px;bottom:-65px;width:165px;height:165px;border:1px solid rgba(112,225,216,.17);border-radius:50%}.sp-sidebar-review-orbit::after{content:"";position:absolute;inset:24px;border:1px dashed rgba(112,225,216,.18);border-radius:50%}
.sp-sidebar-review-stars{position:relative;display:flex;gap:3px;margin-bottom:17px}.sp-sidebar-review-stars svg{width:14px;height:14px;fill:#ff7657;stroke:none}
.sp-sidebar-review>span{position:relative;color:#70e1d7;font-size:8px;font-weight:850;letter-spacing:.11em;text-transform:uppercase}
.sp-sidebar-review h3{position:relative;margin:8px 0 9px;font-family:'Manrope',sans-serif;font-size:21px;line-height:1.22;letter-spacing:-.03em}
.sp-sidebar-review p{position:relative;margin:0;color:#b9c9df;font-size:11px;line-height:1.55}
.sp-sidebar-review>a{position:relative;min-height:44px;display:flex;align-items:center;justify-content:space-between;margin-top:18px;padding:0 14px;border-radius:12px;background:#fff;color:#092755;font-size:10.5px;font-weight:850;text-decoration:none}.sp-sidebar-review>a b{color:#1459e6;font-size:16px}

.sp-sidebar-news{background:linear-gradient(180deg,#fff,#f8fbff)!important}
.sp-sidebar-news-row{min-width:0;display:grid;grid-template-columns:42px minmax(0,1fr) 20px;align-items:center;gap:10px;padding:10px;border:1px solid #e1e9f3;border-radius:13px;background:#fff;text-decoration:none;transition:.2s ease}
.sp-sidebar-news-row:hover{border-color:#b9cef1;transform:translateX(2px)}
.sp-sidebar-news-date{display:grid;place-items:center;align-content:center;width:42px;height:45px;border-radius:11px;background:#eaf1ff;color:#1459e6}.sp-sidebar-news-date strong,.sp-sidebar-news-date small{display:block}.sp-sidebar-news-date strong{font-size:12px}.sp-sidebar-news-date small{font-size:7px;font-weight:800;text-transform:uppercase}
.sp-sidebar-news-copy{min-width:0}.sp-sidebar-news-copy small,.sp-sidebar-news-copy strong{display:block}.sp-sidebar-news-copy small{color:#0b9d90;font-size:7px;font-weight:850;text-transform:uppercase;letter-spacing:.06em}.sp-sidebar-news-copy strong{display:-webkit-box;margin-top:4px;overflow:hidden;color:#142f53;font-size:9.5px;line-height:1.36;-webkit-line-clamp:2;-webkit-box-orient:vertical}.sp-sidebar-news-row>b{color:#1459e6;font-size:11px}
.sp-sidebar-panel-link{min-height:43px;display:flex;align-items:center;justify-content:space-between;margin:0 14px 14px;padding:0 13px;border-radius:11px;background:#eaf1ff;color:#1459e6;font-size:10px;font-weight:850;text-decoration:none}.sp-sidebar-panel-link span{font-size:15px}

@media(max-width:1180px){
  .sp-college-list-page .sp-college-list-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sp-college-list-page .sp-college-list-grid > .sp-college-directory-card{grid-column:auto}
}
@media(max-width:900px){
  .sp-college-list-page .sp-college-list-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sp-college-detail-page .sp-detail-sidebar .sp-sidebar-info{grid-column:1/-1}
}
@media(max-width:640px){
  .sp-college-list-page .sp-college-list-grid{display:grid;grid-template-columns:1fr;margin-right:0;padding-right:0;overflow:visible}
  .sp-college-list-page .sp-college-directory-card{min-width:0}
  .sp-college-list-page .sp-college-directory-card .sp-college-pick-media{height:190px}
  .sp-college-directory-tools>a,.sp-college-directory-tools>button,.sp-college-directory-tools>span{font-size:9.5px}
  .sp-college-detail-page .sp-detail-sidebar .sp-sidebar-info{grid-column:auto}
  .sp-sidebar-panel-head{padding:19px 17px 14px}
  .sp-sidebar-info-grid{padding:0 12px 12px}
  .sp-sidebar-primary{width:calc(100% - 24px);margin:0 12px 12px}
}

/* ================================================================
   PUBLIC INNER PAGES — MODULE-SPECIFIC HERO SYSTEM
   ================================================================ */
.sp-module-page{overflow:hidden;background:#f4f7fc;color:#071d42}
.sp-module-hero{position:relative;isolation:isolate;height:auto;min-height:500px;padding:64px 0;display:flex;align-items:center;background:#071c3e}
.sp-module-hero::before{content:"";position:absolute;z-index:1;inset:0;background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);background-size:46px 46px;mask-image:linear-gradient(100deg,#000 0%,rgba(0,0,0,.88) 55%,transparent 100%);pointer-events:none}
.sp-module-hero::after{position:absolute;z-index:1;right:5%;bottom:-25px;color:rgba(255,255,255,.055);font-family:'Manrope',sans-serif;font-size:clamp(88px,13vw,210px);font-weight:850;line-height:.8;letter-spacing:-.08em;pointer-events:none}
.sp-module-hero .page-banner-img{filter:saturate(.82) contrast(1.04);opacity:.62}
.sp-module-hero .page-banner-overlay{z-index:1}
.sp-module-hero .page-banner-content{width:min(1380px,calc(100% - 80px));max-width:none;margin:0 auto;padding:0}
.sp-module-hero .hero-eyebrow{margin-top:17px;color:#7de4db;font-size:10px;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
.sp-module-hero .hero-eyebrow>span{background:#ff705a;box-shadow:0 0 0 5px rgba(255,112,90,.12)}
.sp-module-hero .page-banner-title{max-width:970px;margin:15px 0 14px;font-family:'Manrope',sans-serif;font-size:clamp(40px,4.4vw,64px);font-weight:760;line-height:1.03;letter-spacing:-.055em;text-wrap:balance}
.sp-module-hero .page-banner-desc{max-width:760px;margin:0;color:#c3d2e8;font-size:15px;line-height:1.7}
.sp-module-back{position:relative;z-index:3;display:inline-flex;align-items:center;color:#a8bddb;font-size:10.5px;font-weight:750;text-decoration:none;transition:.2s ease}
.sp-module-back:hover{color:#fff;transform:translateX(-3px)}
.sp-module-hero-meta{display:flex;align-items:stretch;flex-wrap:wrap;gap:8px;margin-top:24px}
.sp-module-hero-meta>span{min-width:140px;padding:10px 13px;border:1px solid rgba(255,255,255,.15);border-radius:12px;background:rgba(255,255,255,.07);color:#fff;font-size:10.5px;font-weight:750;line-height:1.35;backdrop-filter:blur(9px)}
.sp-module-hero-meta small{display:block;margin-bottom:4px;color:#7bded6;font-size:7.5px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}

.sp-module-hero--blog .page-banner-overlay{background:linear-gradient(96deg,rgba(4,18,45,.97) 0%,rgba(7,35,73,.88) 50%,rgba(7,24,54,.35) 76%,rgba(255,101,78,.28) 100%)}
.sp-module-hero--blog::after{content:"READ"}.sp-module-hero--blog .hero-eyebrow>span{background:#ff765b}
.sp-module-hero--news .page-banner-overlay{background:radial-gradient(circle at 85% 22%,rgba(255,92,84,.25),transparent 26%),linear-gradient(103deg,rgba(4,21,50,.97),rgba(8,46,94,.89) 58%,rgba(124,27,46,.68))}
.sp-module-hero--news::after{content:"NEWS"}.sp-module-hero--news .sp-module-hero-meta small{color:#ff9b86}
.sp-module-hero--event{min-height:510px}.sp-module-hero--event::after{content:"LIVE"}.sp-module-hero--event .page-banner-content{position:relative}.sp-module-hero--event .sp-module-hero-meta{margin-bottom:19px}
.sp-module-hero--guide .page-banner-overlay{background:radial-gradient(circle at 78% 20%,rgba(104,225,214,.19),transparent 26%),linear-gradient(105deg,rgba(5,26,57,.97),rgba(13,61,118,.88) 58%,rgba(45,43,128,.64))}
.sp-module-hero--guide::after{content:"GUIDE"}.sp-module-hero--guide .hero-eyebrow>span{background:#6ee1d7}
.sp-module-hero--finder .page-banner-overlay{background:radial-gradient(circle at 82% 18%,rgba(123,102,246,.32),transparent 26%),linear-gradient(108deg,rgba(4,24,54,.98),rgba(11,72,111,.9) 55%,rgba(56,37,131,.7))}
.sp-module-hero--finder::after{content:"MATCH"}.sp-module-hero--finder .sp-module-hero-meta small{color:#8ce7df}
.sp-module-hero--international .page-banner-overlay{background:radial-gradient(circle at 76% 18%,rgba(79,225,190,.22),transparent 25%),linear-gradient(104deg,rgba(4,30,49,.98),rgba(8,76,88,.89) 53%,rgba(28,44,119,.7))}
.sp-module-hero--international::after{content:"GLOBAL"}.sp-module-hero--international .hero-eyebrow>span{background:#6ee1d7}
.sp-module-hero--medical .page-banner-overlay{background:radial-gradient(circle at 84% 20%,rgba(255,103,84,.23),transparent 27%),linear-gradient(105deg,rgba(3,31,49,.97),rgba(8,83,80,.88) 52%,rgba(116,35,47,.72))}
.sp-module-hero--medical::after{content:"MBBS"}.sp-module-hero--medical .hero-eyebrow>span{background:#ff755b}
.sp-module-hero--listing{min-height:430px;padding:54px 0}
.sp-module-hero--listing .page-banner-title{max-width:860px;font-size:clamp(38px,4vw,57px)}
.sp-module-hero--applications .page-banner-overlay{background:radial-gradient(circle at 84% 18%,rgba(255,191,83,.2),transparent 27%),linear-gradient(105deg,rgba(5,25,58,.97),rgba(21,67,126,.88) 57%,rgba(103,52,88,.68))}.sp-module-hero--applications::after{content:"APPLY"}
.sp-module-hero--about .page-banner-overlay{background:radial-gradient(circle at 82% 18%,rgba(98,226,212,.22),transparent 27%),linear-gradient(105deg,rgba(4,28,54,.97),rgba(6,81,91,.87) 55%,rgba(37,50,118,.66))}.sp-module-hero--about::after{content:"ABOUT"}
.sp-module-hero--contact .page-banner-overlay{background:radial-gradient(circle at 84% 18%,rgba(255,127,87,.24),transparent 28%),linear-gradient(105deg,rgba(5,26,54,.97),rgba(20,61,113,.88) 54%,rgba(121,45,62,.72))}.sp-module-hero--contact::after{content:"HELLO"}
.sp-module-hero--stories .page-banner-overlay{background:radial-gradient(circle at 84% 18%,rgba(171,132,255,.24),transparent 28%),linear-gradient(105deg,rgba(7,25,56,.97),rgba(44,48,126,.88) 54%,rgba(111,42,81,.7))}.sp-module-hero--stories::after{content:"STORIES"}

.sp-module-content{padding:68px 0 82px;background:radial-gradient(circle at 92% 5%,rgba(104,225,214,.075),transparent 20%),linear-gradient(180deg,#eef4fb,#fff 55%)}
.sp-module-content>.course-detail-grid{width:min(1380px,calc(100% - 80px));margin:0 auto;grid-template-columns:minmax(0,1fr) 330px;gap:24px}
.sp-module-detail-card{min-width:0;padding:34px!important;border:1px solid #dfe7f1!important;border-radius:24px!important;background:#fff!important;box-shadow:0 16px 42px rgba(7,29,66,.07)!important}
.sp-module-content-kicker{display:flex;align-items:center;gap:9px;margin-bottom:12px;color:#1459e6;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.11em}
.sp-module-content-kicker::before{content:"";width:20px;border-top:2px solid #ff6c57}
.sp-module-article-meta{gap:7px!important;margin:0 0 25px!important}
.sp-module-article-meta span,.sp-module-detail-card .news-detail-meta span{padding:7px 10px;border:1px solid #dce6f2;border-radius:999px;background:#f6f9fd;color:#526982;font-size:9.5px;font-weight:750}
.sp-module-detail-card .news-list-title{margin:0 0 13px;font-family:'Manrope',sans-serif;font-size:clamp(27px,2.5vw,38px);line-height:1.18;letter-spacing:-.035em}
.sp-module-detail-card .course-detail-body{color:#465d78;font-size:14px;line-height:1.82}
.sp-module-detail-card .course-detail-body h2,.sp-module-detail-card .course-detail-body h3{color:#0a244b;font-family:'Manrope',sans-serif;letter-spacing:-.025em}
.sp-module-detail-card .news-detail-image{border:1px solid #e0e8f2;box-shadow:0 15px 35px rgba(7,29,66,.08)}
.sp-module-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:32px;padding-top:22px;border-top:1px solid #e5ebf3}
.sp-module-actions .btn-red,.sp-module-actions .btn-outline{min-height:45px;display:inline-flex;align-items:center;justify-content:center;padding:0 16px;border-radius:12px;font-size:10.5px;font-weight:800}
.sp-module-side-card{padding:22px!important;border-color:#dce6f2!important;border-radius:20px!important;background:linear-gradient(180deg,#fff,#f6f9fd)!important;box-shadow:0 13px 32px rgba(7,29,66,.065)!important}
.sp-module-side-card .btn-red{width:100%;min-height:44px;margin-top:18px;border-radius:12px}
.sp-module-related{background:#fff}.sp-module-related-head{max-width:720px;margin:0 auto 40px;text-align:center}.sp-module-related-head .eyebrow{justify-content:center}.sp-module-related-head .sec-body{max-width:580px;margin:0 auto}.sp-module-related-action{margin-top:30px;text-align:center}

/* Core discovery heroes keep one design language with different module identities. */
.sp-detail-hero--college{background:radial-gradient(circle at 88% 16%,rgba(91,230,205,.24),transparent 28%),radial-gradient(circle at 10% 0,rgba(25,112,189,.45),transparent 32%),linear-gradient(128deg,#04283e,#075d68 56%,#123a73)}
.sp-detail-hero--course{background:radial-gradient(circle at 88% 14%,rgba(111,224,211,.23),transparent 26%),radial-gradient(circle at 11% 0,rgba(95,91,238,.5),transparent 34%),linear-gradient(128deg,#10164d,#29328a 54%,#0b526b)}
.sp-detail-hero--exam{background:radial-gradient(circle at 86% 15%,rgba(61,207,225,.2),transparent 26%),radial-gradient(circle at 8% 0,rgba(45,103,223,.52),transparent 34%),linear-gradient(128deg,#061b43,#0b4481 56%,#172766)}

.sp-global-inner-hero{isolation:isolate}.sp-global-inner-hero::after{content:"";position:absolute;z-index:1;right:-140px;bottom:-230px;width:560px;height:560px;border:1px solid rgba(255,255,255,.12);border-radius:50%;box-shadow:0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.018);pointer-events:none}
.sp-global-inner-hero .sp-module-back{display:inline-flex;margin-bottom:17px;color:rgba(255,255,255,.72)}
.sp-global-hero-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:24px}
.sp-global-hero-actions a,.sp-global-hero-actions button{min-height:47px;display:inline-flex;align-items:center;justify-content:center;gap:20px;padding:0 17px;border:1px solid rgba(255,255,255,.2);border-radius:13px;background:rgba(255,255,255,.08);color:#fff;font-family:inherit;font-size:11px;font-weight:800;text-decoration:none;cursor:pointer;backdrop-filter:blur(8px)}
.sp-global-hero-actions a{border-color:#6ee1d7;background:#6ee1d7;color:#092c46}.sp-global-hero-actions a:hover,.sp-global-hero-actions button:hover{transform:translateY(-2px)}
.sp-global-inner-hero--study{height:auto;min-height:540px;padding:56px 0}
.sp-global-inner-hero--study .sa-detail-overlay{background:radial-gradient(circle at 82% 18%,rgba(97,223,210,.18),transparent 25%),linear-gradient(102deg,rgba(4,25,55,.94),rgba(11,70,103,.73) 55%,rgba(51,42,125,.5))}
.sp-global-inner-hero--study .sa-detail-title{max-width:900px;font-family:'Manrope',sans-serif;font-size:clamp(42px,4.5vw,62px);letter-spacing:-.05em}
.sp-global-inner-hero--mbbs{background:radial-gradient(circle at 84% 14%,rgba(255,204,86,.16),transparent 25%),linear-gradient(118deg,#043c31,#087b55 56%,#8c3035)}

@media(max-width:900px){
  .sp-module-hero{min-height:470px;padding:54px 0}.sp-module-hero .page-banner-content{width:calc(100% - 48px)}
  .sp-module-content>.course-detail-grid{width:calc(100% - 48px);grid-template-columns:1fr}.sp-module-content .course-detail-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sp-module-hero--international .page-banner-content{grid-template-columns:1fr}.sp-module-hero--international .ua-logo-badge{display:none}
}
@media(max-width:640px){
  .sp-module-hero{min-height:440px;padding:43px 0 48px}.sp-module-hero::before{background-size:34px 34px}.sp-module-hero::after{right:3%;bottom:-5px;font-size:78px}
  .sp-module-hero .page-banner-content{width:calc(100% - 32px)}.sp-module-hero .page-banner-title{font-size:34px;line-height:1.07}.sp-module-hero .page-banner-desc{font-size:12.5px;line-height:1.6}
  .sp-module-hero-meta{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin-top:19px}.sp-module-hero-meta>span{min-width:0;padding:8px 10px;font-size:9px}.sp-module-hero-meta>span:last-child:nth-child(odd){grid-column:1/-1}
  .sp-module-content{padding:48px 0 62px}.sp-module-content>.course-detail-grid{width:calc(100% - 32px)}.sp-module-detail-card{padding:21px!important;border-radius:20px!important}.sp-module-detail-card .course-detail-body{font-size:13px}.sp-module-content .course-detail-sidebar{grid-template-columns:1fr}
  .sp-module-actions{display:grid}.sp-module-actions>*{width:100%}.sp-global-hero-actions{display:grid}.sp-global-hero-actions>*{width:100%}
  .sp-global-inner-hero--study{min-height:590px;padding:43px 0}.sp-global-inner-hero--study .sa-detail-title{font-size:36px;line-height:1.08}.sp-global-inner-hero--study .sa-detail-desc{font-size:13px;line-height:1.62}
}

/* Improve readability of compact text inside detail-page sidebars. */
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-kicker{font-size:10.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-panel-head p{font-size:13px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-application-copy small{font-size:9px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-application-copy strong{font-size:12.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-application-copy em{font-size:10.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-resource-row small{font-size:9.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-resource-row strong{font-size:12.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-review>span{font-size:10px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-review p{font-size:13px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-review>a{font-size:12.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-news-date small{font-size:9px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-news-copy small{font-size:9px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-news-copy strong{font-size:11.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-sidebar-panel-link{font-size:12px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .cdi-label{font-size:12px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .cdi-val{font-size:12.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-side-link-list small{font-size:9.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-side-link-list strong{font-size:12.5px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-detail-side-card>span{font-size:10px}
:is(.sp-detail-sidebar,.course-detail-sidebar) .sp-detail-side-card p{font-size:13.5px}

/* ================================================================
   IMAGE-INDEPENDENT APPLICATIONS DIRECTORY
   ================================================================ */
.sp-applications-index-hero{min-height:440px;background:#061b43}
.sp-applications-index-hero .page-banner-overlay{background:radial-gradient(circle at 84% 12%,rgba(77,210,211,.2),transparent 25%),radial-gradient(circle at 8% 0,rgba(49,103,216,.4),transparent 31%),linear-gradient(124deg,#061b43 0%,#0b407b 58%,#202b67 100%)}
.sp-applications-index-hero .page-banner-content{position:relative;z-index:3}
.sp-applications-index-hero .page-banner-title em{display:block;background:linear-gradient(90deg,#70e0d6 0%,#77aaff 100%);background-clip:text;-webkit-background-clip:text;color:transparent!important;font-style:normal!important}
.sp-applications-open-badge{display:inline-flex;align-items:center;gap:11px;padding:8px 15px 8px 8px;border:1px solid rgba(112,224,214,.33);border-radius:16px;background:linear-gradient(135deg,rgba(112,224,214,.16),rgba(255,255,255,.065));box-shadow:inset 0 1px 0 rgba(255,255,255,.11),0 15px 38px rgba(1,17,48,.18);backdrop-filter:blur(10px)}
.sp-applications-open-icon{display:grid;place-items:center;width:39px;height:39px;flex:0 0 39px;border-radius:11px;background:linear-gradient(135deg,#ff775d,#ff4f63);color:#fff;box-shadow:0 10px 24px rgba(255,85,92,.25)}
.sp-applications-open-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.sp-applications-open-copy small,.sp-applications-open-copy strong{display:block}.sp-applications-open-copy small{color:#83e8df;font-size:8px;font-weight:850;line-height:1.1;text-transform:uppercase;letter-spacing:.12em}.sp-applications-open-copy strong{margin-top:5px;color:#fff;font-size:12px;font-weight:800;line-height:1.1;letter-spacing:.025em}
.sp-applications-hero-squares{position:absolute;z-index:2;inset:0;overflow:hidden;pointer-events:none}
.sp-applications-hero-squares>i{position:absolute;display:block;box-sizing:border-box;border:1px solid rgba(120,225,219,.16);border-radius:18px;background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(80,199,205,.018));box-shadow:inset 0 0 0 11px rgba(255,255,255,.012),0 18px 45px rgba(1,18,48,.08);transform:rotate(12deg)}
.sp-applications-hero-squares>i::after{content:"";position:absolute;inset:25%;border:1px solid rgba(120,225,219,.13);border-radius:9px}
.sp-applications-hero-squares>i:nth-child(1){left:-44px;top:54px;width:142px;height:142px;transform:rotate(18deg)}
.sp-applications-hero-squares>i:nth-child(2){left:42%;top:40px;width:58px;height:58px;transform:rotate(-11deg)}
.sp-applications-hero-squares>i:nth-child(3){left:48%;bottom:-45px;width:132px;height:132px;transform:rotate(25deg)}
.sp-applications-hero-squares>i:nth-child(4){right:28%;top:-38px;width:104px;height:104px;transform:rotate(-16deg)}
.sp-applications-hero-squares>i:nth-child(5){right:3%;top:44px;width:72px;height:72px;transform:rotate(14deg)}
.sp-applications-hero-squares>i:nth-child(6){right:17%;bottom:-58px;width:165px;height:165px;transform:rotate(-12deg)}
.sp-applications-hero-art{position:absolute;z-index:2;right:7%;top:50%;width:360px;height:270px;overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:29px;background:radial-gradient(circle at 100% 0,rgba(100,225,214,.2),transparent 35%),linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045));box-shadow:0 28px 70px rgba(1,14,40,.3);backdrop-filter:blur(14px);transform:translateY(-50%) rotate(1.2deg);pointer-events:none}
.sp-applications-hero-art::before{content:"✓";position:absolute;left:32px;top:34px;display:grid;place-items:center;width:70px;height:70px;border:1px solid rgba(255,255,255,.35);border-radius:20px;background:var(--sp-action-gradient);color:#fff;font-family:'Manrope',sans-serif;font-size:27px;font-weight:850;box-shadow:0 15px 35px rgba(1,18,48,.25)}
.sp-applications-hero-art::after{content:"APPLICATION ROUTE";position:absolute;left:33px;bottom:25px;color:#79e1d8;font-family:'Manrope',sans-serif;font-size:9px;font-weight:850;letter-spacing:.14em}
.sp-applications-hero-art>span{position:absolute;display:block;border-radius:999px;background:rgba(255,255,255,.18)}
.sp-applications-hero-art span:nth-child(1){left:124px;top:45px;width:185px;height:14px}
.sp-applications-hero-art span:nth-child(2){left:124px;top:74px;width:126px;height:11px;background:rgba(112,224,214,.4)}
.sp-applications-hero-art span:nth-child(3){left:32px;right:32px;bottom:58px;height:66px;border:1px solid rgba(255,255,255,.14);border-radius:17px;background:rgba(5,28,64,.28)}
.sp-applications-hero-art span:nth-child(3)::before{content:"PROFILE";position:absolute;left:16px;top:16px;color:#a6b9d6;font-size:8px;font-weight:850;letter-spacing:.1em}
.sp-applications-hero-art span:nth-child(3)::after{content:"SHORTLIST  →  APPLY";position:absolute;left:16px;bottom:14px;color:#fff;font-size:11px;font-weight:800;letter-spacing:.03em}

.sp-applications-index{position:relative;overflow:hidden;padding:96px 0 104px;background:radial-gradient(circle at 95% 4%,rgba(92,99,232,.08),transparent 22%),radial-gradient(circle at 3% 28%,rgba(45,196,184,.075),transparent 20%),linear-gradient(180deg,#f2f6fc 0%,#fff 48%,#f7f9fd 100%)}
.sp-applications-index::before{content:"";position:absolute;right:-160px;top:320px;width:390px;height:390px;border:1px solid rgba(18,87,229,.07);border-radius:50%;box-shadow:0 0 0 70px rgba(18,87,229,.022),0 0 0 140px rgba(18,87,229,.012);pointer-events:none}
.sp-applications-index-shell{position:relative;z-index:1;width:min(1380px,calc(100% - 64px));max-width:none;padding:0}
.sp-applications-index-head{max-width:850px;margin-bottom:48px}
.sp-applications-index-head .section-tag{margin-bottom:15px;padding:8px 14px;background:#e9f1ff;color:#1459e6;font-size:9px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
.sp-applications-index-head .section-title{margin:0 0 14px;color:#071d42;font-family:'Manrope',sans-serif;font-size:clamp(38px,4vw,58px);font-weight:800;line-height:1.05;letter-spacing:-.055em}
.sp-applications-index-head .section-subtitle{max-width:680px;color:#657890;font-size:14px;line-height:1.72}

.sp-application-list-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.sp-application-list-card{--app-tone-a:#1459e6;--app-tone-b:#152e72;--app-glow:rgba(92,159,255,.32);position:relative;min-width:0;min-height:370px;overflow:hidden;border:1px solid rgba(255,255,255,.34);border-radius:27px;background:radial-gradient(circle at 88% 8%,var(--app-glow),transparent 29%),linear-gradient(138deg,var(--app-tone-a),var(--app-tone-b));box-shadow:0 18px 45px rgba(6,28,65,.12);transition:transform .28s ease,box-shadow .28s ease}
.sp-application-list-card--tone-2{--app-tone-a:#0b9588;--app-tone-b:#075068;--app-glow:rgba(97,232,211,.33)}
.sp-application-list-card--tone-3{--app-tone-a:#ef6a49;--app-tone-b:#a92f60;--app-glow:rgba(255,186,105,.3)}
.sp-application-list-card--tone-4{--app-tone-a:#7555d7;--app-tone-b:#303c89;--app-glow:rgba(185,143,255,.32)}
.sp-application-list-card--tone-5{--app-tone-a:#d64b6c;--app-tone-b:#702c65;--app-glow:rgba(255,150,169,.31)}
.sp-application-list-card--tone-6{--app-tone-a:#b77916;--app-tone-b:#714233;--app-glow:rgba(255,214,114,.32)}
.sp-application-list-card:hover{transform:translateY(-7px);box-shadow:0 28px 60px rgba(6,28,65,.2)}
.sp-application-list-link{position:relative;z-index:1;min-height:370px;display:flex;flex-direction:column;padding:27px;color:#fff;text-decoration:none}
.sp-application-card-orbit{position:absolute;z-index:-1;right:-78px;top:-94px;width:270px;height:270px;border:1px solid rgba(255,255,255,.15);border-radius:50%;box-shadow:0 0 0 42px rgba(255,255,255,.026),0 0 0 84px rgba(255,255,255,.015)}
.sp-application-card-number{position:absolute;z-index:-1;right:20px;bottom:-18px;color:rgba(255,255,255,.06);font-family:'Manrope',sans-serif;font-size:126px;font-weight:850;line-height:1;letter-spacing:-.08em}
.sp-application-card-topline{display:flex;align-items:center;justify-content:space-between;gap:15px}
.sp-application-status,.sp-application-session{display:inline-flex;align-items:center;min-height:30px;padding:0 11px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:rgba(4,20,49,.16);color:#fff;font-size:8px;font-weight:850;letter-spacing:.08em;text-transform:uppercase;backdrop-filter:blur(8px)}
.sp-application-status{max-width:70%;gap:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sp-application-status i{flex:0 0 auto;width:7px;height:7px;border-radius:50%;background:#7ff0df;box-shadow:0 0 0 5px rgba(127,240,223,.12)}
.sp-application-session{background:rgba(255,255,255,.12)}
.sp-application-identity{display:grid;grid-template-columns:68px minmax(0,1fr);align-items:center;gap:17px;margin-top:34px}
.sp-application-monogram{display:grid;place-items:center;width:68px;height:68px;border:1px solid rgba(255,255,255,.26);border-radius:20px;background:rgba(255,255,255,.14);color:#fff;font-family:'Manrope',sans-serif;font-size:19px;font-weight:850;letter-spacing:.02em;box-shadow:0 15px 35px rgba(3,19,47,.16);backdrop-filter:blur(10px)}
.sp-application-identity small{display:block;color:rgba(255,255,255,.66);font-size:8px;font-weight:850;letter-spacing:.11em;text-transform:uppercase}
.sp-application-identity h2{margin:7px 0 0;color:#fff;font-family:'Manrope',sans-serif;font-size:clamp(21px,2vw,28px);font-weight:780;line-height:1.15;letter-spacing:-.04em;overflow-wrap:anywhere}
.sp-application-list-link>p{display:-webkit-box;max-width:590px;margin:20px 0 0;overflow:hidden;color:rgba(255,255,255,.76);font-size:11.5px;line-height:1.65;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sp-application-facts{display:grid;grid-template-columns:1fr 1.3fr;gap:8px;margin-top:20px}
.sp-application-facts>span{min-width:0;padding:11px 12px;border:1px solid rgba(255,255,255,.15);border-radius:13px;background:rgba(4,20,49,.12)}
.sp-application-facts small,.sp-application-facts strong{display:block}.sp-application-facts small{color:rgba(255,255,255,.58);font-size:7px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.sp-application-facts strong{margin-top:5px;overflow:hidden;color:#fff;font-size:10.5px;text-overflow:ellipsis;white-space:nowrap}
.sp-application-card-action{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:auto;padding-top:19px}
.sp-application-card-action small,.sp-application-card-action strong{display:block}.sp-application-card-action small{color:rgba(255,255,255,.56);font-size:7.5px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.sp-application-card-action strong{margin-top:4px;font-size:11.5px}.sp-application-card-action b{display:grid;place-items:center;width:45px;height:45px;border-radius:15px;background:linear-gradient(135deg,#ff7048,#ff4f63);color:#fff;font-size:17px;box-shadow:0 11px 25px rgba(4,20,49,.22);transition:transform .25s ease}.sp-application-list-card:hover .sp-application-card-action b{transform:translate(3px,-3px)}
.sp-application-empty{grid-column:1/-1;padding:52px;border:1px dashed #bdcce0;border-radius:25px;background:#fff;text-align:center}.sp-application-empty>span{color:#1459e6;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}.sp-application-empty h2{margin:10px 0 8px;font-family:'Manrope',sans-serif;font-size:31px}.sp-application-empty p{color:#6b7d93}
.sp-applications-index .custom-pagination{margin-top:48px}.sp-applications-index .pagination-btn.active,.sp-applications-index .pagination-btn:hover{border-color:#1459e6;background:#1459e6;color:#fff}

@media(max-width:900px){
  .sp-applications-hero-art{right:-45px;opacity:.55}.sp-applications-hero-squares>i:nth-child(2),.sp-applications-hero-squares>i:nth-child(4){display:none}.sp-application-list-card,.sp-application-list-link{min-height:390px}.sp-application-identity{grid-template-columns:58px minmax(0,1fr)}.sp-application-monogram{width:58px;height:58px;border-radius:17px}
}
@media(max-width:720px){
  .sp-applications-index-hero{min-height:410px}.sp-applications-hero-art{display:none}.sp-applications-hero-squares>i{opacity:.7}.sp-applications-hero-squares>i:nth-child(1){left:-70px;top:36px}.sp-applications-hero-squares>i:nth-child(3){left:auto;right:-45px;bottom:-40px}.sp-applications-hero-squares>i:nth-child(5),.sp-applications-hero-squares>i:nth-child(6){display:none}.sp-applications-open-badge{padding:7px 13px 7px 7px;border-radius:14px}.sp-applications-open-icon{width:36px;height:36px;flex-basis:36px}.sp-applications-index{padding:68px 0 78px}.sp-applications-index-shell{width:calc(100% - 32px)}.sp-applications-index-head{margin-bottom:34px}.sp-application-list-grid{grid-template-columns:1fr;gap:15px}.sp-application-list-card,.sp-application-list-link{min-height:355px}.sp-application-list-link{padding:21px}.sp-application-card-topline{align-items:flex-start}.sp-application-status{max-width:66%}.sp-application-identity{margin-top:27px}.sp-application-list-link>p{margin-top:16px}.sp-application-facts{margin-top:16px}.sp-application-card-number{font-size:102px}.sp-application-empty{padding:34px 20px}
}
@media(max-width:430px){
  .sp-application-facts{grid-template-columns:1fr}.sp-application-facts>span:last-child{display:none}.sp-application-list-card,.sp-application-list-link{min-height:335px}.sp-application-identity h2{font-size:21px}.sp-application-status,.sp-application-session{font-size:7px}
}

/* Softer application card palette with prominent institute logos. */
.sp-application-list-card{--app-tone-a:#edf4ff;--app-tone-b:#dce9ff;--app-accent:#1459e6;--app-ink:#0b274f;--app-muted:#5f7188;--app-glow:rgba(91,151,244,.14);border-color:rgba(19,65,119,.12);background:radial-gradient(circle at 88% 8%,var(--app-glow),transparent 31%),linear-gradient(138deg,var(--app-tone-a),var(--app-tone-b));box-shadow:0 16px 38px rgba(15,49,91,.09)}
.sp-application-list-card--tone-2{--app-tone-a:#e8f8f5;--app-tone-b:#d4f0ed;--app-accent:#087f75;--app-glow:rgba(36,181,164,.13)}
.sp-application-list-card--tone-3{--app-tone-a:#fff1ec;--app-tone-b:#ffe0da;--app-accent:#d34f3c;--app-glow:rgba(234,105,79,.13)}
.sp-application-list-card--tone-4{--app-tone-a:#f3efff;--app-tone-b:#e3dcfa;--app-accent:#644cc0;--app-glow:rgba(126,96,210,.13)}
.sp-application-list-card--tone-5{--app-tone-a:#fff0f4;--app-tone-b:#f8dce7;--app-accent:#bd4167;--app-glow:rgba(211,91,129,.13)}
.sp-application-list-card--tone-6{--app-tone-a:#fff6e2;--app-tone-b:#f4e3bf;--app-accent:#a9660c;--app-glow:rgba(202,145,48,.14)}
.sp-application-list-card:hover{border-color:color-mix(in srgb,var(--app-accent) 28%,white);box-shadow:0 24px 52px rgba(15,49,91,.14)}
.sp-application-list-link{color:var(--app-ink)}
.sp-application-card-orbit{border-color:color-mix(in srgb,var(--app-accent) 16%,transparent);box-shadow:0 0 0 42px color-mix(in srgb,var(--app-accent) 3.5%,transparent),0 0 0 84px color-mix(in srgb,var(--app-accent) 2%,transparent)}
.sp-application-card-number{color:color-mix(in srgb,var(--app-accent) 8%,transparent)}
.sp-application-status,.sp-application-session{border-color:color-mix(in srgb,var(--app-accent) 18%,white);background:rgba(255,255,255,.72);color:var(--app-accent);box-shadow:0 7px 18px rgba(22,55,94,.045)}
.sp-application-status i{background:var(--app-accent);box-shadow:0 0 0 5px color-mix(in srgb,var(--app-accent) 11%,transparent)}
.sp-application-identity{grid-template-columns:120px minmax(0,1fr);gap:20px}
.sp-application-logo{display:grid;place-items:center;width:120px;height:88px;overflow:hidden;border:1px solid rgba(21,58,103,.11);border-radius:21px;background:#fff;box-shadow:0 14px 30px rgba(20,55,96,.1)}
.sp-application-logo img{display:block;width:100%;height:100%;padding:3px;object-fit:contain}
.sp-application-logo strong{color:var(--app-accent);font-family:'Manrope',sans-serif;font-size:23px;font-weight:850;letter-spacing:.02em}
.sp-application-identity small{color:var(--app-accent)}
.sp-application-identity h2{color:var(--app-ink)}
.sp-application-list-link>p{color:var(--app-muted)}
.sp-application-facts>span{border-color:rgba(24,64,111,.1);background:rgba(255,255,255,.56)}
.sp-application-facts small{color:#72839a}.sp-application-facts strong{color:var(--app-ink)}
.sp-application-card-action small{color:#78899e}.sp-application-card-action strong{color:var(--app-ink)}
@media(max-width:900px){
  .sp-application-identity{grid-template-columns:104px minmax(0,1fr);gap:16px}.sp-application-logo{width:104px;height:78px;border-radius:19px}.sp-application-logo img{padding:2px}
}
@media(max-width:430px){
  .sp-application-identity{grid-template-columns:92px minmax(0,1fr);gap:13px}.sp-application-logo{width:92px;height:68px;border-radius:17px}.sp-application-logo img{padding:2px}
}

/* Application card legibility and compact logo spacing. */
.sp-application-card-topline{justify-content:flex-start}
.sp-application-status{max-width:90%;min-height:34px;padding:0 13px;font-size:10.5px}
.sp-application-identity{grid-template-columns:120px minmax(0,1fr)}
.sp-application-logo{position:relative;width:120px;height:64px;border-color:rgba(21,58,103,.14);border-radius:17px;background:#fff;box-shadow:0 13px 25px rgba(21,58,103,.15),inset 0 1px 0 rgba(255,255,255,.98),inset 0 -2px 5px rgba(21,58,103,.045);transform:perspective(500px) rotateX(1deg)}
.sp-application-logo img{padding:2px 9px;filter:drop-shadow(0 3px 4px rgba(7,29,66,.13));transform:none}
.sp-application-identity small{font-size:10.5px}
.sp-application-list-link>p{color:#50657f;font-size:14.5px;font-weight:600;line-height:1.55}
.sp-application-facts small{font-size:9.5px}
.sp-application-facts strong{font-size:12.5px}
.sp-application-card-action{width:max-content;justify-content:flex-start;gap:12px;margin-right:auto}
.sp-application-card-action small{font-size:9.5px}
.sp-application-card-action strong{font-size:13.5px}
.sp-application-card-action b{width:40px;height:40px;border-radius:13px;font-size:16px}
@media(max-width:900px){
  .sp-application-identity{grid-template-columns:104px minmax(0,1fr)}.sp-application-logo{width:104px;height:62px}.sp-application-status{font-size:10px}.sp-application-list-link>p{font-size:14px}
}
@media(max-width:430px){
  .sp-application-identity{grid-template-columns:92px minmax(0,1fr)}.sp-application-logo{width:92px;height:56px}.sp-application-logo img{padding-left:7px;padding-right:7px}.sp-application-status{font-size:9.5px}.sp-application-identity small{font-size:9.5px}.sp-application-list-link>p{font-size:13.5px}.sp-application-facts small{font-size:9px}.sp-application-facts strong{font-size:12px}.sp-application-card-action small{font-size:9px}.sp-application-card-action strong{font-size:13px}
}

/* College directory logos and compact, readable detail sidebar. */
.sp-college-directory-card .sp-college-identity{grid-template-columns:100px minmax(0,1fr);gap:15px}
.sp-college-directory-card .sp-college-logo{width:100px;height:52px;margin-top:-22px;padding:2px 4px;border-radius:14px}
.sp-college-directory-card .sp-college-logo img{inset:2px 4px;width:calc(100% - 8px);height:calc(100% - 4px);padding:0;object-fit:contain}
.sp-college-directory-card .sp-college-logo strong{font-size:20px;font-weight:850;letter-spacing:.035em}

.sp-college-detail-page .sp-detail-sidebar{gap:13px}
.sp-college-detail-page .sp-sidebar-panel-head{padding:17px 17px 12px}
.sp-college-detail-page .sp-sidebar-panel-head h3{margin-top:7px;font-size:22px}
.sp-college-detail-page .sp-sidebar-panel-head p{margin-top:6px;font-size:13.5px;line-height:1.45}
.sp-college-detail-page .sp-sidebar-kicker{font-size:10.5px}
.sp-college-detail-page .sp-sidebar-info-grid{gap:7px;padding:0 12px 12px}
.sp-college-detail-page .sp-sidebar-info-item{min-height:88px;padding:10px 11px;border-radius:13px}
.sp-college-detail-page .sp-sidebar-info-item--wide{min-height:72px;padding-left:51px}
.sp-college-detail-page .sp-sidebar-info-icon{width:31px;height:31px;margin-bottom:8px;border-radius:9px}
.sp-college-detail-page .sp-sidebar-info-item--wide .sp-sidebar-info-icon{left:10px;top:10px}
.sp-college-detail-page .sp-sidebar-info-icon svg{width:17px;height:17px}
.sp-college-detail-page .sp-sidebar-info-item small{font-size:9.5px;line-height:1.25}
.sp-college-detail-page .sp-sidebar-info-item strong{margin-top:4px;font-size:12.5px;line-height:1.35}
.sp-college-detail-page .sp-sidebar-primary{min-height:44px;margin:0 12px 12px;width:calc(100% - 24px);font-size:13px}

.sp-college-detail-page .sp-sidebar-application-list{gap:7px;padding:0 12px 12px}
.sp-college-detail-page .sp-sidebar-application-row{grid-template-columns:84px minmax(0,1fr) 26px;gap:12px;min-height:68px;padding:7px}
.sp-sidebar-application-logo{position:relative;display:grid;place-items:center;width:84px;height:52px;overflow:hidden;border:1px solid #e0e8f2;border-radius:10px;background:#fff;color:#1459e6}
.sp-sidebar-application-logo strong{font-size:17px;font-weight:850;letter-spacing:.035em}
.sp-sidebar-application-logo img{position:absolute;inset:2px;width:calc(100% - 4px);height:calc(100% - 4px);padding:0;object-fit:contain;background:#fff}
.sp-college-detail-page .sp-sidebar-application-copy small{font-size:9.5px}
.sp-college-detail-page .sp-sidebar-application-copy strong{font-size:13px;line-height:1.3}
.sp-college-detail-page .sp-sidebar-application-copy em{font-size:11px}

@media(max-width:640px){
  .sp-college-directory-card .sp-college-identity{grid-template-columns:90px minmax(0,1fr);gap:12px}
  .sp-college-directory-card .sp-college-logo{width:90px;height:48px}
  .sp-college-directory-card .sp-college-logo strong{font-size:18px}
}

/* Exams listing readability: increase only the page's small text. */
.sp-exam-list-page .sp-detail-kicker{font-size:12.5px}
.sp-exam-list-page .sp-list-hero-copy>p{font-size:18px}
.sp-exam-list-page .sp-exam-hero-pills span{font-size:13px}
.sp-exam-list-page .sp-exam-board-top small{font-size:11.5px}
.sp-exam-list-page .sp-exam-route b{font-size:10.5px}
.sp-exam-list-page .sp-exam-route span{font-size:14px}
.sp-exam-list-page .sp-exam-route small{font-size:11.5px}
.sp-exam-list-page .sp-exam-hero-board>button{font-size:14px}
.sp-exam-list-page .listing-search-input{font-size:17px}
.sp-exam-list-page .sp-list-search-submit{font-size:14px}
.sp-exam-list-page .sp-section-kicker{font-size:12.5px}
.sp-exam-list-page .sp-list-results-head>p{font-size:15.5px}
.sp-exam-list-page .sp-exam-card-head>div span{font-size:11px}
.sp-exam-list-page .sp-exam-card-head>div b{font-size:17px}
.sp-exam-list-page .sp-exam-card-body>p{font-size:14px;line-height:1.55}
.sp-exam-list-page .sp-exam-card-meta small{font-size:9.5px}
.sp-exam-list-page .sp-exam-card-meta strong{font-size:12.5px}
.sp-exam-list-page .sp-exam-card-link{font-size:13px}
.sp-exam-list-page .sp-list-load-more{min-height:50px;display:inline-flex;align-items:center;justify-content:center;gap:14px;padding:0 24px;border:0;background:linear-gradient(135deg,#ff7048 0%,#ff4f63 100%);color:#fff;font-size:14px;font-weight:850;box-shadow:0 12px 27px rgba(255,86,77,.25);transition:.22s ease}.sp-exam-list-page .sp-list-load-more:hover{background:linear-gradient(135deg,#ff815e 0%,#f43f59 100%);color:#fff;transform:translateY(-2px);box-shadow:0 16px 32px rgba(255,86,77,.32)}

@media(max-width:640px){
  .sp-exam-list-page .sp-list-hero-copy>p{font-size:16px}
  .sp-exam-list-page .listing-search-input{font-size:16px}
  .sp-exam-list-page .sp-list-results-head>p{font-size:14.5px}
}

/* ================================================================
   THEMED COLLEGE DOCUMENT DOWNLOAD MODAL
   Shared by brochure and fee-structure requests.
   ================================================================ */
.custom-download-modal{
  display:none;
  align-items:center;
  justify-content:center;
  overflow-y:auto;
  padding:24px;
  background:rgba(2,12,31,.78);
  backdrop-filter:blur(9px);
}
.custom-download-modal-content{
  position:relative;
  top:auto;
  left:auto;
  width:min(570px,100%);
  max-width:none;
  max-height:calc(100vh - 48px);
  overflow:auto;
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  background:#fff;
  box-shadow:0 35px 90px rgba(1,14,38,.42);
  transform:none;
  animation:sp-document-modal-in .24s ease-out both;
}
.download-popup-header{
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:15px;
  min-height:154px;
  padding:27px 64px 25px 27px;
  overflow:hidden;
  background:radial-gradient(circle at 92% 0,rgba(104,225,214,.26),transparent 34%),linear-gradient(125deg,#061b3f,#0d3e77 62%,#14666d);
  color:#fff;
}
.download-popup-header::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(100deg,transparent,rgba(0,0,0,.8));
}
.download-popup-header::after{
  content:"";
  position:absolute;
  z-index:-1;
  right:-55px;
  bottom:-82px;
  width:190px;
  height:190px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  box-shadow:0 0 0 38px rgba(255,255,255,.025),0 0 0 76px rgba(255,255,255,.016);
}
.download-popup-document-icon{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:15px;
  background:linear-gradient(135deg,#ff765b,#ff4f63);
  color:#fff;
  box-shadow:0 13px 30px rgba(255,82,91,.25);
}
.custom-download-modal[data-document-type="fee_structure"] .download-popup-document-icon{background:linear-gradient(135deg,#66e1d6,#2bbcaf);color:#062c47;box-shadow:0 13px 30px rgba(43,188,175,.22)}
.download-popup-document-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.download-popup-header-copy{min-width:0;padding-top:1px}
.download-popup-header-copy>small{display:block;margin-bottom:7px;color:#78e5dc;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}
.download-popup-header h3{margin:0;font-family:'Manrope',sans-serif;font-size:25px;font-weight:800;line-height:1.15;letter-spacing:-.035em}
.download-popup-header p{max-width:390px;margin:9px 0 0;color:#c8d8ea;font-size:12px;line-height:1.55;opacity:1}
.close-download-modal{
  z-index:3;
  top:18px;
  right:18px;
  display:grid;
  place-items:center;
  width:35px;
  height:35px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:11px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:24px;
  transition:.2s ease;
}
.close-download-modal:hover{background:#fff;color:#071d42;transform:rotate(5deg)}
.download-popup-body{padding:27px;background:radial-gradient(circle at 100% 100%,rgba(104,225,214,.07),transparent 28%),#fff}
.download-popup-note{
  position:relative;
  margin:0 0 20px;
  padding:13px 14px 13px 42px;
  border:1px solid #dce8f3;
  border-radius:12px;
  background:#f4f8fd;
  color:#60738a;
  font-size:11.5px;
  line-height:1.55;
}
.download-popup-note::before{content:"i";position:absolute;left:13px;top:50%;display:grid;place-items:center;width:20px;height:20px;border-radius:7px;background:#dfeaff;color:#1459e6;font-size:11px;font-weight:850;transform:translateY(-50%)}
.download-popup-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
.download-popup-body label{display:flex;margin:0;flex-direction:column;gap:7px;color:#071d42;font-size:11px;font-weight:800}
.download-popup-body label>span{display:block}
.download-popup-body .consult-required{color:#ff5d59}
.download-popup-body .form-control{
  width:100%;
  height:50px;
  margin:0;
  padding:0 14px;
  border:1px solid #dce5ef;
  border-radius:12px;
  outline:0;
  background:#f9fbfe;
  color:#071d42;
  font:500 13px 'Manrope',sans-serif;
  transition:.2s ease;
}
.download-popup-body .form-control::placeholder{color:#95a3b4}
.download-popup-body .form-control:focus{border-color:#1459e6;background:#fff;box-shadow:0 0 0 3px rgba(20,89,230,.1)}
.download-field-full{grid-column:1/-1}
.download-submit-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  height:53px;
  margin-top:20px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,#ff765b,#ff4f63);
  color:#fff;
  font:800 13px 'Manrope',sans-serif;
  box-shadow:0 14px 31px rgba(255,83,91,.23);
  transition:.2s ease;
}
.download-submit-btn::after{content:"→";font-size:17px;font-weight:500}
.download-submit-btn:hover{background:linear-gradient(135deg,#ff856c,#f33f58);transform:translateY(-2px);box-shadow:0 18px 36px rgba(255,83,91,.3)}
.download-submit-btn:disabled{cursor:wait;opacity:.65;transform:none}
.download-popup-privacy{display:flex;align-items:center;justify-content:center;gap:7px;margin-top:13px;color:#7a8ba0;font-size:9.5px;line-height:1.4;text-align:center}
.download-popup-privacy>span{display:grid;place-items:center;width:17px;height:17px;flex:0 0 17px;border-radius:50%;background:#e8f8f5;color:#07877d;font-size:9px;font-weight:900}
.download-popup-status{display:none;margin-top:13px;padding:11px 12px;border-radius:10px;font-size:10.5px;line-height:1.5}
.download-popup-status.is-visible{display:block}.download-popup-status.is-info{border:1px solid #bfe7e2;background:#eefaf8;color:#14665f}
@keyframes sp-document-modal-in{from{opacity:0;transform:translateY(15px) scale(.98)}to{opacity:1;transform:none}}

@media(max-width:640px){
  .custom-download-modal{padding:12px}
  .custom-download-modal-content{max-height:calc(100vh - 24px);border-radius:20px}
  .download-popup-header{grid-template-columns:46px minmax(0,1fr);gap:12px;min-height:142px;padding:23px 50px 22px 20px}
  .download-popup-document-icon{width:46px;height:46px;border-radius:13px}.download-popup-document-icon svg{width:23px;height:23px}
  .download-popup-header h3{font-size:21px}.download-popup-header p{font-size:11px}
  .close-download-modal{top:13px;right:13px;width:32px;height:32px}
  .download-popup-body{padding:20px}
  .download-popup-grid{grid-template-columns:1fr;gap:13px}.download-field-full{grid-column:auto}
  .download-submit-btn{margin-top:17px}
}
@media(prefers-reduced-motion:reduce){.custom-download-modal-content{animation:none}.close-download-modal,.download-popup-body .form-control,.download-submit-btn{transition:none}}
