*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --red:#b82827;
  --green:#96c22b;
  --red-dark:#a93226;
  --red-light:#e74c3c;
  --red-pale:#fdf1f0;
  --red-mid:#cb4335;
  --white:#ffffff;
  --off-white:#f8f7f5;
  --cream:#faf9f7;
  --charcoal:#11213a;
  --dark:#111827;
  --gray:#6b7280;
  --gray-light:#e5e7eb;
  --gray-pale:#f3f4f6;
  --border:#e8e8e8;
  --kn-hex-teal:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='84' viewBox='0 0 96 84'%3E%3Cpath d='M24 2 48 16 48 44 24 58 0 44 0 16Z M72 44 96 58 96 86 72 100 48 86 48 58Z' fill='none' stroke='%2304b7c4' stroke-opacity='.18' stroke-width='1.4'/%3E%3C/svg%3E");
  --kn-hex-orange:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='84' viewBox='0 0 96 84'%3E%3Cpath d='M24 2 48 16 48 44 24 58 0 44 0 16Z M72 44 96 58 96 86 72 100 48 86 48 58Z' fill='none' stroke='%23ff6b00' stroke-opacity='.15' stroke-width='1.4'/%3E%3C/svg%3E");
}
html{scroll-behavior:smooth}
body{font-family:'Outfit',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:#b82827;
    border-color:#b82827;
    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:#b82827;
    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-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:7px;height:7px;background:#e74c3c;border-radius:0;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 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:7px;height:7px;background:#e74c3c;border-radius:0;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 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:7px;height:7px;background:#e74c3c;border-radius:0;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 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)}
.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:#fdecea;border:1px solid #f5c6cb;color:#a93226}

/* ═══════════════════════════════════
   CONSULTATION MODAL
═══════════════════════════════════ */
.consult-modal{
  position:fixed;inset:0;
  z-index:1000;
  display:none;
  align-items:flex-start;justify-content:center;
  padding:32px 16px;
  overflow-y:auto;
}
.consult-modal.is-open{display:flex}
.consult-modal-backdrop{
  position:fixed;inset:0;
  background:rgba(2,8,31,0.72);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}
.consult-modal-card{
  position:relative;z-index:1;
  background:
    linear-gradient(180deg,#ffffff 0%,#f7fcfd 100%);
  border:1px solid var(--kn-line);
  border-radius:8px;
  width:100%;max-width:760px;
  padding:30px;
  box-shadow:0 30px 80px rgba(2,8,31,0.35);
  animation:modalSlide 0.3s ease;
}
@keyframes modalSlide{
  from{opacity:0;transform:translateY(-20px)}
  to{opacity:1;transform:translateY(0)}
}
.consult-modal-close{
  position:absolute;top:18px;right:18px;
  width:36px;height:36px;
  border:1px solid var(--kn-line);background:#fff;
  color:var(--kn-navy);
  border-radius:50%;
  font-size:22px;line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s,transform 0.15s;
  z-index: 99999;
}
.consult-modal-close:hover{background:var(--kn-orange);color:#fff;transform:rotate(90deg)}
.consult-modal-header{margin-bottom:20px;padding-right:42px}
.consult-modal-header .form-title{margin-bottom:8px}
.consult-modal-header .form-sub{margin-bottom:0}
body.modal-open{overflow:hidden}

@media (max-width:640px){
  .consult-modal{padding:14px 10px}
  .consult-modal-card{padding:24px 16px 18px}
  .contact-cta-card{padding:32px 22px}
}
.form-title{
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  font-size:30px;font-weight:800;color:var(--kn-navy);margin-bottom:8px;
  line-height:1.18;
}
.form-sub{font-size:14px;color:var(--kn-muted);margin-bottom:32px;line-height:1.6}
.consult-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.consult-field,
.consult-consent{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.consult-field-full{margin-top:14px}
.consult-field span{
  font-size:13px;
  font-weight:800;
  color:var(--kn-ink);
}
.consult-required{
  color:#e11d48;
  font-weight:900;
}
.consult-field small{
  color:var(--kn-muted);
  font-weight:700;
}
.consult-form input,
.consult-form select,
.consult-form textarea{
  width:100%;
  min-height:46px;
  border:1px solid var(--kn-line);
  border-radius:8px;
  background:#fff;
  color:var(--kn-ink);
  font-family:'Manrope',sans-serif;
  font-size:14px;
  font-weight:650;
  padding:10px 12px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.consult-form select[multiple]{
  min-height:138px;
  padding:8px;
}
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus{
  border-color:var(--kn-teal);
  box-shadow:0 0 0 4px rgba(4,183,196,.14);
}
.consult-help{
  margin-top:2px;
  color:var(--kn-muted);
  font-size:12px;
  font-style:normal;
  font-weight:700;
}
.consult-consent{
  margin:16px 0;
  flex-direction:row;
  align-items:flex-start;
  gap:10px;
  color:var(--kn-muted);
  font-size:12.5px;
  font-weight:700;
  line-height:1.45;
}
.consult-consent input{
  width:16px;
  min-width:16px;
  height:16px;
  min-height:16px;
  margin-top:2px;
  accent-color:var(--kn-orange);
}
.consult-submit{
  width:100%;
  min-height:48px;
  border:0;
  border-radius:8px;
  background:linear-gradient(105deg,var(--kn-teal),var(--kn-navy) 42%,var(--kn-orange) 100%);
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 15px 30px rgba(6,22,95,.22);
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.consult-submit:hover,
.consult-submit:focus{
  transform:translateY(-1px);
  filter:saturate(1.12);
  box-shadow:0 18px 36px rgba(255,107,0,.24);
}
.consult-submit:disabled{
  cursor:not-allowed;
  opacity:.72;
  transform:none;
}
@media (max-width:640px){
  .form-title{font-size:24px}
  .consult-grid{grid-template-columns:1fr;gap:12px}
  .consult-modal-header{padding-right:38px}
}
.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
═══════════════════════════════════ */
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;align-items:center;gap:10px}
.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;
}
.soc-btn svg{
  width:17px;
  height:17px;
  display:block;
  fill:currentColor;
}
.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;
}
.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{
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:14px;
  padding:15px 15px;
  top:96px;
}
.course-detail-info-title{
  font-family:'Playfair Display',serif;
  font-size:22px;font-weight:700;
  color:var(--dark);
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid var(--border);
}
.course-detail-info-list{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 var(--gray-light);
}
.course-detail-info-list li:last-child{border-bottom:none}
.cdi-label{color:var(--gray);font-weight:500;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-address-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:stretch;
}

.college-contact-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    display:flex;
    flex-direction:column;
    position:relative;
    overflow:hidden;
}

.college-contact-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#b82827,#96c22b);
}

.college-contact-top{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:18px;
}

.college-contact-logo-wrap{
    margin-bottom:0;
}

.college-contact-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
}

.college-contact-logo{
    width:200px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.college-contact-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

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

.college-contact-location{
    font-size:15px;
    font-weight:600;
    color:#b82827;
    margin-bottom: 10px;
}

.college-contact-address{
    font-size:15px;
    line-height:1.9;
    color:#5b6473;
    align-items: center;
    text-align: center;
    padding:20px 0;
    border-top:1px dashed #ddd;
    border-bottom:1px dashed #ddd;
    margin-bottom:24px;
}

.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-map{
    border-radius:22px;
    overflow:hidden;
    border:1px solid #ececec;
    min-height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.college-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
}

@media (max-width:991px){

    .college-address-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:576px){

    .college-contact-card{
        padding:22px;
    }
    .college-contact-title{
        font-size:24px;
    }

}


@media (max-width:900px){
  .college-address-grid{grid-template-columns:1fr}
  .college-map{min-height:300px}
}

/* 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-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}
}
.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap: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:hidden;
    transition:all .35s ease;
    text-decoration:none;
}

.partner-card::before{
    content:'';
    position:absolute;
    inset:0;
    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:12px;
    left:50%;
    transform:translateX(-50%) translateY(10px);
    background:#111827;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:7px 12px;
    border-radius:999px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:5;
}

.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: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:16px;
    }

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

    .partners-grid{
        grid-template-columns:repeat(2,1fr);
        gap: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-filter-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin:0 auto 34px;
}

.testimonial-filter-tabs a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 20px;
    border-radius:999px;
    border:1px solid rgba(241,90,36,.16);
    background:#fff7ed;
    color:#5d4a69;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    transition:all .22s ease;
}

.testimonial-filter-tabs a:hover,
.testimonial-filter-tabs a.active{
    background:#f15a24;
    border-color:#f15a24;
    color:#fff;
    box-shadow:0 12px 28px rgba(241,90,36,.22);
}

.testimonial-category-pill{
    display:inline-flex;
    margin-bottom:12px;
    padding:5px 10px;
    border-radius:999px;
    background:#fff7ed;
    color:#df570b;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.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(4,1fr);
}

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

    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:flex-start;
    gap:14px;

    padding:16px 16px 0px 16px;
}

/* LOGO */
.featured-logo{
    width:100px;
    height:58px;
    object-fit:contain;
    flex-shrink:0;
}

/* TITLE */
.featured-title{
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:5px;
}

/* LOCATION */
.featured-meta{
    position:relative;
    padding-right:90px;
    margin-top:6px;
}

.featured-location{
    font-size:11px;
    color:#777;
    line-height:1.4;
}

.featured-link{
    position:absolute;
    right:0;
    top:0;

    font-size:11px;
    font-weight:500;
    color:#d93025;

    white-space:nowrap;
}
/* FEATURED FULL STRIP */
.featured-line{
    background:#11213a;
    color:#fff;
    padding:8px 10px;
    font-size:9px;
    font-weight:600;
    line-height:1.5;
    margin-top:auto;
    text-transform: uppercase;
}

/* 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:linear-gradient(180deg,#f2fcfd 0%,#ffffff 58%,#fff8f1 100%);
    border:1px solid rgba(4,183,196,.22);
    border-radius:16px;
    padding:20px;
    box-shadow:0 18px 44px rgba(7,20,63,.08);
}

.course-news-sidebar .course-detail-info-title{
    color:var(--kn-navy);
}

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

.sidebar-news-card{
    display:flex;
    gap:12px;
    text-decoration:none;
    border-bottom:1px dashed rgba(7,20,63,.16);
    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:var(--kn-navy);
    margin-bottom:6px;
}

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

.sidebar-news-category{
    font-size:11px;
    font-weight:600;
    color:var(--kn-teal);
}

.sidebar-news-btn{
    display:block;
    margin-top:20px;
    text-align:center;
    background:linear-gradient(135deg,var(--kn-orange),#ff9f1f);
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 12px 28px rgba(255,107,0,.2);
}

.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:var(--kn-orange);
}
/* =========================================
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:#b82827;
    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;
}

#compareBar,
#compareBar .compare-count{
    color:#fff;
}

#compareBar .compare-count span{
    color:#ff8a2a;
}

#compareBar .compare-now-btn:hover,
#compareBar .compare-now-btn:focus{
    background:linear-gradient(135deg,#ff8a2a,#f15a24);
    color:#fff;
}
.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;
}

.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{

    position:sticky;

    top:100px;

    align-self:start;
}
.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;
}

/* =====================================================
   IYOU GLOBAL MODERN ORANGE THEME
   Reference-inspired redesign layer for public frontend
===================================================== */

:root{
  --brand:#f0873b;
  --brand-dark:#ea580c;
  --brand-deep:#c2410c;
  --brand-soft:#fff7ed;
  --brand-soft-2:#ffedd5;
  --gold:#fbbf24;
  --ink:#392a54;
  --ink-2:#4a3b69;
  --muted:#7e6d94;
  --muted-2:#9f8fb0;
  --surface:#ffffff;
  --surface-soft:#f7f6f9;
  --line:#f1e7da;
  --shadow-soft:0 18px 48px rgba(57,42,84,.10);
  --shadow-hover:0 28px 70px rgba(240,135,59,.20);
  --radius:18px;
  --red:var(--brand);
  --red-dark:var(--brand-dark);
  --green:var(--gold);
  --charcoal:var(--ink);
  --dark:var(--ink);
  --gray:var(--muted);
  --off-white:var(--brand-soft);
  --cream:#fffaf4;
  --border:var(--line);
}

html{
  scroll-padding-top:116px;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:
    linear-gradient(135deg,#fff7ed 0%,#ffffff 42%,#fff7ed 100%);
}

body.modal-open{
  overflow:hidden;
}

h1,h2,h3,h4,h5,h6,
.sec-title,
.section-title,
.page-banner-title,
.hero-title,
.course-card-title,
.footer-cta h2{
  font-family:'Poppins',sans-serif;
  letter-spacing:0;
}

a{
  color:inherit;
}

.container{
  width:min(1180px,92vw);
  margin-inline:auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:500;
  background:rgba(255,255,255,.86);
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(240,135,59,.15);
  box-shadow:0 14px 34px rgba(57,42,84,.07);
}

.topbar{
  background:linear-gradient(90deg,var(--ink),#4a3b69);
  color:rgba(255,255,255,.86);
  padding:7px 6%;
  font-size:12px;
  letter-spacing:.01em;
}

.topbar a{
  color:inherit;
}

.topbar-left,
.topbar-right{
  gap:22px;
}

.topbar-item{
  text-decoration:none;
}

.topbar-icon{
  width:auto;
  height:auto;
  min-width:auto;
  padding:3px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.topbar-dropdown-btn{
  border-color:rgba(255,255,255,.24);
  background:rgba(255,255,255,.10);
  border-radius:999px;
  padding:7px 13px;
}

.topbar-dropdown-btn:hover{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

.topbar-dropdown-menu{
  border:1px solid var(--brand-soft-2);
  border-radius:14px;
  box-shadow:var(--shadow-soft);
}

.topbar-dropdown-menu a:hover{
  background:var(--brand-soft);
  color:var(--brand-dark) !important;
}

nav.main-nav{
  position:relative;
  top:auto;
  z-index:auto;
  background:transparent;
  border:0;
  box-shadow:none;
}

.nav-inner{
  height:78px;
  padding:0 6%;
}

.nav-logo-img{
  height:58px;
  max-width:232px;
  object-fit:contain;
}

.nav-collapse{
  gap:26px;
}

.nav-links{
  gap:20px;
}

.nav-links a{
  color:var(--ink-2);
  font-size:14px;
  font-weight:700;
  padding:10px 0;
}

.nav-links a::after{
  bottom:4px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--brand),var(--gold));
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--brand-dark);
}

.nav-cta,
.btn-red,
.footer-cta-btn,
.download-submit-btn,
.compare-view-btn{
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff !important;
  font-weight:800;
  box-shadow:0 14px 30px rgba(240,135,59,.26);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}

.nav-cta{
  padding:12px 22px;
}

.nav-cta:hover,
.btn-red:hover,
.footer-cta-btn:hover,
.download-submit-btn:hover,
.compare-view-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,var(--brand-dark),var(--brand-deep));
  box-shadow:0 18px 38px rgba(234,88,12,.30);
  color:#fff !important;
}

.btn-outline,
.btn-compare{
  border:1px solid rgba(240,135,59,.32);
  border-radius:999px;
  color:var(--brand-dark);
  background:#fff;
  font-weight:800;
}

.btn-outline:hover,
.btn-compare:hover,
.btn-compare.active{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

.btn-ghost{
  border:1px solid rgba(240,135,59,.28);
  background:#fff;
  color:var(--ink) !important;
  border-radius:999px;
  box-shadow:0 12px 24px rgba(57,42,84,.08);
}

.btn-ghost:hover{
  border-color:var(--brand);
  background:var(--brand-soft);
  color:var(--brand-dark) !important;
}

/* Shared section language */
.section{
  padding:82px 6%;
}

.section-alt{
  background:
    linear-gradient(135deg,rgba(255,247,237,.92),rgba(255,255,255,.96));
  border-block:1px solid rgba(240,135,59,.10);
}

.eyebrow,
.section-eyebrow,
.dark-section-eyebrow,
.hero-eyebrow,
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:max-content;
  max-width:100%;
  padding:8px 14px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand-dark);
  border:1px solid var(--brand-soft-2);
  font-family:'Inter',sans-serif;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.eyebrow::before,
.section-eyebrow span,
.dark-section-eyebrow span,
.hero-eyebrow span{
  content:'';
  width:7px;
  height:7px;
  border-radius:0;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);
  background:var(--brand);
  box-shadow:0 0 0 4px rgba(240,135,59,.16);
}

.sec-title,
.section-title{
  color:var(--ink);
  font-size:clamp(30px,3.4vw,48px);
  line-height:1.12;
  font-weight:800;
}

.sec-body,
.section-subtitle{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

/* Home hero */
.hero{
  height:auto;
  min-height:680px;
  max-height:none;
  padding:0 6%;
  background:
    linear-gradient(135deg,#fff7ed 0%,#fff 58%,#ffedd5 100%);
  isolation:isolate;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.20;
  background-image:
    linear-gradient(45deg,rgba(240,135,59,.18) 25%,transparent 25%),
    linear-gradient(-45deg,rgba(240,135,59,.18) 25%,transparent 25%);
  background-size:42px 42px;
}

.hero-slides{
  min-height:680px;
}

.hero-slide{
  display:block;
}

.hero-slide img{
  position:absolute;
  top:76px;
  right:0;
  width:48%;
  height:500px;
  object-fit:cover;
  border-radius:34px 0 0 34px;
  filter:none;
  box-shadow:0 30px 80px rgba(57,42,84,.22);
}

.hero-overlay{
  display:none;
}

.hero-content{
  position:relative;
  left:auto;
  top:auto;
  transform:none;
  width:min(560px,50%);
  padding-top:122px;
  color:var(--ink);
}

.hero-title{
  color:var(--ink);
  font-size:clamp(42px,5vw,72px);
  line-height:1.03;
  margin:18px 0 22px;
}

.hero-title em,
.page-banner-title em{
  color:transparent;
  background:linear-gradient(90deg,var(--brand-dark),var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
}

.hero-desc{
  max-width:520px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.hero-btns{
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-dots{
  left:6%;
  right:auto;
  bottom:46px;
  transform:none;
}

.dot{
  border-color:rgba(240,135,59,.30);
  background:#fff;
}

.dot.active{
  width:32px;
  border-radius:999px;
  background:var(--brand);
}

/* Page banners */
.page-banner,
.college-hero{
  min-height:430px;
  height:auto;
  padding:96px 6% 78px;
  background:
    linear-gradient(135deg,#fff7ed 0%,#fff 54%,#ffedd5 100%);
  overflow:hidden;
  display:flex;
  align-items:center;
}

.page-banner::after,
.college-hero::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--brand-soft-2),transparent);
}

.page-banner-img{
  top:64px;
  right:6%;
  left:auto;
  width:42%;
  height:68%;
  border-radius:30px;
  object-fit:cover;
  filter:none;
  box-shadow:var(--shadow-soft);
}

.page-banner-overlay{
  background:
    linear-gradient(90deg,rgba(255,247,237,.94) 0%,rgba(255,255,255,.92) 48%,rgba(255,255,255,.18) 100%);
}

.page-banner-content{
  padding:0;
  max-width:680px;
  color:var(--ink);
}

.page-banner-title{
  color:var(--ink);
  font-size:clamp(34px,4.4vw,58px);
  line-height:1.08;
  margin:18px 0 16px;
}

.page-banner-desc{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

/* Cards and grids */
.course-grid,
.services-grid,
.why-grid,
.streams-grid,
.partners-grid,
.application-grid,
.impact-grid,
.sa-svc-grid,
.sa-countries-grid,
.sa-steps,
.testi-grid{
  gap:24px;
}

.course-card,
.why-card,
.svc-card,
.str-card,
.partner-card,
.application-card,
.faq-item,
.news-list-card,
.news-card,
.course-detail-info-card,
.download-card,
.college-contact-card,
.sa-svc,
.sa-step,
.sa-country,
.sa-university,
.sa-highlight-card,
.sa-content-box,
.sa-course,
.sa-why{
  border:1px solid rgba(240,135,59,.16) !important;
  border-radius:var(--radius) !important;
  background:rgba(255,255,255,.94) !important;
  box-shadow:0 12px 34px rgba(57,42,84,.07) !important;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease !important;
}

.course-card:hover,
.why-card:hover,
.svc-card:hover,
.str-card:hover,
.partner-card:hover,
.application-card:hover,
.news-list-card:hover,
.news-card:hover,
.sa-svc:hover,
.sa-step:hover,
.sa-country:hover,
.sa-university:hover,
.sa-highlight-card:hover,
.sa-course:hover{
  transform:translateY(-6px) !important;
  border-color:rgba(240,135,59,.38) !important;
  box-shadow:var(--shadow-hover) !important;
}

.course-card{
  overflow:hidden;
}

.course-card-img-wrap{
  height:220px;
}

.course-card-img{
  filter:saturate(1.04);
}

.course-card-tag,
.application-badge,
.news-category-tag,
.sa-course-duration{
  background:rgba(255,247,237,.95) !important;
  color:var(--brand-dark) !important;
  border:1px solid var(--brand-soft-2);
  border-radius:999px;
  font-weight:800;
}

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

.course-card-title{
  font-size:18px;
  line-height:1.35;
  color:var(--ink);
}

.course-card-title a:hover,
.news-list-title a:hover{
  color:var(--brand-dark) !important;
}

.course-card-meta,
.news-list-meta,
.news-date{
  color:var(--muted);
}

.course-card-desc,
.news-list-desc,
.why-desc,
.svc-desc{
  color:var(--muted);
}

.listing-search{
  max-width:640px;
}

.listing-search-field{
  border:1px solid rgba(240,135,59,.22);
  border-radius:999px;
  background:#fff;
  box-shadow:0 16px 34px rgba(57,42,84,.08);
}

.listing-search-field:focus-within{
  border-color:var(--brand);
  box-shadow:0 18px 42px rgba(240,135,59,.18);
}

.listing-search-clear{
  background:var(--brand-soft);
  color:var(--brand-dark);
}

/* Homepage sections */
.featured-strip-section,
.quick-strip,
.sa-trust-strip{
  background:rgba(255,255,255,.72);
  border-block:1px solid rgba(240,135,59,.15);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
}

.featured-strip-wrapper{
  border-radius:0;
}

.featured-vertical{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
}

.featured-card{
  border:1px solid rgba(240,135,59,.16);
  border-radius:16px;
  box-shadow:0 12px 30px rgba(57,42,84,.06);
}

.featured-link,
.featured-location{
  color:var(--brand-dark);
}

.about-grid,
.course-detail-grid,
.college-address-grid{
  gap:44px;
}

.about-img-main,
.about-img-small,
.gallery-item,
.college-map{
  border-radius:28px;
  box-shadow:var(--shadow-soft);
}

.about-img-wrap::before{
  background:linear-gradient(135deg,var(--brand),var(--gold));
  border-radius:34px;
}

.about-badge-exp,
.mv-box,
.about-point,
.lp{
  border:1px solid rgba(240,135,59,.16);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(57,42,84,.07);
}

.mv-label,
.ap-title,
.lp-title,
.svc-name,
.why-title,
.str-name{
  color:var(--ink);
  font-weight:800;
}

.services-bg,
.process-section,
.impact-section{
  background:
    linear-gradient(135deg,var(--brand-soft),#fff);
}

.svc-icon,
.why-icon,
.quick-icon,
.ci-icon{
  background:var(--brand-soft);
  color:var(--brand-dark);
  border:1px solid var(--brand-soft-2);
}

.process-section .sec-title,
.services-bg .sec-title,
.testi-section-bg .sec-title{
  color:var(--ink);
}

.step-circle{
  background:#fff;
  border:1px solid var(--brand-soft-2);
  box-shadow:var(--shadow-soft);
}

.step-n,
.step-emoji,
.impact-num{
  color:var(--brand-dark);
}

.impact-stat{
  text-align:left;
  position:relative;
  overflow:hidden;
}

.impact-stat::before{
  content:'';
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(var(--brand),var(--gold));
}

/* Contact and forms */
.contact-section{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  background:linear-gradient(135deg,var(--ink),#4a3b69);
}

.contact-left{
  background:transparent;
}

.contact-left::before{
  display:none;
}

.contact-left .sec-title,
.contact-left .ci-label,
.contact-left .ci-val,
.contact-left .ci-val a{
  color:#fff;
}

.contact-left .sec-body,
.contact-left .ci-val{
  color:rgba(255,255,255,.72);
}

.contact-right{
  background:#fff !important;
  border-radius:34px 0 0 34px;
  margin:34px 0;
  box-shadow:0 30px 80px rgba(0,0,0,.22);
}

.footer-newsletter input,
.download-popup-body .form-control{
  border:1px solid rgba(240,135,59,.22);
  border-radius:14px;
  background:#fff;
}

.footer-newsletter input:focus,
.download-popup-body .form-control:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(240,135,59,.12);
  outline:none;
}

/* Detail pages and sidebars */
.course-detail-main,
.page-module-content,
.news-detail-card{
  background:#fff;
  border:1px solid rgba(240,135,59,.15);
  border-radius:24px;
  padding:34px;
  box-shadow:0 14px 34px rgba(57,42,84,.07);
}

.course-detail-body{
  color:var(--ink-2);
}

.course-detail-body h2,
.course-detail-body h3,
.course-detail-info-title,
.download-card h5{
  color:var(--ink);
}

.course-detail-info-card{
  background:linear-gradient(135deg,#fff,var(--brand-soft)) !important;
}

.course-detail-info-list li{
  border-color:rgba(240,135,59,.14);
}

.cdi-label{
  color:var(--muted);
}

.cdi-val{
  color:var(--ink);
}

.college-facts-strip{
  width:min(1180px,92vw);
  margin:-38px auto 0;
  position:relative;
  z-index:5;
  background:#fff;
  border:1px solid rgba(240,135,59,.16);
  border-radius:22px;
  box-shadow:var(--shadow-soft);
}

.cf-icon{
  background:var(--brand-soft);
  color:var(--brand-dark);
}

.college-contact-btn,
.compare-now-btn{
  border-radius:999px;
}

/* News, FAQ, applications */
.news-list-card{
  padding:0;
  overflow:hidden;
}

.news-list-image-wrap{
  border-radius:18px;
  overflow:hidden;
}

.news-read-btn,
.news-read-more{
  color:var(--brand-dark) !important;
  font-weight:800;
}

.faq-page,
.applications-page{
  background:transparent;
  padding:82px 0;
}

.faq-question{
  color:var(--ink);
}

.faq-icon{
  background:var(--brand-soft);
  color:var(--brand-dark);
}

.faq-item.active .faq-icon{
  background:var(--brand);
  color:#fff;
}

.application-image-wrap{
  border-radius:18px;
}

.application-title{
  color:var(--ink);
}

.application-btn{
  color:var(--brand-dark);
  font-weight:800;
}

.custom-pagination .pagination-btn,
.pagination .page-link{
  border-radius:999px !important;
  border-color:rgba(240,135,59,.22) !important;
  color:var(--ink) !important;
}

.custom-pagination .pagination-btn.active,
.pagination .active .page-link{
  background:var(--brand) !important;
  border-color:var(--brand) !important;
  color:#fff !important;
}

/* Modals and compare */
#compareBar{
  background:var(--ink);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  box-shadow:0 18px 46px rgba(57,42,84,.22);
}

.compare-table th{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
}

.custom-download-modal-content,
.compare-modal-content{
  border-radius:24px;
}

.download-popup-header{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
}

/* Footer */
.site-footer{
  background:#1f1730;
  color:rgba(255,255,255,.68);
  padding:0 4% 28px;
}

.footer-cta{
  position:relative;
  top:-48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  max-width:1180px;
  margin:0 auto -12px;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff;
  box-shadow:0 26px 70px rgba(234,88,12,.30);
}

.footer-cta .section-tag{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}

.footer-cta h2{
  max-width:760px;
  margin:14px 0 8px;
  color:#fff;
  font-size:clamp(24px,3vw,38px);
  line-height:1.18;
}

.footer-cta p{
  color:rgba(255,255,255,.86);
  line-height:1.7;
}

.footer-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  padding:14px 24px;
  background:#fff;
  color:var(--brand-dark) !important;
  text-decoration:none;
  box-shadow:0 14px 30px rgba(57,42,84,.16);
}

.footer-cta-btn:hover{
  background:var(--ink);
  color:#fff !important;
}

.footer-top{
  max-width:1260px;
  width:calc(100% - 96px);
  margin:0 auto;
  padding:44px 0 36px;
  grid-template-columns:1.55fr .85fr .85fr 1.35fr;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.footer-logo-img{
  height:82px;
  width:auto;
  object-fit:contain;
  background:#fff;
  border-radius:16px;
  padding:8px 12px;
}

.footer-col-title{
  color:#fff;
  letter-spacing:.1em;
}

.footer-links a,
.footer-contact a{
  color:rgba(255,255,255,.62);
}

.footer-links a::before{
  color:var(--brand);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover{
  color:#fff;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
  list-style:none;
  margin:0 0 18px;
  padding:0;
  line-height:1.7;
}

.soc-btn{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
}

.soc-btn:hover{
  background:var(--brand);
  color:#fff;
}

.footer-newsletter{
  display:flex;
  align-items:stretch;
  gap:10px;
  width:100%;
  max-width:360px;
}

.footer-newsletter input{
  flex:1 1 auto;
  min-width:0;
  width:auto;
  height:52px;
  margin-bottom:0;
  background:rgba(255,255,255,.08);
  color:#fff;
}

.footer-newsletter button{
  flex:0 0 auto;
  width:auto;
  min-width:112px;
  height:52px;
  border-radius:14px;
  padding:0 16px;
  background:var(--brand);
}

.footer-bottom{
  max-width:1260px;
  width:calc(100% - 96px);
  margin:0 auto;
  padding-top:24px;
}

/* Study abroad theme harmonization */
.sa-tests,
.sa-detail-wrap{
  background:linear-gradient(135deg,#fff7ed,#fff) !important;
}

.sa-tests{
  color:var(--ink) !important;
}

.sa-tests .sec-title,
.sa-tests .sec-body{
  color:var(--ink) !important;
}

.sa-test-tile{
  background:#fff !important;
  color:var(--ink);
  border-color:rgba(240,135,59,.16) !important;
}

.sa-test-name,
.sa-mini,
.sa-faq-q span{
  color:var(--brand-dark) !important;
}

.sa-page-tabs a:hover,
.sa-page-tabs a.active{
  background:var(--brand) !important;
}

/* Responsive */
@media(max-width:1100px){
  .nav-links{
    gap:14px;
  }

  .nav-links a{
    font-size:13px;
  }

  .hero-slide img,
  .page-banner-img{
    width:44%;
  }
}

@media(max-width:900px){
  html{
    scroll-padding-top:84px;
  }

  .topbar{
    display:none;
  }

  .site-header{
    background:rgba(255,255,255,.95);
  }

  .nav-inner{
    height:72px;
    padding:0 5%;
  }

  .nav-logo-img{
    height:50px;
    max-width:190px;
  }

  .nav-toggle{
    display:flex;
  }

  .nav-collapse{
    position:absolute;
    top:72px;
    left:5%;
    right:5%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:16px;
    padding:20px;
    background:#fff;
    border:1px solid rgba(240,135,59,.18);
    border-radius:22px;
    box-shadow:var(--shadow-soft);
  }

  nav.is-open .nav-collapse,
  .main-nav.is-open .nav-collapse{
    display:flex;
  }

  .nav-links{
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }

  .nav-links a{
    display:block;
    padding:12px 14px;
    border-radius:12px;
  }

  .nav-links a::after{
    display:none;
  }

  .nav-links a:hover,
  .nav-links a.active{
    background:var(--brand-soft);
  }

  .nav-cta{
    text-align:center;
  }

  .hero,
  .hero-slides{
    min-height:760px;
  }

  .hero-content{
    width:100%;
    max-width:640px;
    padding-top:64px;
  }

  .hero-slide img{
    top:auto;
    left:0;
    right:0;
    bottom:86px;
    width:100%;
    height:320px;
    border-radius:28px;
  }

  .hero-dots{
    bottom:34px;
  }

  .page-banner,
  .college-hero{
    min-height:620px;
    align-items:flex-start;
    padding-top:66px;
  }

  .page-banner-content{
    max-width:100%;
  }

  .page-banner-img{
    top:auto;
    left:5%;
    right:5%;
    bottom:42px;
    width:90%;
    height:250px;
    border-radius:24px;
  }

  .page-banner-overlay{
    background:linear-gradient(180deg,rgba(255,247,237,.98) 0%,rgba(255,255,255,.94) 58%,rgba(255,255,255,.22) 100%);
  }

  .contact-section,
  .footer-cta{
    grid-template-columns:1fr;
  }

  .contact-section{
    display:block;
  }

  .contact-right{
    margin:0;
    border-radius:28px 28px 0 0;
  }

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

  .footer-top{
    grid-template-columns:1fr 1fr;
    width:calc(100% - 48px);
  }
}

@media(max-width:640px){
  .section{
    padding:58px 5%;
  }

  .hero,
  .hero-slides{
    min-height:720px;
  }

  .hero-title{
    font-size:40px;
  }

  .hero-slide img{
    height:270px;
  }

  .page-banner{
    min-height:560px;
  }

  .course-detail-main,
  .page-module-content,
  .news-detail-card{
    padding:24px;
  }

  .footer-top,
  .footer-bottom{
    grid-template-columns:1fr;
    width:calc(100% - 32px);
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .footer-bottom a{
    margin:0 14px 0 0;
  }

  .footer-newsletter{
    flex-direction:column;
    align-items:stretch;
    max-width:100%;
  }

  .footer-newsletter button{
    width:100%;
  }
}

/* Public pages use the lighter Kollege Next header */
.site-header,
nav{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid rgba(4,183,196,.18) !important;
  box-shadow:0 12px 30px rgba(7,20,63,.08) !important;
  backdrop-filter:blur(16px);
}

.topbar,
.site-header .topbar{
  background:linear-gradient(90deg,#eefbfc 0%,#fff7ef 100%) !important;
  color:var(--kn-navy) !important;
  border-bottom:1px solid rgba(4,183,196,.16);
}

.topbar a{
  color:var(--kn-navy) !important;
}

.topbar-icon{
  color:#fff;
  background:linear-gradient(135deg,var(--kn-teal),var(--kn-orange)) !important;
}

.nav-inner{
  min-height:92px;
}

.nav-logo{
  min-width:280px;
}

.nav-logo-img{
  height:88px !important;
  max-height:88px !important;
  max-width:300px !important;
  filter:none;
}

.nav-links a{
  color:var(--kn-navy) !important;
  font-weight:800;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--kn-orange) !important;
}

.nav-toggle span{
  background:var(--kn-navy) !important;
}

@media(max-width:1100px){
  .nav-logo{
    min-width:230px;
  }

  .nav-logo-img{
    height:76px !important;
    max-height:76px !important;
    max-width:250px !important;
  }
}

@media(max-width:760px){
  .nav-inner{
    min-height:78px;
  }

  .nav-logo{
    min-width:0;
  }

  .nav-logo-img{
    height:68px !important;
    max-height:68px !important;
    max-width:190px !important;
  }

  .nav-collapse{
    background:#fff !important;
    border-top:1px solid rgba(4,183,196,.18);
  }
}

/* =====================================================
   HOME V2 - EDUCATION PORTAL REDESIGN
   Keeps the same dynamic content, changes layout/order.
===================================================== */

body.home-v2{
  display:flex;
  flex-direction:column;
  font-family:'Inter',sans-serif;
}

.home-v2 .site-header{order:0}
.home-v2 .home-hero-v2{order:10}
.home-v2 .home-featured-section{order:20}
.home-v2 .home-streams-section{order:30}
.home-v2 .home-about-section{order:40}
.home-v2 .home-services-section{order:50}
.home-v2 .home-partners-section{order:60}
.home-v2 .home-healthtravo-section{order:70}
.home-v2 .home-process-section{order:80}
.home-v2 .home-success-section{order:90}
.home-v2 .home-insights-section{order:100}
.home-v2 .home-why-section{order:110}
.home-v2 .home-contact-section{order:120}
.home-v2 .site-footer{order:900}
.home-v2 .consult-modal{order:1000}

.home-v2 h1,
.home-v2 h2,
.home-v2 h3,
.home-v2 .sec-title,
.home-v2 .section-title{
  font-family:'Poppins',sans-serif;
  font-weight:700;
}

.home-v2 .nav-links a,
.home-v2 .btn-red,
.home-v2 .btn-outline,
.home-v2 .btn-ghost,
.home-v2 .nav-cta{
  font-weight:600;
}

.home-v2 .sec-title{
  font-size:clamp(28px,3vw,42px);
}

.home-v2 .hero.home-hero-v2{
  min-height:auto;
  height:auto;
  max-height:none;
  padding:82px 6% 64px;
  overflow:hidden;
  background:
    linear-gradient(135deg,rgba(255,247,237,.98) 0%,#fff 48%,rgba(255,237,213,.88) 100%);
}

.home-v2 .hero.home-hero-v2::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    var(--kn-hex-orange),
    var(--kn-hex-teal),
    radial-gradient(circle at 50% 50%,rgba(255,255,255,.48),transparent 58%);
  background-size:112px 98px,168px 147px,auto;
  opacity:.55;
  pointer-events:none;
}

.home-v2 .hero-slides,
.home-v2 .hero-dots{
  display:none !important;
}

.home-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(360px,.88fr);
  gap:54px;
  align-items:center;
  width:min(1180px,100%);
  margin:0 auto;
}

.home-hero-copy{
  max-width:650px;
}

.home-hero-title{
  margin:18px 0 18px;
  color:var(--ink);
  font-size:clamp(38px,5vw,68px);
  line-height:1.03;
  letter-spacing:0;
}

.home-hero-desc{
  max-width:570px;
  color:var(--muted);
  font-size:17px;
  line-height:1.78;
}

.home-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.home-hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.home-hero-trust span{
  padding:9px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(240,135,59,.18);
  color:var(--ink-2);
  font-size:13px;
  font-weight:600;
  box-shadow:0 10px 22px rgba(57,42,84,.06);
}

.home-hero-panel{
  display:grid;
  gap:16px;
}

.hero-panel-card,
.hero-mini-card,
.hero-image-band{
  border:1px solid rgba(240,135,59,.18);
  border-radius:26px;
  background:rgba(255,255,255,.92);
  box-shadow:0 24px 62px rgba(57,42,84,.12);
}

.hero-panel-main{
  padding:30px;
}

.panel-kicker{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.hero-panel-main h2{
  margin:16px 0 10px;
  color:var(--ink);
  font-size:28px;
  line-height:1.2;
}

.hero-panel-main p{
  margin-bottom:22px;
  color:var(--muted);
  line-height:1.7;
}

.hero-mini-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.hero-mini-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:152px;
  padding:20px;
  color:var(--ink);
  text-decoration:none;
  box-shadow:0 14px 34px rgba(57,42,84,.08);
}

.hero-mini-card span{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--gold));
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.hero-mini-card strong{
  font-size:15px;
  line-height:1.5;
  font-weight:600;
}

.hero-mini-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}

.hero-image-band{
  display:grid;
  grid-template-columns:132px 1fr;
  align-items:center;
  overflow:hidden;
}

.hero-image-band img{
  width:132px;
  height:132px;
  object-fit:cover;
}

.hero-image-band div{
  padding:20px;
}

.hero-image-band span{
  display:block;
  margin-bottom:5px;
  color:var(--brand-dark);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.hero-image-band strong{
  display:block;
  color:var(--ink);
  font-size:18px;
  line-height:1.45;
  font-weight:600;
}

.home-v2 .home-impact-section{
  padding:32px 6%;
  background:#fff;
  border-block:1px solid rgba(240,135,59,.12);
}

.home-v2 .home-impact-section .fade-in:first-child{
  display:none;
}

.home-v2 .impact-grid{
  width:min(1180px,100%);
  margin:0 auto;
  grid-template-columns:repeat(4,1fr);
}

.home-v2 .impact-stat{
  min-height:120px;
  border-radius:20px !important;
  background:linear-gradient(135deg,#fff,var(--brand-soft)) !important;
}

.home-v2 .impact-num{
  font-family:'Poppins',sans-serif;
  font-size:34px;
  font-weight:700;
}

.home-v2 .featured-strip-section{
  padding:42px 6%;
  background:linear-gradient(135deg,var(--brand-soft),#fff);
}

.home-v2 .featured-strip-wrapper{
  width:min(1180px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:180px 1fr;
  gap:18px;
  align-items:stretch;
}

.home-v2 .featured-vertical{
  writing-mode:horizontal-tb;
  min-height:auto;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  letter-spacing:.08em;
}

.home-v2 .featured-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  overflow:visible;
}

.home-v2 .featured-card{
  padding:18px;
}

.home-v2 .featured-logo{
  width:58px;
  height:58px;
  border-radius:18px;
}

.home-v2 .home-streams-section{
  background:#fff;
}

.home-v2 .streams-header{
  text-align:left;
  width:min(1180px,100%);
  margin-inline:auto;
  display:grid;
  grid-template-columns:.85fr 1fr;
  gap:28px;
  align-items:end;
}

.home-v2 .streams-header .section-eyebrow{
  justify-content:flex-start;
}

.home-v2 .streams-grid{
  width:min(1180px,100%);
  margin:34px auto 0;
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.home-v2 .str-card{
  min-height:120px;
  align-items:center;
  border-radius:22px !important;
  background:
    linear-gradient(135deg,#fff 0%,rgba(255,247,237,.86) 100%) !important;
}

.home-v2 .str-emoji{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  flex:none;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(240,135,59,.16);
}

.home-v2 .home-services-section{
  background:
    linear-gradient(180deg,var(--brand-soft) 0%,#fff 100%);
}

.home-v2 .services-header-row,
.home-v2 .services-grid{
  width:min(1180px,100%);
  margin-inline:auto;
}

.home-v2 .services-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.home-v2 .svc-card{
  text-align:left;
  padding:26px;
  min-height:220px;
}

.home-v2 .svc-card:nth-child(1),
.home-v2 .svc-card:nth-child(2){
  grid-column:span 2;
  display:grid;
  grid-template-columns:78px 1fr;
  column-gap:18px;
  align-items:start;
}

.home-v2 .svc-card:nth-child(1) .svc-desc,
.home-v2 .svc-card:nth-child(2) .svc-desc{
  grid-column:2;
}

.home-v2 .svc-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:20px;
}

.home-v2 .partners-section{
  background:#fff;
}

.home-v2 .partners-header,
.home-v2 .partners-grid,
.home-v2 .partners-loadmore-wrap{
  width:min(1180px,100%);
  margin-inline:auto;
}

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

.home-v2 .partner-card{
  height:108px;
  border-radius:20px !important;
}

.home-v2 .home-process-section{
  background:var(--ink);
  color:#fff;
}

.home-v2 .home-process-section .sec-title,
.home-v2 .home-process-section .step-title-t{
  color:#fff;
}

.home-v2 .home-process-section .sec-body,
.home-v2 .home-process-section .step-desc-t{
  color:rgba(255,255,255,.72);
}

.home-v2 .steps-row{
  width:min(980px,100%);
  margin-inline:auto;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.home-v2 .step-item{
  display:grid;
  grid-template-columns:98px 1fr;
  align-items:center;
  gap:20px;
  text-align:left;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}

.home-v2 .step-circle{
  width:78px;
  height:78px;
  margin:0;
}

.home-v2 .home-about-section{
  background:
    radial-gradient(circle at 12% 18%,rgba(241,90,36,.08),transparent 28%),
    linear-gradient(180deg,#fff 0%,#fff8f1 100%);
}

.home-v2 .home-about-section .about-section-head{
  width:min(860px,100%);
  margin:0 auto 46px;
  text-align:center;
}

.home-v2 .home-about-section .about-section-head .section-eyebrow{
  margin-inline:auto;
}

.home-v2 .home-about-section .about-section-head .sec-title{
  max-width:820px;
  margin:16px auto 0;
}

.home-v2 .home-about-section .about-grid{
  width:min(1180px,100%);
  margin-inline:auto;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
}

.home-v2 .home-about-section .about-img-main{
  aspect-ratio:5/6;
  max-height:560px;
  border:1px solid rgba(241,90,36,.14);
  box-shadow:0 28px 70px rgba(61,40,93,.12);
}

.home-v2 .home-about-section .about-content{
  padding:8px 0;
}

.home-v2 .home-about-section .about-content .sec-title{
  max-width:680px;
}

.home-v2 .home-about-section .sec-body{
  max-width:680px;
  margin-bottom:20px;
}

.about-usp-strip{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  margin:24px 0 26px;
  overflow:hidden;
  border:1px solid rgba(241,90,36,.18);
  border-radius:22px;
  background:linear-gradient(135deg,#ff7a1a,#f15a24 54%,#3d285d 155%);
  box-shadow:0 24px 55px rgba(61,40,93,.13);
}

.about-usp-strip::before{
  content:'';
  position:absolute;
  inset:-50%;
  background:linear-gradient(110deg,transparent 38%,rgba(255,255,255,.32) 50%,transparent 62%);
  transform:translateX(-45%) rotate(8deg);
  animation:aboutUspShine 7s ease-in-out infinite;
}

.about-usp-stat{
  position:relative;
  z-index:1;
  min-height:104px;
  padding:22px 18px;
  background:rgba(255,255,255,.12);
  color:#fff;
  backdrop-filter:blur(6px);
  transform:translateY(0);
  transition:background .25s ease,transform .25s ease;
}

.about-usp-stat:hover{
  background:rgba(255,255,255,.18);
  transform:translateY(-3px);
}

.about-usp-stat strong{
  display:block;
  margin-bottom:7px;
  font-family:var(--font-heading);
  font-size:clamp(28px,2.4vw,38px);
  line-height:1;
}

.about-usp-stat span{
  display:block;
  color:rgba(255,255,255,.86);
  font-size:13px;
  font-weight:700;
}

.home-v2 .home-about-section .mv-grid{
  margin-top:0;
  gap:16px;
}

.home-v2 .home-about-section .mv-box{
  padding:20px 22px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 42px rgba(61,40,93,.07);
}

.home-v2 .home-insights-section{
  background:linear-gradient(180deg,#fff8f1 0%,#fff 100%);
}

.home-v2 .home-services-section{
  background:linear-gradient(180deg,#fff 0%,#fff4e8 100%);
}

.home-v2 .home-streams-section{
  background:linear-gradient(180deg,#fff4e8 0%,#fff 100%);
}

.home-v2 .home-partners-section{
  background:#fff;
}

.home-v2 .home-healthtravo-section{
  background:linear-gradient(180deg,#fff 0%,#f8f5ff 100%);
}

.home-v2 .home-process-section{
  background:linear-gradient(180deg,#f8f5ff 0%,#fffaf4 100%);
}

.home-v2 .home-success-section{
  background:linear-gradient(180deg,#fffaf4 0%,#fff 100%);
}

@keyframes aboutUspShine{
  0%,58%{transform:translateX(-55%) rotate(8deg)}
  78%,100%{transform:translateX(55%) rotate(8deg)}
}

@media(max-width:991px){
  .about-usp-strip{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .about-usp-strip{
    grid-template-columns:1fr;
  }

  .about-usp-stat{
    min-height:auto;
    padding:18px;
  }
}

.home-v2 .mv-grid{
  grid-template-columns:1fr;
}

.home-v2 .home-why-section{
  background:
    linear-gradient(135deg,#fff,var(--brand-soft));
}

.home-v2 .home-why-section .why-grid{
  width:min(1180px,100%);
  margin-inline:auto;
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.home-v2 .why-card{
  display:grid;
  grid-template-columns:72px 1fr;
  text-align:left;
  column-gap:18px;
  align-items:start;
}

.home-v2 .why-desc{
  grid-column:2;
}

.home-v2 .home-contact-section{
  order:100;
}

@media(max-width:1100px){
  .home-hero-grid{
    grid-template-columns:1fr;
  }

  .home-hero-panel{
    max-width:760px;
  }

  .home-v2 .services-grid,
  .home-v2 .streams-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

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

@media(max-width:760px){
  .home-v2 .hero.home-hero-v2{
    padding:56px 5% 46px;
  }

  .home-hero-title{
    font-size:38px;
  }

  .home-hero-actions,
  .home-hero-actions .btn-red,
  .home-hero-actions .btn-outline{
    width:100%;
  }

  .home-hero-actions .btn-red,
  .home-hero-actions .btn-outline{
    justify-content:center;
    text-align:center;
  }

  .hero-mini-row,
  .home-v2 .featured-strip-wrapper,
  .home-v2 .featured-cards,
  .home-v2 .streams-header,
  .home-v2 .streams-grid,
  .home-v2 .services-grid,
  .home-v2 .home-about-section .about-grid,
  .home-v2 .home-why-section .why-grid{
    grid-template-columns:1fr;
  }

  .hero-image-band{
    grid-template-columns:98px 1fr;
  }

  .hero-image-band img{
    width:98px;
    height:118px;
  }

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

  .home-v2 .svc-card:nth-child(1),
  .home-v2 .svc-card:nth-child(2),
  .home-v2 .why-card,
  .home-v2 .step-item{
    grid-template-columns:1fr;
  }

  .home-v2 .svc-card:nth-child(1) .svc-desc,
  .home-v2 .svc-card:nth-child(2) .svc-desc,
  .home-v2 .why-desc{
    grid-column:auto;
  }

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

@media(max-width:480px){
  .home-v2 .impact-grid{
    grid-template-columns:1fr;
  }

  .home-hero-title{
    font-size:34px;
  }
}

/* Global typography tuning: closer to the logo's geometric Poppins feel,
   but lighter so education content stays easy to read. */
body{
  font-family:'Inter',sans-serif;
}

h1,h2,h3,h4,h5,h6,
.sec-title,
.section-title,
.page-banner-title,
.course-card-title,
.footer-cta h2{
  font-family:'Poppins',sans-serif;
  font-weight:700;
}

.nav-links a,
.btn-red,
.btn-outline,
.btn-ghost,
.nav-cta,
.course-card-title,
.svc-name,
.why-title,
.str-name,
.application-title,
.news-list-title{
  font-weight:600;
}

.sec-body,
.course-card-desc,
.news-list-desc,
.section-subtitle,
.page-banner-desc{
  font-weight:400;
}

/* =====================================================
   HOME REQUESTED SECTION RESTORE + REFERENCE BLOCKS
===================================================== */

.home-v2 .home-featured-section{order:20}
.home-v2 .home-streams-section{order:30}
.home-v2 .home-about-section{order:40}
.home-v2 .home-services-section{order:50}
.home-v2 .home-partners-section{order:60}
.home-v2 .home-healthtravo-section{order:70}
.home-v2 .home-process-section{order:80}
.home-v2 .home-success-section{order:90}
.home-v2 .home-insights-section{order:100}
.home-v2 .home-why-section{order:110}
.home-v2 .home-contact-section{order:130}

.home-v2 .featured-strip-section{
  padding:0;
  background:#fff;
  border-top:1px solid #ececec;
  border-bottom:1px solid #ececec;
}

.home-v2 .featured-strip-wrapper{
  width:100%;
  margin:0;
  display:flex;
  align-items:stretch;
  gap:0;
}

.home-v2 .featured-vertical{
  width:42px;
  min-height:auto;
  background:#f5f5f5;
  border-right:1px solid #e5e5e5;
  border-radius:0;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  color:#222;
  text-transform:uppercase;
}

.home-v2 .featured-cards{
  flex:1;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  overflow:visible;
}

.home-v2 .featured-card{
  padding:0;
  min-height:100px;
  border-radius:0;
  border-right:1px solid #ececec;
  box-shadow:none;
}

.home-v2 .featured-logo{
  width:100px;
  height:58px;
  border-radius:0;
  object-fit:contain;
}

.home-v2 .home-streams-section{
  padding-top:86px;
}

.home-v2 .streams-header{
  width:min(760px,100%);
  margin:0 auto 44px;
  display:block;
  text-align:center;
}

.home-v2 .streams-header .section-eyebrow{
  justify-content:center;
}

.home-v2 .streams-header .sec-body{
  max-width:560px !important;
  margin:14px auto 0 !important;
}

.home-v2 .streams-grid{
  margin-top:0;
}

.home-v2 .home-process-section{
  background:var(--charcoal);
  color:#fff;
}

.home-v2 .steps-row{
  width:min(1180px,100%);
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
}

.home-v2 .steps-row::before{
  display:block;
}

.home-v2 .step-item{
  display:block;
  text-align:center;
  padding:0 32px;
  border:0;
  border-radius:0;
  background:transparent;
}

.home-v2 .step-circle{
  width:100px;
  height:100px;
  margin:0 auto 28px;
}

.home-v2 .home-process-section .sec-title,
.home-v2 .home-process-section .step-title-t{
  color:#fff;
}

.home-v2 .home-process-section .sec-body,
.home-v2 .home-process-section .step-desc-t{
  color:rgba(255,255,255,.68);
}

.ref-container{
  width:min(1180px,100%);
  margin:0 auto;
}

.ref-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:#fff3e6;
  color:#df570b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ref-section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 34px;
}

.ref-section-head .sec-body{
  margin:10px auto 0;
}

.ref-action-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.ref-btn-primary,
.ref-btn-light,
.ref-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:13px 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease,border-color .25s ease;
}

.ref-btn-primary{
  background:linear-gradient(135deg,#f15a24,#ff8a1c);
  color:#fff;
  box-shadow:0 16px 34px rgba(241,90,36,.22);
}

.ref-btn-primary:hover,
.ref-btn-light:hover,
.ref-btn-outline:hover{
  transform:translateY(-2px);
}

.ref-btn-light,
.ref-btn-outline{
  background:#fff;
  color:#3d285d;
  border:1px solid rgba(241,90,36,.22);
}

.ref-btn-outline:hover,
.ref-btn-light:hover{
  border-color:#f15a24;
  color:#f15a24;
}

.ht-section{
  background:linear-gradient(135deg,#fff 0%,#fff7ed 100%);
  border-top:1px solid rgba(241,90,36,.12);
  border-bottom:1px solid rgba(241,90,36,.12);
  overflow:hidden;
}

.ht-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(330px,.92fr);
  gap:64px;
  align-items:center;
}

.ht-title{
  margin-top:16px;
}

.ht-title span{
  color:#f15a24;
}

.ht-title small{
  display:block;
  margin-top:8px;
  color:#756381;
  font-family:'Inter',sans-serif;
  font-size:clamp(20px,2vw,28px);
  font-weight:600;
}

.ht-lead{
  margin-top:18px;
  max-width:620px;
}

.ht-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}

.ht-feature-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  background:#fff;
  border:1px solid rgba(241,90,36,.12);
  border-radius:18px;
  box-shadow:0 12px 32px rgba(40,22,64,.06);
}

.ht-feature-icon{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#fff3e6;
  color:#df570b;
  font-size:11px;
  font-weight:800;
}

.ht-feature-card h3{
  margin:0 0 5px;
  color:#24113f;
  font-size:15px;
}

.ht-feature-card p{
  margin:0;
  color:#756381;
  font-size:13px;
  line-height:1.55;
}

.ht-visual{
  position:relative;
  min-height:440px;
}

.ht-photo-card{
  position:relative;
  height:430px;
  padding:8px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(40,22,64,.08);
  border-radius:28px;
  box-shadow:0 30px 70px rgba(40,22,64,.16);
  transform:rotate(1deg);
}

.ht-photo-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:21px;
}

.ht-photo-overlay{
  position:absolute;
  inset:auto 8px 8px;
  padding:28px;
  border-radius:0 0 21px 21px;
  color:#fff;
  background:linear-gradient(180deg,rgba(18,12,30,0) 0%,rgba(18,12,30,.82) 100%);
}

.ht-photo-overlay h3{
  margin:0 0 6px;
  color:#fff;
  font-size:24px;
}

.ht-photo-overlay p{
  margin:0;
  color:#ffe4c9;
}

.ht-floating-badge{
  position:absolute;
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:15px 18px;
  background:#fff;
  border-left:4px solid #f15a24;
  border-radius:16px;
  box-shadow:0 20px 46px rgba(40,22,64,.16);
}

.ht-floating-badge strong{
  color:#24113f;
  font-size:15px;
}

.ht-floating-badge span{
  color:#756381;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ht-badge-top{
  top:18px;
  right:-18px;
}

.ht-badge-bottom{
  bottom:10px;
  left:-22px;
  border-left-color:#4f46e5;
}

.ref-success-section{
  background:linear-gradient(180deg,#fff 0%,#fffaf4 100%);
}

.ref-success-section .ref-container{
  max-width:1504px;
}

.ref-success-section .ref-section-head{
  margin-bottom:30px;
}

.ref-success-section .sec-title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(34px,3vw,46px);
  color:#3d285d;
  letter-spacing:0;
}

.success-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-bottom:34px;
}

.success-tabs span,
.success-tabs button{
  padding:10px 20px;
  border-radius:999px;
  background:#fff7ed;
  color:#5d4a69;
  font-size:14px;
  font-weight:700;
  border:1px solid rgba(241,90,36,.12);
  cursor:pointer;
  font-family:inherit;
}

.success-tabs .active,
.success-tabs button:hover{
  background:#f15a24;
  color:#fff;
  box-shadow:0 12px 28px rgba(241,90,36,.22);
}

.success-carousel{
  position:relative;
  width:min(1504px,100%);
  margin:0 auto;
  padding:0 46px 34px;
}

.success-viewport{
  overflow:hidden;
}

.success-track{
  display:flex;
  gap:30px;
  align-items:stretch;
  transition:transform .45s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.success-slide{
  flex:0 0 calc((100% - 60px) / 3);
  min-width:0;
}

.success-slide.is-hidden{
  display:none;
}

.success-card{
  min-height:248px;
  padding:30px 32px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(241,90,36,.18);
  box-shadow:0 18px 40px rgba(40,22,64,.05);
}

.success-card-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.success-card-top img{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
  border:3px solid #fff3e6;
}

.success-card-top h3{
  margin:0;
  color:#3d285d;
  font-size:17px;
  line-height:1.3;
}

.success-card-top p{
  margin:3px 0 0;
  color:#756381;
  font-size:13px;
}

.success-rating{
  width:max-content;
  padding:6px 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:#fff3e6;
  color:#df570b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
}

.rating-stars{
  display:inline-flex;
  align-items:center;
  gap:2px;
  color:#f5b301;
  line-height:1;
  letter-spacing:0;
}

.rating-star{
  position:relative;
  display:inline-block;
  width:1em;
  color:#f5b301;
}

.rating-star-empty,
.rating-star-half{
  color:#d7dce5;
}

.rating-star-half::before{
  content:'\2605';
  position:absolute;
  inset:0;
  width:50%;
  overflow:hidden;
  color:#f5b301;
}

.success-quote{
  margin:0;
  color:#5d4a69;
  font-size:15px;
  line-height:1.7;
  font-style:italic;
}

.success-arrow{
  position:absolute;
  top:50%;
  z-index:3;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  color:#f15a24;
  font-size:38px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(40,22,64,.12);
  transform:translateY(-50%);
  transition:background .25s ease,color .25s ease,transform .25s ease,opacity .25s ease;
}

.success-arrow:hover{
  background:#f15a24;
  color:#fff;
  transform:translateY(-50%) scale(1.04);
}

.success-prev{
  left:0;
}

.success-next{
  right:0;
}

.success-dots{
  display:flex;
  justify-content:center;
  gap:9px;
  margin-top:26px;
}

.success-dot{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  background:#f7c7a6;
  cursor:pointer;
  transition:width .25s ease,background .25s ease;
}

.success-dot.is-active{
  width:26px;
  background:#f15a24;
}

.success-empty,
.insight-empty{
  padding:24px;
  border:1px dashed rgba(241,90,36,.28);
  border-radius:18px;
  color:#756381;
  background:#fffaf4;
}

.ref-blog-news-section{
  background:linear-gradient(180deg,#fff7ed 0%,#fffaf4 100%);
}

.blog-news-layout{
  display:grid;
  grid-template-columns:minmax(0,1.75fr) minmax(340px,.9fr);
  gap:32px;
  align-items:start;
  max-width:1180px;
  margin:0 auto;
}

.latest-insights .sec-title{
  margin:0 0 24px;
}

.insights-list{
  display:grid;
  gap:18px;
}

.insight-card{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:20px;
  align-items:center;
  min-height:150px;
  padding:16px 18px 16px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  color:inherit;
  text-decoration:none;
  border:1px solid rgba(241,90,36,.1);
  box-shadow:0 16px 38px rgba(40,22,64,.055);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.insight-card:hover{
  transform:translateY(-3px);
  border-color:rgba(241,90,36,.24);
  box-shadow:0 22px 48px rgba(40,22,64,.1);
}

.insight-image-wrap{
  height:118px;
  overflow:hidden;
  border-radius:14px;
  background:#eee;
}

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

.insight-card:hover .insight-image-wrap img{
  transform:scale(1.05);
}

.insight-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:7px;
  color:#df570b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.insight-meta span{
  color:#8b7896;
}

.insight-content h3{
  margin:0 0 7px;
  color:#24113f;
  font-size:20px;
  line-height:1.32;
}

.insight-content p{
  margin:0;
  color:#756381;
  font-size:14px;
  line-height:1.65;
}

.latest-insights .ref-btn-outline{
  margin-top:22px;
}

.news-updates-panel{
  display:flex;
  flex-direction:column;
  padding:28px;
  border-radius:22px;
  background:rgba(255,255,255,.97);
  border:1px solid rgba(241,90,36,.13);
  box-shadow:0 20px 46px rgba(40,22,64,.08);
}

.news-updates-panel h2{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 20px;
  color:#24113f;
  font-size:25px;
}

.news-heading-icon{
  display:inline-grid;
  place-items:center;
  flex:0 0 auto;
  width:22px;
  height:22px;
  color:#f15a24;
}

.news-heading-icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.news-updates-list{
  display:grid;
  gap:14px;
}

.news-update-card{
  display:block;
  padding:0 0 14px;
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(40,22,64,.08);
}

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

.news-update-card span{
  display:block;
  margin-bottom:5px;
  color:#df570b;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.news-update-card h3{
  margin:0 0 6px;
  color:#24113f;
  font-size:17px;
  line-height:1.42;
}

.news-update-card p,
.news-empty{
  margin:0;
  color:#756381;
  font-size:13px;
  line-height:1.55;
}

.news-view-all{
  display:inline-flex;
  margin-top:22px;
  color:#f15a24;
  font-weight:800;
  text-decoration:none;
}

@media(max-width:991px){
  .home-v2 .featured-cards{
    grid-template-columns:1fr 1fr;
  }

  .ht-grid,
  .blog-news-layout{
    grid-template-columns:1fr;
  }

  .ht-visual{
    min-height:390px;
  }

  .success-slide{
    flex-basis:calc((100% - 30px) / 2);
  }

  .success-carousel{
    padding-inline:42px;
  }
}

@media(max-width:900px){
  .home-v2 .steps-row{
    grid-template-columns:1fr;
    gap:36px;
  }

  .home-v2 .steps-row::before{
    display:none;
  }

  .home-v2 .step-item{
    padding:0 18px;
  }

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

  .insight-image-wrap{
    height:220px;
  }
}

@media(max-width:640px){
  .success-slide{
    flex-basis:100%;
  }

  .success-carousel{
    padding-inline:36px;
  }

  .success-card{
    padding:24px;
  }
}

@media(max-width:600px){
  .home-v2 .featured-strip-wrapper{
    flex-direction:column;
  }

  .home-v2 .featured-vertical{
    width:100%;
    height:42px;
    writing-mode:initial;
    transform:none;
  }

  .home-v2 .featured-cards,
  .ht-feature-grid{
    grid-template-columns:1fr;
  }

  .ht-photo-card{
    height:330px;
  }

  .ht-floating-badge{
    position:static;
    margin-top:12px;
  }

  .ref-action-row{
    flex-direction:column;
  }

  .ref-btn-primary,
  .ref-btn-light,
  .ref-btn-outline{
    width:100%;
  }
}

/* =====================================================
   HERO + PAGE BANNER POLISH
===================================================== */

.site-header .topbar{
  position:relative;
  display:block;
  height:4px;
  min-height:4px;
  padding:0 !important;
  overflow:hidden;
  background:linear-gradient(90deg,#3d285d 0%,#f15a24 45%,#f9a826 72%,#3d285d 100%);
}

.site-header .topbar::after{
  content:'';
  position:absolute;
  inset:0;
  width:45%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.78),transparent);
  animation:topbarShine 7s linear infinite;
}

.site-header .topbar-left,
.site-header .topbar-right{
  display:none !important;
}

.home-v2 .hero.home-hero-v2{
  position:relative;
  isolation:isolate;
  padding:96px 6% 78px;
  background:
    radial-gradient(circle at 13% 18%,rgba(241,90,36,.14),transparent 24%),
    radial-gradient(circle at 86% 24%,rgba(61,40,93,.12),transparent 25%),
    radial-gradient(circle at 75% 90%,rgba(249,168,38,.16),transparent 28%),
    linear-gradient(135deg,#fffaf4 0%,#fff 48%,#fff3e6 100%);
}

.home-v2 .hero.home-hero-v2::before{
  background:
    var(--kn-hex-orange),
    var(--kn-hex-teal),
    radial-gradient(ellipse at 74% 34%,rgba(241,90,36,.1),transparent 42%);
  background-size:112px 98px,168px 147px,auto;
  opacity:.78;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.48));
}

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

.hero-float-icon{
  position:absolute;
  display:grid;
  place-items:center;
  width:66px;
  height:66px;
  border-radius:20px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(241,90,36,.16);
  color:#3d285d;
  font-size:14px;
  font-weight:800;
  box-shadow:0 20px 50px rgba(61,40,93,.08);
  backdrop-filter:blur(10px);
  animation:heroFloat 8s ease-in-out infinite;
}

.hero-float-icon::after{
  content:'';
  position:absolute;
  inset:10px;
  border:1px solid rgba(241,90,36,.13);
  border-radius:15px;
}

.icon-cap{
  left:7%;
  top:17%;
  animation-delay:-1s;
}

.icon-book{
  right:10%;
  top:18%;
  color:#f15a24;
  animation-delay:-3s;
}

.icon-route{
  left:43%;
  bottom:16%;
  color:#f15a24;
  animation-delay:-5s;
}

.icon-pencil{
  right:6%;
  bottom:34%;
  animation-delay:-2.5s;
}

.hero-float-line{
  position:absolute;
  border:1px dashed rgba(61,40,93,.13);
  border-radius:999px;
  animation:heroOrbit 18s linear infinite;
}

.line-one{
  width:220px;
  height:220px;
  right:4%;
  bottom:6%;
}

.line-two{
  width:150px;
  height:150px;
  left:21%;
  top:7%;
  animation-direction:reverse;
}

.home-hero-copy{
  max-width:720px;
  padding-top:8px;
}

.home-hero-copy .hero-brand-expansion{
  gap:4px;
  padding:7px 13px;
  color:#111;
  font-size:14px;
  font-weight:800;
  letter-spacing:0;
  line-height:1;
  text-transform:none;
}

.home-hero-copy .hero-brand-expansion .brand-word{
  display:inline-flex;
  gap:0;
  color:inherit;
  font-style:normal;
  white-space:nowrap;
}

.home-hero-copy .hero-brand-expansion strong{
  color:#f15a24;
  font-weight:900;
}

.home-hero-title{
  max-width:720px;
  margin:18px 0 12px;
  color:#321f52;
  font-size:clamp(42px,5.25vw,72px);
  line-height:1.02;
}

.hero-highlight{
  position:relative;
  display:inline;
  white-space:normal;
}

.hero-highlight-primary{
  color:#f15a24;
}

.hero-highlight-primary::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:.05em;
  height:.16em;
  border-radius:999px;
  background:rgba(249,168,38,.30);
  z-index:-1;
}

.hero-highlight-ink{
  padding:0 .09em .04em;
  color:#24113f;
  background:linear-gradient(180deg,transparent 52%,rgba(241,90,36,.18) 52%);
  border-radius:.16em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

.home-hero-tagline{
  margin:0 0 12px;
  color:#f15a24;
  font-size:clamp(18px,1.6vw,23px);
  font-weight:800;
  line-height:1.45;
}

.home-hero-desc{
  max-width:620px;
  color:#6f5d7d;
  font-size:18px;
  line-height:1.78;
}

.home-hero-actions{
  margin-top:30px;
}

.home-hero-trust{
  max-width:620px;
}

.home-hero-panel{
  position:relative;
}

.home-hero-panel::before{
  content:'';
  position:absolute;
  inset:28px -22px -20px 24px;
  z-index:-1;
  border-radius:34px;
  background:linear-gradient(135deg,rgba(241,90,36,.10),rgba(61,40,93,.07));
  filter:blur(2px);
}

.hero-panel-card,
.hero-mini-card,
.hero-image-band{
  border-color:rgba(241,90,36,.16);
  box-shadow:0 26px 70px rgba(61,40,93,.10);
}

.page-banner,
.college-hero,
.sa-hero-form-section,
.sa-detail-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

.page-banner::before,
.college-hero::before,
.sa-hero-form-section::before,
.sa-detail-hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    radial-gradient(circle at 11% 24%,rgba(241,90,36,.18) 0 2px,transparent 3px),
    radial-gradient(circle at 23% 72%,rgba(61,40,93,.13) 0 2px,transparent 3px),
    radial-gradient(circle at 77% 28%,rgba(249,168,38,.18) 0 2px,transparent 3px),
    var(--kn-hex-orange),
    var(--kn-hex-teal);
  background-size:210px 210px,260px 260px,230px 230px,112px 98px,168px 147px;
  opacity:.58;
  animation:bannerPatternDrift 28s linear infinite;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.45),rgba(0,0,0,.18));
}

.page-banner::after,
.college-hero::after,
.sa-hero-form-section::after,
.sa-detail-hero::after{
  content:'';
  position:absolute;
  z-index:2;
  width:280px;
  height:280px;
  right:9%;
  bottom:-130px;
  border-radius:50%;
  border:1px dashed rgba(241,90,36,.22);
  box-shadow:0 0 0 34px rgba(255,255,255,.18);
  pointer-events:none;
  animation:heroOrbit 22s linear infinite;
}

.page-banner-overlay{
  z-index:1;
}

.page-banner-img{
  z-index:0;
}

.page-banner-content,
.college-hero-content,
.sa-hero-left,
.sa-detail-hero-content{
  position:relative;
  z-index:3;
}

.page-banner-title{
  color:#321f52;
}

.page-banner-title em{
  color:#f15a24 !important;
  font-style:normal;
}

.page-banner-desc{
  color:#6f5d7d;
}

@keyframes topbarShine{
  0%{transform:translateX(-120%)}
  100%{transform:translateX(260%)}
}

@keyframes heroFloat{
  0%,100%{transform:translate3d(0,0,0) rotate(0deg)}
  50%{transform:translate3d(0,-16px,0) rotate(4deg)}
}

@keyframes heroOrbit{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

@keyframes bannerPatternDrift{
  0%{background-position:0 0,0 0,0 0,0 0,0 0}
  100%{background-position:210px 120px,-180px 140px,160px -120px,46px 46px,46px 46px}
}

@media(max-width:991px){
  .hero-float-icon,
  .hero-float-line{
    opacity:.42;
  }

  .icon-route,
  .icon-pencil{
    display:none;
  }

  .home-hero-title{
    font-size:clamp(38px,7vw,56px);
  }
}

@media(max-width:640px){
  .home-v2 .hero.home-hero-v2{
    padding:70px 6% 56px;
  }

  .home-hero-title{
    font-size:38px;
    line-height:1.08;
  }

  .home-hero-desc{
    font-size:16px;
  }

  .hero-float-icon{
    width:54px;
    height:54px;
    font-size:12px;
  }

  .icon-cap{
    left:3%;
    top:8%;
  }

  .icon-book{
    right:4%;
    top:10%;
  }

  .page-banner::after,
  .college-hero::after,
  .sa-hero-form-section::after,
  .sa-detail-hero::after{
    width:170px;
    height:170px;
    right:-40px;
    bottom:-90px;
  }
}

/* Hero headline hierarchy and gradient highlighted words */
.home-hero-title{
  display:flex;
  flex-direction:column;
  gap:0;
}

.hero-title-line{
  display:block;
}

.hero-title-lead{
  font-size:.92em;
  line-height:.96;
}

.hero-title-focus{
  display:flex;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:.18em;
  line-height:.95;
}

.hero-title-soft{
  color:#321f52;
  font-size:.86em;
  font-weight:700;
}

.hero-title-main{
  font-size:.82em;
  line-height:1.02;
}

.hero-title-final{
  margin-top:.02em;
  line-height:.9;
}

.hero-gradient-word{
  display:inline-block;
  font-family:'Playfair Display',serif;
  font-weight:700;
  letter-spacing:0;
  background:linear-gradient(110deg,#f15a24 0%,#f9a826 36%,#6d3fb5 72%,#3d285d 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 18px 38px rgba(241,90,36,.12);
}

.hero-gradient-future{
  font-size:1.12em;
  font-style:italic;
}

.hero-gradient-career{
  font-size:1.04em;
  font-style:italic;
}

.hero-gradient-career::after{
  content:'';
  display:block;
  width:64%;
  height:8px;
  margin-top:-4px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(241,90,36,.28),rgba(249,168,38,.18),transparent);
}

.hero-highlight-ink{
  background:linear-gradient(180deg,transparent 58%,rgba(241,90,36,.16) 58%);
}

/* Inner page banner highlighted text: gradient + editorial contrast */
.page-banner-title em,
.college-hero .page-banner-title em,
.sa-hero-left h1 em,
.sa-detail-hero h1 em{
  display:inline-block;
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-style:italic !important;
  letter-spacing:0;
  background:linear-gradient(110deg,#f15a24 0%,#f9a826 34%,#6d3fb5 72%,#3d285d 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
  text-shadow:0 16px 36px rgba(241,90,36,.12);
}

.page-banner-title em::after,
.college-hero .page-banner-title em::after,
.sa-hero-left h1 em::after,
.sa-detail-hero h1 em::after{
  content:'';
  display:block;
  width:72%;
  height:7px;
  margin-top:-5px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(241,90,36,.25),rgba(249,168,38,.18),transparent);
}

@media(max-width:640px){
  .hero-title-focus{
    gap:.14em;
  }

  .hero-title-main{
    font-size:.86em;
  }

  .hero-gradient-future{
    font-size:1.02em;
  }

  .hero-gradient-career{
    font-size:.98em;
  }
}

/* =====================================================
   SITE-WIDE FONT REFRESH
   Manrope: readable body/UI
   Plus Jakarta Sans: polished headings/navigation
   Lora: premium highlight/display accents
===================================================== */

:root{
  --font-body:'Manrope',system-ui,-apple-system,'Segoe UI',sans-serif;
  --font-heading:'Plus Jakarta Sans','Manrope',system-ui,sans-serif;
  --font-display:'Lora',Georgia,serif;
}

html,
body,
button,
input,
textarea,
select{
  font-family:var(--font-body);
}

body,
.sec-body,
.page-banner-desc,
.home-hero-desc,
.course-card-desc,
.news-list-desc,
.section-subtitle,
.footer-text,
.contact-form input,
.contact-form textarea{
  font-family:var(--font-body);
  font-weight:400;
  letter-spacing:0;
}

h1,h2,h3,h4,h5,h6,
.sec-title,
.section-title,
.page-banner-title,
.home-hero-title,
.hero-title,
.course-card-title,
.news-list-title,
.application-title,
.footer-cta h2{
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:-.01em;
}

.nav-links a,
.nav-cta,
.btn-red,
.btn-outline,
.btn-ghost,
.topbar,
.topbar-dropdown-btn,
.hero-eyebrow,
.section-eyebrow,
.dark-section-eyebrow,
.ref-eyebrow,
.panel-kicker,
.home-hero-trust span,
.success-tabs span,
.success-rating,
.insight-meta,
.news-update-card span{
  font-family:var(--font-heading);
}

.home-hero-title{
  font-weight:700;
}

.hero-title-soft,
.hero-title-main,
.hero-highlight-ink{
  font-family:var(--font-heading);
  font-weight:700;
}

.hero-gradient-word,
.page-banner-title em,
.college-hero .page-banner-title em,
.sa-hero-left h1 em,
.sa-detail-hero h1 em,
.ref-success-section .sec-title{
  font-family:var(--font-display);
  font-weight:700;
}

.hero-panel-main h2,
.hero-image-band strong,
.hero-mini-card strong,
.svc-name,
.why-title,
.str-name,
.partner-name,
.success-card-top h3,
.insight-content h3,
.news-updates-panel h2,
.news-update-card h3{
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:-.005em;
}

.home-hero-tagline{
  font-family:var(--font-heading);
  font-weight:700;
}

.home-v2 h1,
.home-v2 h2,
.home-v2 h3,
.home-v2 .sec-title,
.home-v2 .section-title{
  font-family:var(--font-heading);
  font-weight:700;
}

.home-v2 .impact-num{
  font-family:var(--font-heading);
}

/* Final hero headline/chip refinements */
.icon-scholar{
  left:11%;
  bottom:18%;
  color:#f15a24;
  animation-delay:-4.5s;
}

.icon-global{
  right:7.5%;
  top:48%;
  animation-delay:-6s;
}

.hero-highlight-ink{
  padding:0 !important;
  background:none !important;
  border-radius:0 !important;
  box-decoration-break:initial;
  -webkit-box-decoration-break:initial;
}

.hero-title-main{
  font-size:.78em;
  line-height:1.04;
}

.hero-career-wrap{
  display:inline-block;
  white-space:nowrap;
}

.hero-gradient-career{
  margin-left:.06em;
  font-size:1.02em;
  white-space:nowrap;
}

@media(max-width:991px){
  .icon-scholar,
  .icon-global{
    opacity:.42;
  }

  .icon-scholar{
    left:4%;
    bottom:24%;
  }
}

@media(max-width:640px){
  .hero-title-main{
    font-size:.84em;
  }

  .hero-career-wrap{
    white-space:normal;
  }

  .icon-scholar,
  .icon-global{
    display:none;
  }
}

/* Premium expertise service section */
.home-v2 .home-services-section{
  position:relative;
  overflow:hidden;
  padding:96px 6%;
  background:
    radial-gradient(circle at 10% 8%,rgba(241,90,36,.07),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(61,40,93,.06),transparent 30%),
    linear-gradient(180deg,#fffaf4 0%,#fff 100%) !important;
}

/* Homepage final requested refinements */
.home-v2 .featured-title{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.home-v2 .featured-location{
  color:var(--muted) !important;
}

.home-v2 .featured-line{
  background:linear-gradient(90deg,var(--brand),#ff8a2a) !important;
  color:#fff !important;
}

.home-v2 .featured-location,
.home-v2 .featured-link{
  font-size:12px !important;
}

.home-v2 .featured-location{
  display:flex;
  align-items:center;
  gap:5px;
}

.home-v2 .featured-location-pin{
  color:#d93025;
  font-size:10px;
  line-height:1;
}

.home-v2 .featured-content{
  min-width:0 !important;
  width:100% !important;
}

.home-v2 .featured-meta{
  min-width:0 !important;
  padding-right:82px !important;
}

@media (min-width:1024px) and (max-width:1440px){
  .home-v2 .hero.home-hero-v2{
    padding-top:48px !important;
    padding-bottom:34px !important;
  }

  .home-hero-grid{
    align-items:start;
    gap:34px;
  }

  .home-hero-copy{
    padding-top:0;
  }

  .home-hero-title{
    margin:10px 0 10px;
    font-size:clamp(34px,4vw,52px);
    line-height:1.01;
  }

  .home-hero-tagline{
    margin-bottom:8px;
  }

  .home-hero-desc{
    font-size:15px;
    line-height:1.55;
    max-width:610px;
  }

  .home-hero-actions{
    margin-top:18px;
  }

  .home-hero-trust{
    margin-top:18px;
  }

  .home-hero-panel{
    gap:10px;
  }

  .hero-panel-main{
    padding:20px;
  }

  .hero-panel-main h2{
    margin:10px 0 6px;
    font-size:22px;
  }

  .hero-panel-main p{
    margin-bottom:14px;
    line-height:1.45;
  }

  .hero-mini-card{
    min-height:112px;
    padding:16px;
    gap:8px;
  }

  .hero-image-band{
    grid-template-columns:112px 1fr;
  }

  .hero-image-band img{
    width:112px;
    height:112px;
  }

  .hero-image-band div{
    padding:16px;
  }

  .icon-cap{
    left:4.5%;
    top:10%;
  }

  .icon-book{
    right:17%;
    top:10%;
  }

  .icon-route{
    left:42%;
    bottom:31%;
  }

  .icon-pencil{
    right:5%;
    bottom:22%;
  }

  .icon-scholar{
    left:8%;
    bottom:11%;
  }

  .icon-global{
    right:10%;
    top:42%;
  }
}

.home-v2 .home-services-section::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    var(--kn-hex-orange),
    var(--kn-hex-teal);
  background-size:112px 98px,168px 147px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.6),transparent 70%);
}

.home-v2 .expertise-section-head{
  position:relative;
  z-index:1;
  width:min(860px,100%);
  margin:0 auto 46px;
  text-align:center;
}

.home-v2 .expertise-section-head .btn-red{
  display:none;
}

.home-v2 .expertise-section-head .section-eyebrow{
  margin-inline:auto;
}

.home-v2 .expertise-section-head .sec-title{
  max-width:820px;
  margin:16px auto 18px;
  color:#321f52;
  font-size:clamp(34px,3.6vw,48px);
  line-height:1.12;
}

.expertise-lead{
  max-width:780px;
  margin:0 auto;
  color:#5f4f73;
  font-size:17px;
  line-height:1.65;
}

.home-v2 .home-services-section .services-grid{
  position:relative;
  z-index:1;
  width:min(1180px,100%);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
}

.home-v2 .home-services-section .svc-card{
  grid-column:auto !important;
  display:flex !important;
  flex-direction:column;
  min-height:274px;
  padding:32px;
  border:1px solid rgba(241,90,36,.12) !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.9) !important;
  box-shadow:0 14px 34px rgba(61,40,93,.055);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.home-v2 .home-services-section .svc-card:nth-child(n+7){
  display:none !important;
}

.home-v2 .home-services-section .svc-card:hover{
  color:inherit;
  transform:translateY(-5px);
  border-color:rgba(241,90,36,.28) !important;
  box-shadow:0 24px 55px rgba(61,40,93,.11);
}

.home-v2 .home-services-section .svc-card::after{
  display:none;
}

.home-v2 .home-services-section .svc-icon{
  position:relative;
  width:56px;
  height:56px;
  margin:0 0 26px;
  border-radius:13px;
  background:#fff4e8 !important;
  color:#f15a24 !important;
  border:1px solid rgba(241,90,36,.1) !important;
  font-size:0;
}

.home-v2 .home-services-section .svc-icon::before{
  content:'';
  width:24px;
  height:24px;
  background:currentColor;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 4.2 4 1.5V11c0 3-1.6 5.9-4 7.3C9.6 16.9 8 14 8 11V7.7l4-1.5Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.home-v2 .home-services-section .svc-card:nth-child(2) .svc-icon::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 3h10l4 4v14H4V3Zm9 1.8V8h3.2L13 4.8ZM7 12h8v2H7v-2Zm0 4h10v2H7v-2Zm12-5h2v10h-2V11Z'/%3E%3C/svg%3E");
}

.home-v2 .home-services-section .svc-card:nth-child(3) .svc-icon::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6h18v12H3V6Zm2 2v8h14V8H5Zm7 1a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm-6 1h3v2H6v-2Zm9 4h3v2h-3v-2Z'/%3E%3C/svg%3E");
}

.home-v2 .home-services-section .svc-card:nth-child(4) .svc-icon::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v12H4V5Zm2 2v8h12V7H6Zm3 13 2-3h2l2 3H9Zm1-10h2v4h-2v-4Zm4-2h2v6h-2V8Z'/%3E%3C/svg%3E");
}

.home-v2 .home-services-section .svc-card:nth-child(5) .svc-icon::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7Zm0 4a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.home-v2 .home-services-section .svc-card:nth-child(6) .svc-icon::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 11 21 3l-4 18-5-7-6 4 3-6-6-1Zm9 1 3 4 2-8-7 4h2Z'/%3E%3C/svg%3E");
}

/* Disciplines and recognized institutes refinements */
.home-v2 .home-streams-section{
  background:
    linear-gradient(180deg,#fffaf4 0%,#fffaf4 34%,#fff6ee 62%,#ffffff 100%) !important;
}

.home-v2 .home-partners-section .partner-card{
  border-radius:4px !important;
}

.home-v2 .home-partners-section .partner-card::after{
  content:none !important;
  display:none !important;
}

.home-v2 .home-partners-section .partner-logo{
  border-radius:2px !important;
}

/* Premium college listing cards */
#colleges-list{
  background:
    radial-gradient(circle at 10% 4%,rgba(241,90,36,.08),transparent 28%),
    radial-gradient(circle at 88% 12%,rgba(61,40,93,.06),transparent 30%),
    linear-gradient(180deg,#fffaf4 0%,#ffffff 42%,#fff8f1 100%);
}

#colleges-list .course-grid{
  width:100%;
  max-width:1680px;
  margin:0 auto;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:24px;
}

#colleges-list .college-list-card{
  position:relative;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  grid-template-rows:1fr auto;
  min-height:220px;
  border:1px solid rgba(241,90,36,.14);
  border-radius:14px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 46px rgba(61,40,93,.075);
  overflow:hidden;
  isolation:isolate;
}

#colleges-list .college-list-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,244,232,.92),rgba(255,255,255,0) 48%);
  opacity:.72;
  pointer-events:none;
  z-index:-1;
}

#colleges-list .college-list-card:hover{
  transform:translateY(-5px);
  border-color:rgba(241,90,36,.34);
  box-shadow:0 28px 70px rgba(61,40,93,.13);
}

#colleges-list .college-list-image-wrap{
  grid-column:1;
  grid-row:1;
  height:100%;
  min-height:220px;
  max-height:220px;
  aspect-ratio:auto;
  border-radius:0;
  background:#f6efe8;
}

#colleges-list .college-list-image{
  height:100%;
  filter:saturate(1.05) contrast(1.02);
}

#colleges-list .course-card-tag{
  top:16px;
  left:16px;
  border-radius:999px;
  background:rgba(255,255,255,.92) !important;
  color:#f15a24 !important;
  border:1px solid rgba(241,90,36,.18);
  box-shadow:0 10px 24px rgba(61,40,93,.08);
}

#colleges-list .college-list-body{
  grid-column:2;
  grid-row:1;
  padding:12px 15px;
  padding-bottom:50px;
  min-width:0;
  justify-content:flex-start;
}

#colleges-list .course-card-title{
  margin:0 0 8px;
  color:#241643;
  font-size:22px;
  line-height:1.28;
  font-weight:800;
}

#colleges-list .college-list-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:10px;
}

#colleges-list .college-list-meta span{
  display:inline-flex;
  align-items:center;
  gap:5px;
  min-height:0;
  padding:0;
  border-radius:0;
  background:transparent;
  border:0;
  color:#7b6b8f;
  font-size:13px;
  font-weight:600;
}

#colleges-list .course-card-desc{
  margin:0 0 4px;
  color:#655678;
  font-size:14px;
  line-height:1.5;
  flex:0 0 auto;
  min-height:calc(14px * 1.5 * 3);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

#colleges-list .course-card-actions{
  grid-column:2;
  grid-row:1;
  align-self:end;
  margin-top:0;
  padding:0 15px 12px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:5px;
}

#colleges-list .college-action-btn,
#colleges-list .course-card-actions .btn-red,
#colleges-list .course-card-actions .btn-outline,
#colleges-list .course-card-actions .college-compare-btn{
  width:100%;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:3px;
  border-radius:5px;
  font-size:11.5px;
  font-weight:600;
  text-align:center;
  text-decoration:none;
  letter-spacing:0;
  box-shadow:0 8px 18px rgba(61,40,93,.045);
}

#colleges-list .course-card-actions .btn-red{
  background:linear-gradient(135deg,#ff8a2a,#f15a24);
  border:1px solid #e85b19;
  color:#fff;
  box-shadow:0 10px 22px rgba(241,90,36,.2);
}

#colleges-list .course-card-actions .btn-outline,
#colleges-list .course-card-actions .college-compare-btn{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(61,40,93,.16);
  color:#321f52;
}

#colleges-list .course-card-actions .btn-outline:hover,
#colleges-list .course-card-actions .college-compare-btn:hover{
  background:#fff7ef;
  color:#f15a24;
  border-color:rgba(241,90,36,.48);
  box-shadow:0 12px 24px rgba(241,90,36,.1);
}

#colleges-list .college-action-btn::before{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  font-weight:900;
  line-height:1;
}

#colleges-list .college-action-view::before{
  content:'i';
  width:15px;
  height:15px;
  border:1.5px solid currentColor;
  border-radius:50%;
  font-size:10px;
  font-family:Georgia,serif;
  font-style:italic;
}

#colleges-list .college-action-enquire::before{
  content:'>>';
  font-size:12px;
  letter-spacing:-2px;
  transform:translateY(-.5px);
}

#colleges-list .college-compare-btn::before{
  content:'+';
  width:16px;
  height:16px;
  border-radius:50%;
  background:#fff4e8;
  color:#f15a24;
  font-size:14px;
}

#colleges-list .college-action-direction::before{
  content:'\1F4CD';
  font-size:13px;
}

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

#colleges-list .course-card-actions .college-compare-btn.active{
  position:relative;
  background:#1f8a4c;
  border-color:#1f8a4c;
  color:transparent;
}

#colleges-list .course-card-actions .college-compare-btn.active::before{
  opacity:0;
}

#colleges-list .course-card-actions .college-compare-btn.active::after{
  content:'\2713 Added';
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

#colleges-list .college-action-direction{
  color:#f15a24 !important;
}

@media(max-width:1600px){
  #colleges-list .course-card-actions{
    grid-column:2;
    grid-row:1;
    align-self:end;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    padding:0 15px 12px;
  }

  #colleges-list .college-list-body{
    padding-bottom:92px;
  }

  #colleges-list .college-action-btn,
  #colleges-list .course-card-actions .btn-red,
  #colleges-list .course-card-actions .btn-outline,
  #colleges-list .course-card-actions .college-compare-btn{
    min-height:30px;
    padding:3px 5px;
    font-size:11.5px;
  }
}

@media(min-width:1181px) and (max-width:1600px){
  #colleges-list .college-list-card{
    min-height:240px;
  }

  #colleges-list .college-list-image-wrap{
    min-height:240px;
    max-height:none;
  }
}

@media(max-width:1180px){
  #colleges-list .college-list-card{
    grid-template-columns:1fr;
  }

  #colleges-list .college-list-image-wrap,
  #colleges-list .college-list-body,
  #colleges-list .course-card-actions{
    grid-column:1;
  }

  #colleges-list .college-list-image-wrap{
    grid-row:1;
  }

  #colleges-list .college-list-body{
    grid-row:2;
  }

  #colleges-list .course-card-actions{
    grid-row:3;
    padding:0 15px 12px;
  }

  #colleges-list .college-list-image-wrap{
    min-height:180px;
    height:180px;
    max-height:180px;
  }

  #colleges-list .course-card-actions{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:820px){
  #colleges-list .course-grid{
    width:min(100% - 28px,680px);
    grid-template-columns:1fr !important;
  }
}

@media(max-width:560px){
  #colleges-list .college-list-body{
    padding:15px;
  }

  #colleges-list .course-card-title{
    font-size:19px;
  }

  #colleges-list .course-card-actions{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

#compareBar,
#compareBar .compare-count{
  color:#fff !important;
}

#compareBar .compare-count span{
  color:#ff8a2a !important;
}

#compareBar .compare-now-btn:hover,
#compareBar .compare-now-btn:focus{
  background:linear-gradient(135deg,#ff8a2a,#f15a24) !important;
  color:#fff !important;
}

/* Medical tourism and services pages */
.mt-container{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}

.mt-hero{
  position:relative;
  min-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#120b26;
}

.mt-hero-media,
.mt-hero-media img,
.mt-hero-overlay{
  position:absolute;
  inset:0;
}

.mt-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.08) contrast(1.05);
}

.mt-hero-overlay{
  background:
    linear-gradient(90deg,rgba(18,11,38,.94) 0%,rgba(18,11,38,.74) 42%,rgba(18,11,38,.2) 100%),
    radial-gradient(circle at 78% 20%,rgba(241,90,36,.28),transparent 28%);
}

.mt-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.72fr);
  gap:56px;
  align-items:center;
}

.mt-hero-copy{
  color:#fff;
}

.mt-hero-copy .section-eyebrow{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}

.mt-hero-copy h1{
  max-width:780px;
  margin:22px 0 22px;
  font-size:clamp(44px,5.2vw,76px);
  line-height:1.02;
  letter-spacing:0;
}

.mt-hero-copy p{
  max-width:650px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.75;
}

.mt-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.mt-hero-panel{
  display:grid;
  gap:14px;
}

.mt-hero-panel div{
  padding:22px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  background:rgba(255,255,255,.12);
  box-shadow:0 22px 60px rgba(0,0,0,.24);
  backdrop-filter:blur(14px);
}

.mt-hero-panel strong{
  display:block;
  margin-bottom:10px;
  color:#ff8a2a;
  font-size:18px;
}

.mt-hero-panel span{
  color:#fff;
  font-weight:700;
  line-height:1.45;
}

.mt-section{
  padding:92px 0;
}

.mt-intro{
  background:linear-gradient(180deg,#fffaf4 0%,#fff 100%);
}

.mt-split{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:70px;
  align-items:start;
}

.mt-split p,
.mt-support-copy .sec-body{
  color:#655678;
  font-size:17px;
  line-height:1.85;
}

.mt-section-head{
  max-width:820px;
  margin:0 auto 48px;
  text-align:center;
}

.mt-section-head .section-eyebrow{
  justify-content:center;
}

.mt-section-head .sec-title{
  margin-top:16px;
}

.mt-care{
  background:#fff;
}

.mt-steps{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}

.mt-step,
.mt-treatment,
.mt-why-card{
  border:1px solid rgba(241,90,36,.14);
  border-radius:12px;
  background:#fff;
  box-shadow:0 18px 44px rgba(61,40,93,.065);
}

.mt-step{
  padding:24px;
}

.mt-step span,
.mt-treatment span,
.mt-why-card span{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff4e8;
  color:#f15a24;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.mt-step h3,
.mt-treatment h3,
.mt-why-card h3{
  margin:0 0 12px;
  color:#241643;
  font-size:20px;
  line-height:1.3;
}

.mt-step p,
.mt-treatment p,
.mt-why-card p{
  margin:0;
  color:#655678;
  line-height:1.7;
}

.mt-treatments,
.services-directory{
  background:
    radial-gradient(circle at 8% 8%,rgba(241,90,36,.07),transparent 28%),
    linear-gradient(180deg,#fff8f1 0%,#fff 100%);
}

.mt-treatment-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.mt-treatment{
  padding:28px;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.mt-treatment:hover,
.mt-why-card:hover,
.mt-step:hover{
  transform:translateY(-4px);
  border-color:rgba(241,90,36,.34);
  box-shadow:0 26px 62px rgba(61,40,93,.12);
}

.mt-support{
  background:#fff;
}

.mt-support-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:52px;
  align-items:center;
}

.mt-support-list{
  display:grid;
  gap:14px;
}

.mt-support-list div{
  padding:22px 24px;
  border:1px solid rgba(61,40,93,.1);
  border-radius:10px;
  background:#fffaf4;
}

.mt-support-list strong{
  display:block;
  margin-bottom:6px;
  color:#241643;
}

.mt-support-list span{
  color:#655678;
  line-height:1.6;
}

.mt-why{
  background:#170e2a;
}

.mt-why-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.mt-why-card{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  padding:30px;
}

.mt-why-card h3,
.mt-why-card p{
  color:#fff;
}

.mt-why-card p{
  color:rgba(255,255,255,.75);
}

.mt-final-cta{
  background:linear-gradient(135deg,#ff8a2a 0%,#f15a24 100%);
  color:#fff;
}

.mt-final-cta .mt-container{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:space-between;
}

.mt-final-cta h2{
  margin:16px 0 8px;
  max-width:760px;
  font-size:clamp(32px,4vw,52px);
  line-height:1.1;
}

.mt-final-cta p{
  margin:0;
  color:rgba(255,255,255,.85);
}

.mt-final-cta .btn-red{
  background:#fff !important;
  color:#f15a24 !important;
  box-shadow:none;
  white-space:nowrap;
}

.mt-final-cta .btn-red:hover,
.mt-final-cta .btn-red:focus{
  background:#321f52 !important;
  color:#fff !important;
}

.services-page-banner .page-banner-overlay{
  background:linear-gradient(90deg,rgba(18,11,38,.78),rgba(18,11,38,.3));
}

@media(max-width:1100px){
  .mt-hero-grid,
  .mt-split,
  .mt-support-grid{
    grid-template-columns:1fr;
  }

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

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

@media(max-width:680px){
  .mt-container{
    width:min(100% - 28px,560px);
  }

  .mt-hero{
    min-height:auto;
    padding:96px 0 70px;
  }

  .mt-hero-copy h1{
    font-size:40px;
  }

  .mt-section{
    padding:64px 0;
  }

  .mt-steps,
  .mt-treatment-grid,
  .mt-why-grid{
    grid-template-columns:1fr;
  }

  .mt-final-cta .mt-container{
    display:block;
  }

  .mt-final-cta .btn-red{
    margin-top:24px;
  }
}

.home-v2 .home-services-section .svc-name{
  margin:0 0 22px;
  color:#321f52;
  font-size:21px;
  line-height:1.28;
  font-weight:800;
}

.home-v2 .home-services-section .svc-desc{
  grid-column:auto !important;
  margin:0;
  color:#655678;
  font-size:15px;
  line-height:1.62;
}

.service-link{
  display:inline-flex;
  width:max-content;
  margin-top:auto;
  padding-top:22px;
  color:#f15a24;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.service-link:hover{
  color:#d9480f;
}

@media(max-width:991px){
  .home-v2 .home-services-section .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:640px){
  .home-v2 .home-services-section{
    padding:72px 6%;
  }

  .home-v2 .home-services-section .services-grid{
    grid-template-columns:1fr;
  }

  .home-v2 .home-services-section .svc-card{
    min-height:auto;
  }
}

/* Final laptop-only homepage corrections */
@media (min-width:1024px) and (max-width:1600px) and (max-height:950px){
  .home-v2 .hero.home-hero-v2{
    min-height:calc(100vh - 20px) !important;
    padding-top:54px !important;
    padding-bottom:64px !important;
    overflow:hidden !important;
  }

  .hero-academic-bg{
    overflow:hidden !important;
    inset:0 !important;
  }

  .home-hero-grid{
    align-items:start !important;
    gap:64px !important;
  }

  .home-hero-copy{
    padding-top:0 !important;
  }

  .home-hero-title{
    margin-top:18px !important;
    margin-bottom:18px !important;
    font-size:clamp(36px,4.1vw,56px) !important;
    line-height:1.04 !important;
  }

  .home-hero-tagline{
    margin-bottom:14px !important;
    font-size:17px !important;
  }

  .home-hero-desc{
    max-width:600px !important;
    font-size:16px !important;
    line-height:1.7 !important;
  }

  .home-hero-actions{
    margin-top:30px !important;
  }

  .home-hero-trust{
    margin-top:30px !important;
  }

  .home-hero-trust span{
    padding:10px 14px !important;
  }

  .home-hero-panel{
    gap:18px !important;
  }

  .hero-panel-main{
    padding:28px !important;
  }

  .hero-panel-main h2{
    margin:16px 0 10px !important;
    font-size:25px !important;
  }

  .hero-panel-main p{
    margin-bottom:22px !important;
    font-size:15px !important;
    line-height:1.65 !important;
  }

  .hero-mini-row{
    gap:18px !important;
  }

  .hero-mini-card{
    min-height:138px !important;
    padding:20px !important;
    gap:14px !important;
  }

  .hero-mini-card span{
    width:32px !important;
    height:32px !important;
    border-radius:11px !important;
  }

  .hero-mini-card strong{
    font-size:15px !important;
    line-height:1.5 !important;
  }

  .hero-image-band{
    grid-template-columns:126px 1fr !important;
  }

  .hero-image-band img{
    width:126px !important;
    height:126px !important;
  }

  .hero-image-band div{
    padding:20px !important;
  }

  .hero-image-band strong{
    font-size:20px !important;
    line-height:1.42 !important;
  }

  .hero-float-icon{
    width:54px !important;
    height:54px !important;
    border-radius:16px !important;
    font-size:13px !important;
    opacity:.72 !important;
    animation-name:heroFloatLaptop !important;
  }

  .hero-float-icon::after{
    inset:8px !important;
    border-radius:12px !important;
  }

  .icon-cap{
    left:4.5% !important;
    top:7% !important;
  }

  .icon-book{
    right:22% !important;
    top:7% !important;
  }

  .icon-route{
    left:44% !important;
    top:11% !important;
    bottom:auto !important;
  }

  .icon-pencil{
    right:9.5% !important;
    top:31% !important;
    bottom:auto !important;
  }

  .icon-scholar{
    left:6% !important;
    bottom:12% !important;
  }

  .icon-global{
    right:9.5% !important;
    top:auto !important;
    bottom:10% !important;
  }

  .featured-line{
    font-size:10px !important;
  }

  .featured-strip-wrapper{
    display:grid !important;
    grid-template-columns:42px minmax(0,1fr) !important;
    width:100% !important;
  }

  .featured-cards{
    min-width:0 !important;
    width:100% !important;
  }

  .featured-card,
  .featured-top,
  .featured-line{
    min-width:0 !important;
  }

  .success-carousel,
  .success-viewport{
    overflow:hidden !important;
  }
}

@keyframes heroFloatLaptop{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

/* Inner page banner grid and line graphics */
.page-banner::before,
.college-hero::before,
.sa-hero-form-section::before,
.sa-detail-hero::before{
  z-index:2 !important;
  background:
    radial-gradient(circle at 12% 22%,rgba(241,90,36,.22) 0 2px,transparent 3px),
    radial-gradient(circle at 30% 76%,rgba(61,40,93,.16) 0 2px,transparent 3px),
    radial-gradient(circle at 82% 28%,rgba(249,168,38,.20) 0 2px,transparent 3px),
    var(--kn-hex-orange),
    var(--kn-hex-teal) !important;
  background-size:220px 220px,270px 270px,240px 240px,112px 98px,168px 147px !important;
  opacity:.82 !important;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.62),rgba(0,0,0,.28)) !important;
}

.page-banner::after,
.college-hero::after,
.sa-hero-form-section::after,
.sa-detail-hero::after{
  z-index:2 !important;
  width:320px !important;
  height:320px !important;
  right:7% !important;
  bottom:-150px !important;
  border:1px dashed rgba(241,90,36,.34) !important;
  box-shadow:
    0 0 0 34px rgba(255,255,255,.16),
    -420px -120px 0 -150px rgba(241,90,36,.16),
    -260px 86px 0 -178px rgba(61,40,93,.13) !important;
}

.page-banner .page-banner-content::before,
.college-hero .college-hero-content::before,
.sa-detail-hero .sa-detail-content::before,
.sa-hero-form-section .sa-hero-left::before{
  content:'';
  position:absolute;
  left:-42px;
  top:-24px;
  width:150px;
  height:150px;
  border-top:2px solid rgba(241,90,36,.36);
  border-left:2px solid rgba(241,90,36,.26);
  border-radius:26px 0 0 0;
  pointer-events:none;
}

.page-banner .page-banner-content::after,
.college-hero .college-hero-content::after,
.sa-detail-hero .sa-detail-content::after,
.sa-hero-form-section .sa-hero-left::after{
  content:'';
  position:absolute;
  width:210px;
  height:1px;
  left:32%;
  bottom:-34px;
  background:linear-gradient(90deg,transparent,rgba(241,90,36,.48),transparent);
  transform:rotate(-8deg);
  pointer-events:none;
}

.page-banner-content,
.college-hero-content,
.sa-detail-content,
.sa-hero-left{
  position:relative;
  z-index:3;
}

@media(max-width:768px){
  .page-banner .page-banner-content::before,
  .college-hero .college-hero-content::before,
  .sa-detail-hero .sa-detail-content::before,
  .sa-hero-form-section .sa-hero-left::before,
  .page-banner .page-banner-content::after,
  .college-hero .college-hero-content::after,
  .sa-detail-hero .sa-detail-content::after,
  .sa-hero-form-section .sa-hero-left::after{
    display:none;
  }
}

.nowrap{
  white-space:nowrap;
}

@media(max-width:560px){
  .nowrap{
    white-space:normal;
  }
}

/* Dark image banners: keep detail/service text readable without affecting listing banners */
.college-hero .page-banner-title,
.services-page-banner .page-banner-title{
  color:#ffffff !important;
  text-shadow:0 3px 18px rgba(0,0,0,.38);
}

.college-hero .page-banner-title em,
.services-page-banner .page-banner-title em{
  color:#fff1dc !important;
  background:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
  text-shadow:0 3px 18px rgba(0,0,0,.35);
}

.college-hero .page-banner-desc,
.services-page-banner .page-banner-desc{
  color:rgba(255,255,255,.86) !important;
  text-shadow:0 2px 12px rgba(0,0,0,.30);
}

.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: #071766;
  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: #f97316;
  background: #f97316;
  color: #fff;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 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: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.webinar-date {
  color: #f97316;
  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: #071766;
  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: #f97316;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

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

.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: #071766;
  border: 1px solid #e5eaf2;
  font-weight: 800;
  font-size: 13px;
}

.webinar-detail-meta .event-category-meta {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.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: #071766;
}

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

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

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

.webinar-register-card h3 {
  color: #071766;
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.webinar-register-note {
  margin: 0 0 18px;
  color: #f97316;
  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 #d9e1ec;
  min-height: 44px;
  padding: 10px 12px;
  box-sizing: border-box;
  font-size: 14px;
}

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

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

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

.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, #071766 0%, #f97316 100%);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7, 23, 102, 0.28);
  cursor: pointer;
}

.ai-finder-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 2px solid rgba(249, 115, 22, 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: #071766;
  box-shadow: inset 0 0 0 2px rgba(249, 115, 22, 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, #071766 0%, #182b91 55%, #f97316 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: #f97316;
  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: #071766;
  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: #071766;
  padding: 9px 11px;
  font-size: 13px;
  box-sizing: border-box;
}

.ai-finder input:focus,
.ai-finder select:focus {
  outline: 2px solid rgba(249, 115, 22, 0.18);
  border-color: #f97316;
}

.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: #f97316;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 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: #f97316;
  border-right-color: #071766;
  animation: aiSpin 0.9s linear infinite;
}

.ai-loader-title {
  color: #071766;
  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: #071766;
  font-size: 18px;
}

.ai-results-head button {
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #fff;
  color: #071766;
  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: #071766;
  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: #fff7ed;
  color: #c2410c;
  font-size: 11px;
  font-weight: 900;
}

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

.ai-result-card a {
  color: #f97316;
  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: #fffaf7;
}

.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: #071766;
  font-size: 28px;
  line-height: 1.2;
}

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

.college-finder-refine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: #f97316;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 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: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  font-size: 13px;
  font-weight: 900;
}

.college-finder-result-list {
  display: grid;
  gap: 18px;
}

.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: #071766;
}

.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) {
  .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%;
  }
}

/* Kollege Next brand refresh */
:root{
  --kn-navy:#06165f;
  --kn-navy-deep:#02081f;
  --kn-teal:#04b7c4;
  --kn-teal-soft:#e7fbfc;
  --kn-orange:#ff6b00;
  --kn-gold:#ffb52e;
  --kn-ink:#07143f;
  --kn-muted:#526078;
  --kn-line:#d9e7ee;
  --brand:var(--kn-orange);
  --brand-dark:#f05d00;
  --brand-deep:#c94300;
  --brand-soft:#fff4e8;
  --brand-soft-2:#ffe1c1;
  --gold:var(--kn-gold);
  --ink:var(--kn-ink);
  --ink-2:#10266d;
  --muted:var(--kn-muted);
  --surface-soft:#f3fbfc;
  --line:var(--kn-line);
  --red:var(--kn-orange);
  --red-dark:#e85a00;
  --red-light:#ff8a2a;
  --red-pale:#fff4e8;
  --red-mid:#ff7417;
  --green:var(--kn-teal);
  --charcoal:var(--kn-navy-deep);
}

body{
  color:var(--kn-ink);
  background:linear-gradient(180deg,#ffffff 0%,#f7fdfe 42%,#fff9f4 100%);
}

.site-header,
nav{
  background:linear-gradient(135deg,var(--kn-navy-deep) 0%,#07124a 58%,#050b2a 100%) !important;
  border-bottom:1px solid rgba(4,183,196,.26) !important;
  box-shadow:0 14px 36px rgba(2,8,31,.18) !important;
}

.topbar,
.site-header .topbar{
  background:linear-gradient(90deg,var(--kn-navy-deep) 0%,var(--kn-navy) 48%,var(--kn-orange) 100%) !important;
  color:rgba(255,255,255,.9) !important;
}

.topbar-icon{
  background:rgba(4,183,196,.22) !important;
  border:1px solid rgba(4,183,196,.32);
}

.nav-inner{
  min-height:82px;
}

.nav-logo{
  min-width:210px;
}

.nav-logo-img{
  width:auto !important;
  max-width:34vw;
  height:74px !important;
  max-height:74px !important;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.28));
}

.nav-links a{
  color:rgba(255,255,255,.88) !important;
}

.nav-links a:hover,
.nav-links a.active{
  color:#fff !important;
}

.nav-links a::after{
  background:linear-gradient(90deg,var(--kn-teal),var(--kn-gold),var(--kn-orange)) !important;
  height:3px;
}

.nav-toggle span{
  background:#fff !important;
}

.nav-cta,
.btn-red,
.footer-cta-btn,
.download-submit-btn,
.compare-view-btn,
.footer-newsletter button{
  background:linear-gradient(135deg,var(--kn-orange) 0%,#ff8a17 48%,var(--kn-gold) 100%) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:0 14px 28px rgba(255,107,0,.24) !important;
}

.nav-cta:hover,
.btn-red:hover,
.footer-cta-btn:hover,
.download-submit-btn:hover,
.compare-view-btn:hover,
.footer-newsletter button:hover{
  background:linear-gradient(135deg,var(--kn-teal) 0%,#039aaa 100%) !important;
  color:#fff !important;
}

.btn-outline{
  border-color:rgba(4,183,196,.45) !important;
  color:var(--kn-navy) !important;
}

.btn-outline:hover{
  background:var(--kn-teal) !important;
  color:#fff !important;
}

.hero-eyebrow,
.section-eyebrow,
.dark-section-eyebrow,
.section-tag,
.home-hero-copy .hero-brand-expansion{
  background:rgba(4,183,196,.12) !important;
  border-color:rgba(4,183,196,.32) !important;
  color:var(--kn-navy) !important;
}

.dark-section-eyebrow,
.mt-hero-copy .section-eyebrow{
  color:#fff !important;
}

.hero-eyebrow span,
.section-eyebrow span,
.dark-section-eyebrow span,
.eyebrow::before{
  background:var(--kn-teal) !important;
}

.home-hero-copy .hero-brand-expansion strong,
.home-hero-tagline,
.featured-link,
.home-v2 .featured-link,
.home-v2 .featured-location-pin,
.news-card-category,
.course-card-category{
  color:var(--kn-orange) !important;
}

.home-v2 .hero.home-hero-v2{
  background:
    radial-gradient(circle at 12% 14%,rgba(4,183,196,.2),transparent 30%),
    radial-gradient(circle at 86% 12%,rgba(255,181,46,.2),transparent 32%),
    linear-gradient(135deg,#f4fdff 0%,#fff 48%,#fff3e8 100%) !important;
}

.home-v2 .hero.home-hero-v2::before{
  background:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 78% 28%,rgba(4,183,196,.1),transparent 42%) !important;
  background-size:112px 98px,168px 147px,auto !important;
}

.home-hero-title,
.sec-title,
.section-title,
.page-banner-title{
  color:var(--kn-navy) !important;
}

.hero-gradient-word,
.hero-gradient-career,
.page-banner-title em{
  background:linear-gradient(110deg,var(--kn-teal) 0%,var(--kn-navy) 42%,var(--kn-orange) 74%,var(--kn-gold) 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
}

.hero-highlight-ink{
  color:var(--kn-navy) !important;
  background:linear-gradient(180deg,transparent 56%,rgba(4,183,196,.22) 56%) !important;
}

.hero-gradient-career::after{
  background:linear-gradient(90deg,rgba(4,183,196,.35),rgba(255,181,46,.28),transparent) !important;
}

.hero-panel-main,
.hero-mini-card,
.hero-image-band,
.featured-card,
.about-grid,
.mv-box,
.svc-card,
.contact-form,
.course-card,
.news-card,
.testimonial-card{
  border-color:rgba(4,183,196,.18) !important;
  box-shadow:0 18px 42px rgba(7,20,63,.08) !important;
}

.panel-kicker,
.featured-vertical,
.home-v2 .featured-vertical,
.home-v2 .featured-line{
  background:linear-gradient(135deg,var(--kn-navy) 0%,var(--kn-teal) 58%,var(--kn-orange) 120%) !important;
  color:#fff !important;
}

.featured-strip-section,
.home-v2 .featured-strip-section,
.streams-section,
.home-services-section,
.home-partners-section,
.home-why-section{
  background:linear-gradient(135deg,#f2fcfd 0%,#fff 54%,#fff6ec 100%) !important;
}

.site-footer,
footer{
  background:
    radial-gradient(circle at 12% 0%,rgba(4,183,196,.16),transparent 28%),
    linear-gradient(135deg,var(--kn-navy-deep) 0%,#07124a 58%,#020614 100%) !important;
  color:rgba(255,255,255,.7) !important;
}

.footer-logo-img{
  width:auto !important;
  max-width:100%;
  height:102px !important;
  max-height:102px !important;
  object-fit:contain;
  background:#020614 !important;
  border:1px solid rgba(4,183,196,.22);
  border-radius:8px;
  padding:6px 10px;
}

.footer-col-title{
  color:#fff !important;
}

.footer-links a::before{
  background:var(--kn-teal) !important;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover{
  color:var(--kn-gold) !important;
}

.footer-newsletter input{
  border-color:rgba(4,183,196,.28) !important;
}

@media (max-width:1024px){
  .nav-logo-img{
    width:auto !important;
    height:64px !important;
    max-width:52vw;
  }

  .nav-collapse{
    background:#06113d !important;
    border-top:1px solid rgba(4,183,196,.24);
  }
}

@media (max-width:640px){
  .nav-inner{
    min-height:72px;
  }

  .nav-logo{
    min-width:0;
  }

  .nav-logo-img{
    width:auto !important;
    height:62px !important;
    max-width:58vw;
  }

  .footer-logo-img{
    width:auto !important;
    height:92px !important;
  }
}

/* Kollege Next homepage v3 */
.home-v3{
  background:#f7fbfc;
}

.home-v3 .site-header{
  position:sticky;
  top:0;
  z-index:500;
}

.home-v3 .kn-kicker{
  --kn-home-arrow-marker:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 32'%3E%3Cg transform-origin='20 16'%3E%3Cpath d='M29 5 L7 16 L18.4 18.3 L22.8 27 Z' fill='%23ff6b00'%3E%3Canimate attributeName='opacity' values='.55;1;.55' dur='1.8s' begin='0s' repeatCount='indefinite'/%3E%3C/path%3E%3CanimateTransform attributeName='transform' type='scale' values='.92;1.06;.92' dur='1.8s' begin='0s' repeatCount='indefinite' additive='sum'/%3E%3C/g%3E%3C/svg%3E");
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:max-content;
  max-width:100%;
  color:var(--kn-teal);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.home-v3 .kn-kicker > span{
  width:24px;
  height:24px;
  border-radius:0;
  background:var(--kn-home-arrow-marker) center/contain no-repeat;
  box-shadow:none;
  flex:0 0 auto;
  filter:drop-shadow(0 0 7px rgba(255,107,0,.2));
}

.kn-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 20%,rgba(4,183,196,.24),transparent 34%),
    radial-gradient(circle at 78% 12%,rgba(255,107,0,.2),transparent 30%),
    linear-gradient(135deg,#02081f 0%,#07165f 54%,#02111d 100%);
  color:#fff;
}

.kn-hero-bg{
  position:absolute;
  inset:0;
  background:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 78% 24%,rgba(255,107,0,.14),transparent 42%);
  background-size:112px 98px,168px 147px,auto;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.45),transparent);
  pointer-events:none;
}

.kn-hero-shell{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.76fr);
  gap:58px;
  align-items:center;
  width:min(1180px,88%);
  margin:0 auto;
  padding:86px 0 74px;
}

.kn-hero-copy h1{
  max-width:760px;
  margin:22px 0 20px;
  color:#fff;
  font-size:clamp(42px,5.7vw,78px);
  line-height:.96;
  letter-spacing:0;
}

.kn-hero-copy > p{
  max-width:650px;
  color:rgba(255,255,255,.74);
  font-size:18px;
  line-height:1.75;
}

.kn-search-card{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  max-width:760px;
  margin-top:34px;
  padding:16px;
  border:1px solid rgba(4,183,196,.28);
  border-radius:8px;
  background:rgba(255,255,255,.09);
  box-shadow:0 28px 80px rgba(0,0,0,.25);
  backdrop-filter:blur(16px);
}

.kn-search-icon{
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  border-radius:8px;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--kn-teal),var(--kn-orange));
}

.kn-search-copy strong{
  display:block;
  color:#fff;
  font-size:17px;
}

.kn-search-copy span{
  display:block;
  margin-top:3px;
  color:rgba(255,255,255,.62);
  font-size:14px;
}

.kn-search-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.kn-search-actions a,
.kn-search-actions button,
.kn-final-actions a{
  min-height:42px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  padding:11px 15px;
  background:#fff;
  color:var(--kn-navy);
  font:inherit;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}

.kn-search-actions button{
  border:0;
  background:linear-gradient(135deg,var(--kn-orange),var(--kn-gold));
  color:#fff;
}

.kn-proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.kn-proof-row div{
  min-width:148px;
  padding:12px 14px;
  border-left:3px solid var(--kn-teal);
  background:rgba(255,255,255,.08);
}

.kn-proof-row strong,
.kn-proof-row span{
  display:block;
}

.kn-proof-row strong{
  color:#fff;
  font-size:18px;
}

.kn-proof-row span{
  margin-top:2px;
  color:rgba(255,255,255,.62);
  font-size:13px;
}

.kn-dashboard{
  display:grid;
  gap:14px;
  padding:18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.08));
  box-shadow:0 34px 90px rgba(0,0,0,.32);
  backdrop-filter:blur(18px);
}

.kn-dash-top,
.kn-route-card,
.kn-counsellor-note{
  border-radius:8px;
  background:#fff;
  color:var(--kn-navy);
}

.kn-dash-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
}

.kn-dash-top span{
  color:var(--kn-muted);
  font-size:13px;
}

.kn-dash-top strong{
  color:var(--kn-orange);
}

.kn-route-card{
  padding:18px;
}

.kn-route-card span,
.kn-counsellor-note span,
.kn-dash-grid small{
  display:block;
  color:var(--kn-muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.kn-route-card strong{
  display:block;
  margin-top:8px;
  font-size:20px;
}

.kn-route-meter{
  height:9px;
  margin-top:18px;
  overflow:hidden;
  border-radius:99px;
  background:#e8f2f5;
}

.kn-route-meter i{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--kn-teal),var(--kn-orange));
}

.kn-dash-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.kn-dash-grid a{
  min-height:104px;
  padding:16px;
  border:1px solid rgba(4,183,196,.2);
  border-radius:8px;
  background:#f6fdfe;
  color:var(--kn-navy);
  text-decoration:none;
}

.kn-dash-grid strong{
  display:block;
  margin-top:8px;
  font-size:18px;
}

.kn-counsellor-note{
  padding:18px;
}

.kn-counsellor-note p{
  margin:8px 0 16px;
  color:var(--kn-muted);
  line-height:1.6;
}

.kn-pathways,
.kn-featured,
.kn-journey,
.kn-streams,
.kn-services,
.kn-institutes,
.kn-insights,
.kn-final-cta{
  width:min(1180px,88%);
  margin:0 auto;
  padding:76px 0;
}

.kn-section-head{
  max-width:720px;
  margin-bottom:32px;
}

.kn-section-head h2,
.kn-featured-side h2,
.kn-services-panel h2,
.kn-final-cta h2{
  margin:12px 0 0;
  color:var(--kn-navy);
  font-size:clamp(32px,4vw,52px);
  line-height:1.04;
}

.kn-section-head p,
.kn-featured-side p,
.kn-final-cta p{
  margin-top:14px;
  color:var(--kn-muted);
  line-height:1.75;
}

.kn-path-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.kn-path-card,
.kn-step-card,
.kn-service-card,
.kn-blog-card,
.kn-news-panel,
.kn-empty-card{
  border:1px solid rgba(4,183,196,.18);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 42px rgba(7,20,63,.07);
}

.kn-path-card{
  min-height:255px;
  padding:22px;
  color:var(--kn-navy);
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.kn-path-card:hover,
.kn-feature-card:hover,
.kn-stream-card:hover,
.kn-blog-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,107,0,.35);
  box-shadow:0 24px 58px rgba(7,20,63,.12);
}

.kn-path-card small,
.kn-blog-card span,
.kn-news-panel span{
  color:var(--kn-orange);
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.kn-path-card h3,
.kn-service-card h3,
.kn-stream-card h3,
.kn-blog-card h3,
.kn-news-panel h3{
  margin:14px 0 10px;
  color:var(--kn-navy);
  font-size:22px;
  line-height:1.2;
}

.kn-path-card p,
.kn-service-card p,
.kn-stream-card p,
.kn-blog-card p{
  color:var(--kn-muted);
  line-height:1.65;
}

.kn-path-card > span{
  display:inline-flex;
  margin-top:24px;
  color:var(--kn-teal);
  font-weight:900;
}

.kn-featured{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:26px;
  align-items:stretch;
}

.kn-featured-side{
  padding:26px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--kn-navy),#0b2b74);
  color:#fff;
}

.kn-featured-side h2{
  color:#fff;
}

.kn-featured-side p{
  color:rgba(255,255,255,.68);
}

.kn-featured-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.kn-feature-card{
  display:grid;
  grid-template-columns:86px minmax(0,1fr);
  gap:16px;
  align-items:center;
  min-height:150px;
  padding:18px;
  border:1px solid rgba(4,183,196,.18);
  border-radius:8px;
  background:#fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 18px 42px rgba(7,20,63,.07);
}

.kn-feature-card img{
  width:86px;
  height:86px;
  object-fit:contain;
  border-radius:8px;
  background:#f6fbfd;
  border:1px solid #e5f2f5;
}

.kn-feature-card h3{
  margin:0;
  color:var(--kn-navy);
  font-size:18px;
}

.kn-feature-card p{
  margin:6px 0;
  color:var(--kn-muted);
}

.kn-feature-card span{
  display:inline-flex;
  padding:6px 9px;
  border-radius:99px;
  background:#fff4e8;
  color:var(--kn-orange);
  font-size:12px;
  font-weight:800;
}

.kn-journey{
  width:100%;
  max-width:none;
  padding:82px 6%;
  background:linear-gradient(135deg,#eefcfd 0%,#fff 48%,#fff4e8 100%);
}

.kn-journey .kn-section-head{
  width:min(1180px,100%);
  margin-inline:auto;
}

.kn-journey-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  width:min(1180px,100%);
  margin:0 auto;
}

.kn-step-card{
  padding:22px;
}

.kn-step-card strong{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--kn-teal),var(--kn-navy));
  color:#fff;
}

.kn-step-card h3{
  margin:18px 0 10px;
  color:var(--kn-navy);
}

.kn-step-card p{
  color:var(--kn-muted);
  line-height:1.65;
}

.kn-stream-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.kn-stream-card{
  position:relative;
  min-height:190px;
  padding:22px;
  overflow:hidden;
  border:1px solid rgba(4,183,196,.18);
  border-radius:8px;
  background:#fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 18px 42px rgba(7,20,63,.07);
}

.kn-stream-card::before{
  content:'';
  position:absolute;
  top:-54px;
  right:-54px;
  width:152px;
  height:152px;
  border-radius:0 0 0 92px;
  background:
    radial-gradient(circle at 35% 35%,rgba(255,255,255,.72),rgba(255,255,255,0) 48%),
    linear-gradient(135deg,rgba(4,183,196,.22),rgba(255,107,0,.18));
  border-left:1px solid rgba(4,183,196,.16);
  border-bottom:1px solid rgba(255,107,0,.14);
  transition:transform .25s ease,opacity .25s ease;
}

.kn-stream-card::after{
  content:'';
  position:absolute;
  top:18px;
  right:18px;
  width:52px;
  height:52px;
  border-radius:18px 18px 18px 4px;
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 30px rgba(7,20,63,.1);
  backdrop-filter:blur(10px);
  transition:transform .25s ease;
}

.kn-stream-card:hover::before{
  transform:translate(-6px,6px) scale(1.04);
}

.kn-stream-card:hover::after,
.kn-stream-card:hover .kn-stream-icon{
  transform:translate(-3px,3px) rotate(-3deg);
}

.kn-stream-icon{
  position:absolute;
  top:28px;
  right:30px;
  z-index:2;
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  color:var(--kn-orange);
  font-size:26px;
  line-height:1;
  transition:transform .25s ease;
}

.kn-stream-card > span:not(.kn-stream-icon){
  position:relative;
  z-index:1;
  color:rgba(4,183,196,.28);
  font-size:38px;
  font-weight:900;
}

.kn-stream-card h3{
  position:relative;
  z-index:1;
  margin:18px 0 8px;
  padding-right:58px;
}

.kn-stream-card p{
  position:relative;
  z-index:1;
  padding-right:18px;
}

.kn-services{
  width:100%;
  max-width:none;
  padding:82px 6%;
  background:var(--kn-navy-deep);
}

.kn-services-panel,
.kn-service-grid{
  width:min(1180px,100%);
  margin:0 auto;
}

.kn-services-panel{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:end;
  margin-bottom:28px;
}

.kn-services-panel h2{
  max-width:760px;
  color:#fff;
}

.kn-service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.kn-service-card{
  min-height:178px;
  padding:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.06));
  border-color:rgba(255,255,255,.12);
}

.kn-service-card h3{
  color:#fff;
}

.kn-service-card p{
  color:rgba(255,255,255,.68);
}

.kn-logo-cloud{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}

.kn-logo-cloud a{
  display:grid;
  place-items:center;
  min-height:112px;
  padding:16px;
  border:1px solid rgba(4,183,196,.18);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 32px rgba(7,20,63,.06);
}

.kn-logo-cloud img{
  max-width:100%;
  max-height:72px;
  object-fit:contain;
}

.kn-insights{
  width:100%;
  max-width:none;
  padding:82px 6%;
  background:#f3fbfc;
}

.kn-insights .kn-section-head,
.kn-insight-layout{
  width:min(1180px,100%);
  margin-inline:auto;
}

.kn-insight-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:18px;
}

.kn-blog-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.kn-blog-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  color:inherit;
  text-decoration:none;
}

.kn-blog-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.kn-blog-card div{
  padding:18px;
}

.kn-news-panel{
  padding:22px;
}

.kn-news-panel h3{
  margin-top:0;
}

.kn-news-panel a:not(.kn-news-more){
  display:block;
  padding:14px 0;
  border-top:1px solid #e2eef2;
  color:inherit;
  text-decoration:none;
}

.kn-news-panel strong{
  display:block;
  margin-top:5px;
  color:var(--kn-navy);
  line-height:1.35;
}

.kn-news-more{
  display:inline-flex;
  margin-top:18px;
  color:var(--kn-orange);
  font-weight:900;
  text-decoration:none;
}

.kn-final-cta{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:26px;
  align-items:center;
  margin-block:76px;
  padding:34px;
  border-radius:8px;
  background:
    radial-gradient(circle at 88% 0%,rgba(4,183,196,.28),transparent 34%),
    linear-gradient(135deg,var(--kn-navy) 0%,var(--kn-navy-deep) 100%);
  color:#fff;
}

.kn-final-cta h2{
  color:#fff;
}

.kn-final-cta p{
  color:rgba(255,255,255,.68);
}

.kn-final-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
}

.kn-final-actions a{
  display:inline-flex;
  align-items:center;
  background:rgba(255,255,255,.1);
  color:#fff;
}

.kn-empty-card{
  padding:28px;
  color:var(--kn-muted);
}

@media (max-width:1100px){
  .kn-hero-shell,
  .kn-featured,
  .kn-insight-layout{
    grid-template-columns:1fr;
  }

  .kn-path-grid,
  .kn-journey-grid,
  .kn-stream-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

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

  .kn-logo-cloud{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .kn-hero-shell,
  .kn-pathways,
  .kn-featured,
  .kn-streams,
  .kn-institutes,
  .kn-final-cta{
    width:calc(100% - 32px);
  }

  .kn-hero-shell{
    padding:54px 0 48px;
    gap:34px;
  }

  .kn-hero-copy h1{
    font-size:42px;
  }

  .kn-search-card{
    grid-template-columns:1fr;
  }

  .kn-search-actions{
    justify-content:stretch;
  }

  .kn-search-actions a,
  .kn-search-actions button{
    flex:1 1 100px;
    text-align:center;
  }

  .kn-dashboard{
    padding:12px;
  }

  .kn-dash-grid,
  .kn-path-grid,
  .kn-featured-list,
  .kn-journey-grid,
  .kn-stream-grid,
  .kn-service-grid,
  .kn-blog-list,
  .kn-final-cta{
    grid-template-columns:1fr;
  }

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

  .kn-services-panel,
  .kn-final-cta{
    align-items:flex-start;
    flex-direction:column;
  }

  .kn-services-panel{
    display:flex;
  }

  .kn-final-actions{
    justify-content:flex-start;
  }
}

/* Client feedback pass: light header, left-aligned blocks, editorial insights */
.home-v3 .site-header,
.home-v3 nav{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid rgba(4,183,196,.18) !important;
  box-shadow:0 12px 30px rgba(7,20,63,.08) !important;
  backdrop-filter:blur(16px);
}

.home-v3 .topbar,
.home-v3 .site-header .topbar{
  background:linear-gradient(90deg,#eefbfc 0%,#fff7ef 100%) !important;
  color:var(--kn-navy) !important;
  border-bottom:1px solid rgba(4,183,196,.16);
}

.home-v3 .topbar a{
  color:var(--kn-navy) !important;
}

.home-v3 .topbar-icon{
  color:#fff;
  background:linear-gradient(135deg,var(--kn-teal),var(--kn-orange)) !important;
}

.home-v3 .nav-inner{
  min-height:92px;
}

.home-v3 .nav-logo{
  min-width:280px;
}

.home-v3 .nav-logo-img{
  height:88px !important;
  max-height:88px !important;
  max-width:300px !important;
  filter:none;
}

.home-v3 .nav-links a{
  color:var(--kn-navy) !important;
  font-weight:800;
}

.home-v3 .nav-links a:hover,
.home-v3 .nav-links a.active{
  color:var(--kn-orange) !important;
}

.home-v3 .nav-toggle span{
  background:var(--kn-navy) !important;
}

.home-v3 .kn-section-head{
  max-width:860px;
  margin-left:0;
  margin-right:0;
  text-align:left;
}

.home-v3 .kn-journey .kn-section-head,
.home-v3 .kn-insights .kn-section-head{
  margin-left:auto;
  margin-right:auto;
}

.home-v3 .kn-journey .kn-section-head,
.home-v3 .kn-insights .kn-section-head{
  width:min(1180px,100%);
  max-width:min(1180px,100%);
}

.home-v3 .kn-journey .kn-section-head h2,
.home-v3 .kn-insights .kn-section-head h2{
  max-width:760px;
}

.kn-tools{
  width:min(1180px,88%);
  margin:0 auto;
  padding:10px 0 76px;
}

.kn-tools-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:14px;
}

.kn-tool-card{
  position:relative;
  min-height:210px;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(4,183,196,.2);
  border-radius:8px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(244,253,255,.92)),
    #fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 18px 42px rgba(7,20,63,.08);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.kn-tool-card::after{
  content:'';
  position:absolute;
  right:-40px;
  bottom:-46px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,107,0,.2),transparent 70%);
}

.kn-tool-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,107,0,.38);
  box-shadow:0 24px 58px rgba(7,20,63,.13);
}

.kn-tool-card span{
  display:inline-flex;
  padding:7px 10px;
  border-radius:8px;
  background:var(--kn-navy);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.kn-tool-card h3{
  margin:28px 0 10px;
  color:var(--kn-navy);
  font-size:26px;
  line-height:1.1;
}

.kn-tool-card p{
  max-width:440px;
  color:var(--kn-muted);
  line-height:1.7;
}

.home-v3 .kn-insights{
  background:linear-gradient(135deg,#f3fbfc 0%,#ffffff 46%,#fff7ef 100%);
}

.home-v3 .kn-insight-layout{
  grid-template-columns:minmax(0,1fr) 360px;
  align-items:start;
}

.home-v3 .kn-blog-list{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.home-v3 .kn-blog-card{
  display:grid;
  grid-template-columns:230px minmax(0,1fr);
  min-height:190px;
  border-radius:8px;
  background:#fff;
}

.home-v3 .kn-blog-card img{
  width:100%;
  height:100%;
  min-height:190px;
  aspect-ratio:auto;
}

.home-v3 .kn-blog-card div{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:22px 24px;
}

.home-v3 .kn-blog-card h3{
  max-width:560px;
  font-size:25px;
}

.home-v3 .kn-news-panel{
  position:sticky;
  top:126px;
  border-color:rgba(255,107,0,.24);
}

.home-v3 .kn-news-panel h3{
  padding-bottom:14px;
  border-bottom:1px solid #e2eef2;
}

@media (max-width:1100px){
  .home-v3 .nav-logo{
    min-width:230px;
  }

  .home-v3 .nav-logo-img{
    height:76px !important;
    max-height:76px !important;
    max-width:250px !important;
  }

  .kn-tools-grid{
    grid-template-columns:1fr;
  }

  .home-v3 .kn-insight-layout{
    grid-template-columns:1fr;
  }

  .home-v3 .kn-news-panel{
    position:relative;
    top:auto;
  }
}

@media (max-width:760px){
  .home-v3 .nav-inner{
    min-height:78px;
  }

  .home-v3 .nav-logo{
    min-width:0;
  }

  .home-v3 .nav-logo-img{
    height:68px !important;
    max-height:68px !important;
    max-width:190px !important;
  }

  .home-v3 .nav-collapse{
    background:#fff !important;
    border-top:1px solid rgba(4,183,196,.18);
  }

  .kn-tools{
    width:calc(100% - 32px);
    padding-bottom:52px;
  }

  .home-v3 .kn-blog-card{
    grid-template-columns:1fr;
  }

  .home-v3 .kn-blog-card img{
    height:auto;
    min-height:0;
    aspect-ratio:16/9;
  }
}

/* Course universe load-more and fresh inner page banner */
.kn-stream-card.is-extra{
  display:none;
}

.kn-stream-load{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.kn-stream-load .btn-red{
  min-width:210px;
}

.page-banner:not(.college-hero),
.page-banner{
  min-height:520px !important;
  height:auto !important;
  display:grid !important;
  align-items:center !important;
  overflow:hidden !important;
  isolation:isolate;
  padding:86px 6% 82px !important;
  background:
    radial-gradient(circle at 12% 24%,rgba(4,183,196,.2),transparent 28%),
    radial-gradient(circle at 88% 18%,rgba(255,107,0,.16),transparent 30%),
    linear-gradient(135deg,#f4fdff 0%,#ffffff 45%,#fff3e8 100%) !important;
}

.page-banner::before{
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  background:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 80% 28%,rgba(7,20,63,.08),transparent 44%) !important;
  background-size:112px 98px,168px 147px,auto !important;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.75),rgba(0,0,0,.28),rgba(0,0,0,.6));
}

.page-banner::after{
  content:'' !important;
  position:absolute !important;
  left:auto !important;
  right:-110px !important;
  top:-120px !important;
  bottom:auto !important;
  width:420px !important;
  height:420px !important;
  border-radius:50% !important;
  border:1px solid rgba(4,183,196,.26) !important;
  background:radial-gradient(circle,rgba(4,183,196,.14),transparent 68%) !important;
  transform:none !important;
  animation:knBannerOrbit 14s ease-in-out infinite alternate;
}

.page-banner-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:
    linear-gradient(110deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.82) 48%,rgba(255,255,255,.18) 72%,rgba(255,244,232,.62) 100%) !important;
}

.page-banner-content{
  position:relative !important;
  z-index:4 !important;
  max-width:690px !important;
  padding:0 !important;
  color:var(--kn-navy) !important;
}

.page-banner .hero-eyebrow{
  background:#ffffff !important;
  border:1px solid rgba(4,183,196,.34) !important;
  box-shadow:0 12px 32px rgba(7,20,63,.08);
  color:var(--kn-navy) !important;
}

.page-banner-title{
  max-width:690px;
  color:var(--kn-navy) !important;
  font-size:clamp(42px,5.2vw,74px) !important;
  line-height:1.02 !important;
  margin:22px 0 18px !important;
}

.page-banner-title em{
  background:linear-gradient(110deg,var(--kn-teal),var(--kn-navy) 42%,var(--kn-orange) 78%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  font-style:italic !important;
}

.page-banner-desc{
  max-width:560px !important;
  color:var(--kn-muted) !important;
  font-size:18px !important;
  line-height:1.8 !important;
}

.page-banner-img{
  position:absolute !important;
  inset:auto 6% auto auto !important;
  top:50% !important;
  z-index:2 !important;
  width:min(42vw,760px) !important;
  height:64% !important;
  min-height:300px !important;
  object-fit:cover !important;
  border-radius:34% 8px 34% 8px !important;
  opacity:.95 !important;
  filter:saturate(1.08) contrast(.98) brightness(.92) !important;
  transform:translateY(-50%) rotate(-1.5deg) !important;
  box-shadow:
    0 34px 80px rgba(7,20,63,.18),
    0 0 0 1px rgba(255,255,255,.7) inset !important;
  animation:knBannerImageFloat 7s ease-in-out infinite alternate;
}

.page-banner-motion{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
}

.page-banner-float{
  position:absolute;
  display:grid;
  place-items:center;
  min-width:54px;
  height:38px;
  padding:0 13px;
  border:1px solid rgba(4,183,196,.28);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:var(--kn-navy);
  font-size:12px;
  font-weight:900;
  box-shadow:0 14px 34px rgba(7,20,63,.1);
  backdrop-filter:blur(10px);
  animation:knFloatPill 6.5s ease-in-out infinite alternate;
}

.page-banner-float.icon-1{left:7%;top:16%;animation-delay:.1s}
.page-banner-float.icon-2{left:42%;top:18%;color:var(--kn-orange);animation-delay:.7s}
.page-banner-float.icon-3{right:34%;top:72%;color:var(--kn-teal);animation-delay:1.2s}
.page-banner-float.icon-4{right:9%;top:18%;animation-delay:1.7s}
.page-banner-float.icon-5{right:26%;top:38%;color:var(--kn-orange);animation-delay:2.1s}
.page-banner-float.icon-6{left:22%;bottom:12%;color:var(--kn-teal);animation-delay:2.6s}

@keyframes knBannerImageFloat{
  0%{transform:translateY(-50%) rotate(-1.5deg) scale(1)}
  100%{transform:translateY(-53%) rotate(1deg) scale(1.025)}
}

@keyframes knFloatPill{
  0%{transform:translate3d(0,0,0)}
  100%{transform:translate3d(0,-16px,0)}
}

@keyframes knBannerOrbit{
  0%{transform:translate3d(0,0,0) scale(1)}
  100%{transform:translate3d(-34px,28px,0) scale(1.08)}
}

@media(max-width:980px){
  .page-banner{
    min-height:700px !important;
    align-items:start !important;
    padding-top:58px !important;
    padding-bottom:360px !important;
  }

  .page-banner-content{
    max-width:100% !important;
  }

  .page-banner-img{
    top:auto !important;
    right:5% !important;
    bottom:52px !important;
    width:90% !important;
    height:280px !important;
    min-height:0 !important;
    transform:rotate(-1deg) !important;
  }

  .page-banner-float.icon-2,
  .page-banner-float.icon-3,
  .page-banner-float.icon-5{
    display:none;
  }
}

@media(max-width:640px){
  .page-banner{
    min-height:640px !important;
    padding-inline:24px !important;
    padding-bottom:300px !important;
  }

  .page-banner-title{
    font-size:42px !important;
  }

  .page-banner-desc{
    font-size:16px !important;
  }

  .page-banner-img{
    bottom:40px !important;
    height:230px !important;
    border-radius:28% 8px 28% 8px !important;
  }

  .page-banner-float{
    min-width:46px;
    height:32px;
    font-size:11px;
  }
}

/* Final public header override */
body .site-header,
body nav.main-nav,
body .site-header .main-nav{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid rgba(4,183,196,.18) !important;
  box-shadow:0 12px 30px rgba(7,20,63,.08) !important;
  backdrop-filter:blur(16px);
}

body .site-header .topbar{
  background:linear-gradient(90deg,#eefbfc 0%,#fff7ef 100%) !important;
  color:var(--kn-navy) !important;
}

body .site-header .topbar a,
body .site-header .nav-links a{
  color:var(--kn-navy) !important;
}

body .site-header .nav-links a:hover,
body .site-header .nav-links a.active{
  color:var(--kn-orange) !important;
}

body .site-header .nav-logo-img{
  height:88px !important;
  max-height:88px !important;
  max-width:300px !important;
  filter:none !important;
}

@media(max-width:760px){
  body .site-header .nav-logo-img{
    height:68px !important;
    max-height:68px !important;
    max-width:190px !important;
  }

  body .site-header .nav-toggle span{
    background:var(--kn-navy) !important;
  }
}

/* Inner page banner redesign v2: vector orbit, not text pills */
body .page-banner{
  min-height:560px !important;
  display:grid !important;
  align-items:center !important;
  padding:72px 6% !important;
  overflow:hidden !important;
  isolation:isolate !important;
  background:
    radial-gradient(circle at 78% 22%,rgba(4,183,196,.18),transparent 30%),
    radial-gradient(circle at 12% 88%,rgba(255,107,0,.16),transparent 28%),
    linear-gradient(135deg,#f6fcfd 0%,#ffffff 52%,#fff6ed 100%) !important;
}

body .page-banner::before{
  content:'' !important;
  position:absolute !important;
  inset:34px 5% !important;
  z-index:0 !important;
  border:1px solid rgba(4,183,196,.16) !important;
  border-radius:8px 70px 8px 70px !important;
  background:
    linear-gradient(135deg,rgba(255,255,255,.72),rgba(255,255,255,.2)),
    var(--kn-hex-teal),
    var(--kn-hex-orange) !important;
  background-size:auto,112px 98px,168px 147px !important;
  mask-image:none !important;
  transform:skewY(-1.6deg);
}

body .page-banner::after{
  content:'' !important;
  position:absolute !important;
  inset:auto auto 54px 42% !important;
  z-index:2 !important;
  width:360px !important;
  height:120px !important;
  border:0 !important;
  border-radius:50% !important;
  background:radial-gradient(ellipse,rgba(255,107,0,.2),transparent 70%) !important;
  animation:knBannerGlowDrift 9s ease-in-out infinite alternate !important;
}

body .page-banner-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:
    linear-gradient(90deg,rgba(255,255,255,.15),rgba(255,255,255,.48) 48%,rgba(255,255,255,.2)) !important;
}

body .page-banner-content{
  position:relative !important;
  z-index:5 !important;
  width:min(610px,48vw) !important;
  max-width:610px !important;
  margin:0 !important;
  padding:38px !important;
  border:1px solid rgba(255,255,255,.14) !important;
  border-radius:30px 8px 30px 8px !important;
  background:
    radial-gradient(circle at 90% 0%,rgba(4,183,196,.2),transparent 34%),
    linear-gradient(135deg,#07165f 0%,#02081f 100%) !important;
  color:#fff !important;
  box-shadow:0 30px 80px rgba(7,20,63,.24) !important;
}

body .page-banner .hero-eyebrow{
  background:rgba(255,255,255,.1) !important;
  border:1px solid rgba(4,183,196,.32) !important;
  color:#fff !important;
  box-shadow:none !important;
}

body .page-banner .hero-eyebrow span{
  background:var(--kn-teal) !important;
  border-radius:0 !important;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%) !important;
}

body .page-banner-title{
  max-width:100% !important;
  color:#fff !important;
  font-size:clamp(38px,4.7vw,66px) !important;
  line-height:1.02 !important;
  margin:22px 0 18px !important;
  text-shadow:none !important;
}

body .page-banner-title em{
  background:linear-gradient(110deg,var(--kn-teal),#ffffff 42%,var(--kn-gold) 72%,var(--kn-orange)) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  text-shadow:none !important;
}

body .page-banner-title em::after{
  background:linear-gradient(90deg,var(--kn-teal),var(--kn-orange),transparent) !important;
}

body .page-banner-desc{
  max-width:500px !important;
  color:rgba(255,255,255,.76) !important;
  font-size:17px !important;
  line-height:1.75 !important;
  text-shadow:none !important;
}

body .page-banner-img{
  position:absolute !important;
  top:50% !important;
  right:7% !important;
  left:auto !important;
  bottom:auto !important;
  z-index:3 !important;
  width:min(38vw,620px) !important;
  height:390px !important;
  min-height:0 !important;
  object-fit:cover !important;
  border-radius:8px 82px 8px 82px !important;
  clip-path:polygon(8% 0,100% 0,92% 100%,0 100%) !important;
  opacity:1 !important;
  filter:saturate(1.05) contrast(.98) brightness(.9) !important;
  transform:translateY(-50%) rotate(1.4deg) !important;
  box-shadow:0 34px 90px rgba(7,20,63,.22) !important;
  animation:knBannerPanelFloat 7s ease-in-out infinite alternate !important;
}

body .page-banner-motion{
  position:absolute !important;
  inset:0 !important;
  z-index:4 !important;
  pointer-events:none !important;
}

body .page-banner-motion::before{
  content:'' !important;
  position:absolute !important;
  right:7.5% !important;
  top:50% !important;
  width:min(42vw,660px) !important;
  height:430px !important;
  border:1px dashed rgba(4,183,196,.42) !important;
  border-radius:50% !important;
  transform:translateY(-50%) rotate(-8deg) !important;
  animation:knOrbitLine 18s linear infinite !important;
}

body .page-banner-float{
  position:absolute !important;
  display:grid !important;
  place-items:center !important;
  width:54px !important;
  min-width:54px !important;
  height:54px !important;
  padding:0 !important;
  border:1px solid rgba(4,183,196,.28) !important;
  border-radius:18px 18px 18px 4px !important;
  background:rgba(255,255,255,.9) !important;
  color:var(--kn-navy) !important;
  box-shadow:0 18px 42px rgba(7,20,63,.14) !important;
  backdrop-filter:blur(12px) !important;
  animation:knVectorFloat 6s ease-in-out infinite alternate !important;
}

body .page-banner-float svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body .page-banner-float.icon-1{left:auto !important;right:40%;top:16% !important;color:var(--kn-teal) !important;animation-delay:.1s !important}
body .page-banner-float.icon-2{left:auto !important;right:12%;top:18% !important;color:var(--kn-orange) !important;animation-delay:.7s !important}
body .page-banner-float.icon-3{left:auto !important;right:43%;top:70% !important;color:var(--kn-orange) !important;animation-delay:1.2s !important}
body .page-banner-float.icon-4{left:auto !important;right:8%;top:66% !important;color:var(--kn-teal) !important;animation-delay:1.7s !important}
body .page-banner-float.icon-5{left:auto !important;right:30%;top:43% !important;color:var(--kn-navy) !important;animation-delay:2.1s !important}
body .page-banner-float.icon-6{left:auto !important;right:23%;top:80% !important;color:var(--kn-teal) !important;animation-delay:2.6s !important}

@keyframes knBannerPanelFloat{
  0%{transform:translateY(-50%) rotate(1.4deg)}
  100%{transform:translateY(-53%) rotate(-.7deg)}
}

@keyframes knVectorFloat{
  0%{transform:translate3d(0,0,0) rotate(0deg)}
  100%{transform:translate3d(0,-18px,0) rotate(5deg)}
}

@keyframes knOrbitLine{
  to{transform:translateY(-50%) rotate(352deg)}
}

@keyframes knBannerGlowDrift{
  0%{transform:translateX(0) scale(1)}
  100%{transform:translateX(70px) scale(1.14)}
}

@media(max-width:980px){
  body .page-banner{
    min-height:760px !important;
    padding:42px 24px 330px !important;
  }

  body .page-banner-content{
    width:100% !important;
    max-width:100% !important;
  }

  body .page-banner-img{
    top:auto !important;
    right:24px !important;
    bottom:42px !important;
    width:calc(100% - 48px) !important;
    height:245px !important;
    transform:rotate(1deg) !important;
  }

  body .page-banner-motion::before{
    right:7% !important;
    top:auto !important;
    bottom:28px !important;
    width:86% !important;
    height:270px !important;
    transform:rotate(-8deg) !important;
  }

  body .page-banner-float.icon-1{right:76% !important;top:auto !important;bottom:260px !important}
  body .page-banner-float.icon-2{right:9% !important;top:auto !important;bottom:255px !important}
  body .page-banner-float.icon-3{right:68% !important;top:auto !important;bottom:48px !important}
  body .page-banner-float.icon-4{right:10% !important;top:auto !important;bottom:54px !important}
  body .page-banner-float.icon-5,
  body .page-banner-float.icon-6{display:none !important}
}

@media(max-width:640px){
  body .page-banner{
    min-height:700px !important;
    padding:30px 18px 285px !important;
  }

  body .page-banner-content{
    padding:28px !important;
  }

  body .page-banner-title{
    font-size:38px !important;
  }

  body .page-banner-img{
    right:18px !important;
    bottom:34px !important;
    width:calc(100% - 36px) !important;
    height:220px !important;
  }

  body .page-banner-float{
    width:46px !important;
    min-width:46px !important;
    height:46px !important;
  }
}

/* Inner page banner redesign v3: image-free vector pattern */
body .page-banner{
  min-height:500px !important;
  display:grid !important;
  place-items:center !important;
  padding:74px 24px 82px !important;
  overflow:hidden !important;
  isolation:isolate !important;
  background:
    radial-gradient(circle at 17% 26%,rgba(4,183,196,.22),transparent 28%),
    radial-gradient(circle at 86% 76%,rgba(255,107,0,.18),transparent 26%),
    linear-gradient(135deg,#f8fdff 0%,#ffffff 46%,#fff6ee 100%) !important;
}

body .page-banner::before{
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  border:0 !important;
  border-radius:0 !important;
  transform:none !important;
  background:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 80% 32%,rgba(7,20,63,.08),transparent 44%),
    radial-gradient(ellipse at 18% 78%,rgba(4,183,196,.1),transparent 42%) !important;
  background-size:112px 98px,168px 147px,auto,auto !important;
  mask-image:linear-gradient(90deg,transparent 0%,#000 9%,#000 91%,transparent 100%) !important;
  opacity:.9 !important;
}

body .page-banner::after{
  content:'' !important;
  position:absolute !important;
  left:50% !important;
  top:52% !important;
  z-index:1 !important;
  width:min(980px,82vw) !important;
  height:300px !important;
  border:1px solid rgba(4,183,196,.2) !important;
  border-radius:999px !important;
  background:
    radial-gradient(circle at 22% 42%,rgba(4,183,196,.16) 0 8px,transparent 9px),
    radial-gradient(circle at 48% 28%,rgba(255,107,0,.16) 0 7px,transparent 8px),
    radial-gradient(circle at 72% 58%,rgba(7,20,63,.12) 0 9px,transparent 10px),
    linear-gradient(90deg,transparent 0 18%,rgba(4,183,196,.22) 18% 18.4%,transparent 18.4% 40%,rgba(255,107,0,.2) 40% 40.4%,transparent 40.4% 66%,rgba(4,183,196,.18) 66% 66.4%,transparent 66.4% 100%) !important;
  box-shadow:0 34px 90px rgba(7,20,63,.08) !important;
  transform:translate(-50%,-50%) rotate(-7deg) !important;
  animation:knVectorBoard 12s ease-in-out infinite alternate !important;
}

body .page-banner-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.72),rgba(255,255,255,.24) 44%,rgba(255,255,255,.8)),
    radial-gradient(circle at 50% 50%,rgba(255,255,255,.18),transparent 48%) !important;
}

body .page-banner-img{
  display:none !important;
}

body .page-banner-content{
  position:relative !important;
  z-index:5 !important;
  width:min(980px,100%) !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:var(--kn-navy) !important;
  text-align:center !important;
  box-shadow:none !important;
}

body .page-banner .hero-eyebrow{
  display:inline-flex !important;
  background:rgba(255,255,255,.82) !important;
  border:1px solid rgba(4,183,196,.28) !important;
  color:var(--kn-navy) !important;
  box-shadow:0 16px 44px rgba(7,20,63,.08) !important;
}

body .page-banner .hero-eyebrow span{
  background:var(--kn-teal) !important;
  border-radius:0 !important;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%) !important;
}

body .page-banner-title{
  max-width:880px !important;
  margin:24px auto 18px !important;
  color:var(--kn-navy) !important;
  font-size:clamp(42px,5.1vw,76px) !important;
  line-height:1.02 !important;
  letter-spacing:0 !important;
  text-shadow:none !important;
}

body .page-banner-title em{
  display:inline-block !important;
  background:linear-gradient(105deg,var(--kn-teal),var(--kn-orange) 76%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  text-shadow:none !important;
}

body .page-banner-title em::after{
  left:0 !important;
  right:0 !important;
  bottom:.05em !important;
  height:.13em !important;
  background:linear-gradient(90deg,rgba(4,183,196,.26),rgba(255,107,0,.35),transparent) !important;
  border-radius:999px !important;
}

body .page-banner-desc{
  max-width:650px !important;
  margin:0 auto !important;
  color:#52607f !important;
  font-size:18px !important;
  line-height:1.72 !important;
  text-shadow:none !important;
}

body .page-banner-motion{
  position:absolute !important;
  inset:0 !important;
  z-index:4 !important;
  pointer-events:none !important;
}

body .page-banner-motion::before{
  content:'' !important;
  position:absolute !important;
  left:50% !important;
  top:52% !important;
  width:min(1120px,88vw) !important;
  height:330px !important;
  border:1px dashed rgba(4,183,196,.42) !important;
  border-radius:999px !important;
  transform:translate(-50%,-50%) rotate(10deg) !important;
  animation:knConstellationOrbit 24s linear infinite !important;
}

body .page-banner-motion::after{
  content:'' !important;
  position:absolute !important;
  left:50% !important;
  top:50% !important;
  width:min(700px,64vw) !important;
  height:190px !important;
  border-radius:999px !important;
  background:
    linear-gradient(90deg,transparent 0 12%,rgba(7,20,63,.16) 12% 12.35%,transparent 12.35% 34%,rgba(4,183,196,.2) 34% 34.35%,transparent 34.35% 58%,rgba(255,107,0,.18) 58% 58.35%,transparent 58.35% 86%,rgba(4,183,196,.18) 86% 86.35%,transparent 86.35%),
    radial-gradient(circle at 12% 50%,rgba(7,20,63,.16) 0 5px,transparent 6px),
    radial-gradient(circle at 34% 50%,rgba(4,183,196,.28) 0 6px,transparent 7px),
    radial-gradient(circle at 58% 50%,rgba(255,107,0,.24) 0 6px,transparent 7px),
    radial-gradient(circle at 86% 50%,rgba(4,183,196,.26) 0 5px,transparent 6px) !important;
  transform:translate(-50%,-50%) rotate(-4deg) !important;
  opacity:.8 !important;
  animation:knVectorBoard 10s ease-in-out infinite alternate-reverse !important;
}

body .page-banner-float{
  position:absolute !important;
  display:grid !important;
  place-items:center !important;
  width:62px !important;
  min-width:62px !important;
  height:62px !important;
  padding:0 !important;
  border:1px solid rgba(4,183,196,.32) !important;
  border-radius:22px !important;
  background:rgba(255,255,255,.88) !important;
  color:var(--kn-navy) !important;
  box-shadow:0 18px 46px rgba(7,20,63,.12) !important;
  backdrop-filter:blur(14px) !important;
  animation:knFreeIconFloat 7s ease-in-out infinite alternate !important;
}

body .page-banner-float svg{
  width:29px !important;
  height:29px !important;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:1.8 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

body .page-banner-float.icon-1{left:10% !important;right:auto !important;top:22% !important;color:var(--kn-teal) !important;animation-delay:.1s !important}
body .page-banner-float.icon-2{left:23% !important;right:auto !important;top:70% !important;color:var(--kn-orange) !important;animation-delay:.75s !important}
body .page-banner-float.icon-3{left:auto !important;right:18% !important;top:23% !important;color:var(--kn-navy) !important;animation-delay:1.25s !important}
body .page-banner-float.icon-4{left:auto !important;right:8% !important;top:58% !important;color:var(--kn-teal) !important;animation-delay:1.8s !important}
body .page-banner-float.icon-5{left:47% !important;right:auto !important;top:15% !important;color:var(--kn-orange) !important;animation-delay:2.35s !important}
body .page-banner-float.icon-6{left:62% !important;right:auto !important;top:76% !important;color:var(--kn-teal) !important;animation-delay:2.8s !important}

@keyframes knConstellationOrbit{
  to{transform:translate(-50%,-50%) rotate(370deg)}
}

@keyframes knFreeIconFloat{
  0%{transform:translate3d(0,0,0) rotate(-2deg)}
  100%{transform:translate3d(0,-20px,0) rotate(5deg)}
}

@keyframes knVectorBoard{
  0%{transform:translate(-50%,-50%) rotate(-7deg) scale(1)}
  100%{transform:translate(-50%,-53%) rotate(-3deg) scale(1.03)}
}

@media(max-width:980px){
  body .page-banner{
    min-height:560px !important;
    padding:60px 22px 70px !important;
  }

  body .page-banner-title{
    font-size:clamp(38px,8vw,58px) !important;
  }

  body .page-banner-desc{
    font-size:17px !important;
  }

  body .page-banner-motion::before{
    width:104vw !important;
    height:300px !important;
  }

  body .page-banner-motion::after{
    width:78vw !important;
  }

  body .page-banner-float.icon-1{left:5% !important;top:19% !important}
  body .page-banner-float.icon-2{left:8% !important;top:75% !important}
  body .page-banner-float.icon-3{right:7% !important;top:18% !important}
  body .page-banner-float.icon-4{right:6% !important;top:74% !important}
  body .page-banner-float.icon-5,
  body .page-banner-float.icon-6{display:none !important}
}

@media(max-width:640px){
  body .page-banner{
    min-height:520px !important;
    padding:50px 18px 58px !important;
  }

  body .page-banner-title{
    font-size:38px !important;
  }

  body .page-banner-desc{
    font-size:16px !important;
  }

  body .page-banner-float{
    width:48px !important;
    min-width:48px !important;
    height:48px !important;
    border-radius:17px !important;
  }
}

/* Inner banner contrast pass */
body{
  background:#ffffff !important;
}

body .page-banner{
  background:
    radial-gradient(circle at 12% 24%,rgba(4,183,196,.24),transparent 28%),
    radial-gradient(circle at 84% 70%,rgba(255,107,0,.2),transparent 30%),
    linear-gradient(135deg,#eaf8fb 0%,#f6fbfd 42%,#fff1e4 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(4,183,196,.28),
    inset 0 -1px 0 rgba(255,107,0,.18),
    0 20px 70px rgba(7,20,63,.08) !important;
}

/* Exams */
.exam-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:20px;
  width:100%;
}
.exam-card{
  background:#fff;
  border:1px solid rgba(36,22,67,.1);
  border-radius:8px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-width:0;
  box-shadow:0 14px 32px rgba(36,22,67,.06);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.exam-card:hover{
  transform:translateY(-3px);
  border-color:rgba(241,90,36,.42);
  box-shadow:0 18px 42px rgba(36,22,67,.1);
}
.exam-card-media{
  position:relative;
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#f6f7fb;
}
.exam-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.exam-card:hover .exam-card-media img{transform:scale(1.05)}
.exam-card-code{
  position:absolute;
  left:12px;
  top:12px;
  background:#fff;
  color:#241643;
  border:1px solid rgba(4,183,196,.28);
  border-radius:999px;
  padding:6px 10px;
  font-size:11px;
  font-weight:800;
}
.exam-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.exam-card-type{
  margin:0;
  color:#f15a24;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.exam-card-title{
  margin:0;
  color:#241643;
  font-size:18px;
  line-height:1.3;
}
.exam-card-title a{
  color:inherit;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
}
.exam-card-title a:hover{color:#f15a24}
.exam-title-logo{
  width:34px;
  height:34px;
  border-radius:8px;
  object-fit:contain;
  flex:0 0 34px;
  background:#fff;
  border:1px solid rgba(36,22,67,.1);
  padding:4px;
}
.exam-hero-title{
  display:flex;
  align-items:center;
  gap:18px;
}
.exam-detail-hero .page-banner-content{
  width:min(980px,calc(100% - 48px)) !important;
  max-width:980px !important;
  margin:0 auto !important;
  text-align:center !important;
}
.exam-detail-hero .hero-eyebrow{
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
.exam-detail-hero .page-banner-desc{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}
.exam-detail-hero .exam-hero-title{
  justify-content:center;
}
.exam-hero-logo{
  width:72px;
  height:72px;
  border-radius:14px;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(255,255,255,.22);
  padding:9px;
  box-shadow:0 14px 38px rgba(0,0,0,.14);
  flex:0 0 72px;
}
.exam-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.exam-card-meta span{
  background:#f7fbfc;
  color:#52607f;
  border:1px solid rgba(4,183,196,.18);
  border-radius:999px;
  padding:5px 9px;
  font-size:12px;
  font-weight:700;
}
.exam-card-desc{
  margin:0;
  color:#655678;
  font-size:14px;
  line-height:1.55;
  flex:1;
}
.exam-card-link{
  width:100%;
  text-align:center;
  justify-content:center;
  margin-top:4px;
}
.exam-detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:42px;
  align-items:start;
  width:min(1680px,calc(100% - 48px));
  margin:0 auto;
}
.exam-detail-main{
  min-width:0;
}
.exam-detail-section{
  padding-left:0;
  padding-right:0;
}
.exam-detail-actions{
  margin-top:32px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.exam-info-strip,
.exam-date-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:28px;
}
.exam-info-strip div,
.exam-date-grid div,
.exam-eligibility-box,
.exam-sidebar-card{
  background:#fff;
  border:1px solid rgba(36,22,67,.1);
  border-radius:8px;
  box-shadow:0 14px 32px rgba(36,22,67,.06);
}
.exam-info-strip div,
.exam-date-grid div{
  padding:18px;
}
.exam-info-strip span,
.exam-date-grid span{
  display:block;
  color:#6f5d7d;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:8px;
}
.exam-info-strip strong,
.exam-date-grid strong{
  color:#241643;
  font-size:15px;
  line-height:1.45;
}
.exam-eligibility-box{
  padding:24px;
  margin-top:28px;
}
.exam-eligibility-box h2,
.exam-sidebar-card h2{
  margin:0 0 10px;
  color:#241643;
  font-size:22px;
}
.exam-eligibility-box p,
.exam-sidebar-card p{
  margin:0;
  color:#655678;
  line-height:1.65;
}
.exam-detail-sidebar{
  display:grid;
  gap:20px;
  position:sticky;
  top:110px;
}
.exam-sidebar-card{
  padding:22px;
}
.exam-sidebar-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.exam-sidebar-list a{
  display:block;
  text-decoration:none;
  border:1px solid rgba(36,22,67,.08);
  border-radius:8px;
  padding:13px 14px;
  background:#fbfdfe;
}
.exam-sidebar-list a:hover{
  border-color:rgba(241,90,36,.35);
  background:#fff7f1;
}
.exam-sidebar-list span{
  display:block;
  color:#f15a24;
  font-size:12px;
  font-weight:800;
  margin-bottom:5px;
}
.exam-sidebar-list strong{
  color:#241643;
  font-size:14px;
  line-height:1.4;
}
.exam-sidebar-list.compact a{
  padding:12px 13px;
}
.exam-sidebar-empty{
  color:#655678;
  background:#fbfdfe;
  border:1px solid rgba(36,22,67,.08);
  border-radius:8px;
  padding:14px;
}
@media(max-width:1280px){
  .exam-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media(max-width:1024px){
  .exam-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .exam-detail-layout{grid-template-columns:1fr}
  .exam-detail-sidebar{position:static}
}
@media(max-width:760px){
  .exam-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .exam-detail-layout{width:min(100% - 28px,720px)}
  .exam-detail-hero .exam-hero-title{
    flex-direction:column;
    gap:14px;
  }
  .exam-info-strip,
  .exam-date-grid{grid-template-columns:1fr}
}
@media(max-width:520px){
  .exam-grid{grid-template-columns:1fr}
}

body .page-banner::before{
  opacity:1 !important;
  background:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 78% 30%,rgba(7,20,63,.09),transparent 44%),
    radial-gradient(ellipse at 18% 78%,rgba(4,183,196,.12),transparent 42%) !important;
  background-size:112px 98px,168px 147px,auto,auto !important;
}

body .page-banner-overlay{
  background:
    linear-gradient(180deg,rgba(255,255,255,.42),rgba(255,255,255,.08) 48%,rgba(255,255,255,.55)),
    radial-gradient(circle at 50% 52%,rgba(255,255,255,.18),transparent 48%) !important;
}

body .page-banner + section,
body .page-banner + .section,
body .page-banner + main,
body .page-banner ~ .section:first-of-type{
  background:#fbfdfe !important;
}

html body .page-banner:not(.college-hero),
html body .page-banner{
  background:
    radial-gradient(circle at 12% 24%,rgba(4,183,196,.34),transparent 28%),
    radial-gradient(circle at 84% 70%,rgba(255,107,0,.3),transparent 30%),
    linear-gradient(135deg,#d8f1f5 0%,#eef8fb 44%,#ffe4ce 100%) !important;
}

html body .page-banner-title em{
  background:linear-gradient(105deg,var(--kn-teal),var(--kn-orange)) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
}

html body .page-banner-title em::after{
  display:none !important;
}

html body .page-banner::before{
  background:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 78% 30%,rgba(7,20,63,.1),transparent 44%),
    radial-gradient(ellipse at 18% 78%,rgba(4,183,196,.14),transparent 42%) !important;
  background-size:112px 98px,168px 147px,auto,auto !important;
}

html body .page-banner-overlay{
  background:
    linear-gradient(180deg,rgba(255,255,255,.3),rgba(255,255,255,.02) 48%,rgba(255,255,255,.42)),
    radial-gradient(circle at 50% 52%,rgba(255,255,255,.14),transparent 48%) !important;
}

/* Kollege Next structured footer */
html body .kn-footer{
  background:#f5f8fa !important;
  color:#34415f !important;
  border-top:1px solid rgba(4,183,196,.18) !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}

html body .kn-footer a{
  color:inherit;
  text-decoration:none;
}

html body .kn-footer-inner{
  width:100%;
  max-width:none;
  margin:0 auto;
  padding:0 5%;
  box-sizing:border-box;
}

html body .kn-footer-courses{
  padding:40px 0 34px;
  background:#eef4f6;
  border-bottom:1px solid rgba(7,20,63,.08);
}

html body .kn-footer-courses h2,
html body .kn-footer-newsletter h2{
  color:var(--kn-navy);
  font-size:30px;
  line-height:1.15;
  margin:0 0 22px;
  letter-spacing:0;
}

html body .kn-footer-chips{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

html body .kn-footer-chips a{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:42px;
  padding:10px 16px;
  border:1px solid rgba(7,20,63,.12);
  border-radius:999px;
  background:#fff;
  color:var(--kn-navy);
  font-weight:600;
  box-shadow:0 8px 20px rgba(7,20,63,.04);
  transition:transform .2s ease,border-color .2s ease,color .2s ease;
}

html body .kn-footer-chips a span{
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  border-radius:50%;
  background:rgba(4,183,196,.12);
  color:var(--kn-teal);
  font-size:14px;
}

html body .kn-footer-chips a:hover{
  color:var(--kn-orange);
  border-color:rgba(255,107,0,.4);
  transform:translateY(-2px);
}

html body .kn-footer-newsletter{
  padding:38px 0;
  background:#fff;
  border-bottom:1px solid rgba(7,20,63,.08);
}

html body .kn-newsletter-grid{
  display:grid;
  grid-template-columns:minmax(260px,420px) 1fr;
  gap:34px;
  align-items:end;
}

html body .kn-footer-kicker{
  --kn-footer-arrow-marker:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 32'%3E%3Cg transform-origin='20 16'%3E%3Cpath d='M29 5 L7 16 L18.4 18.3 L22.8 27 Z' fill='%2304b7c4'%3E%3Canimate attributeName='opacity' values='.55;1;.55' dur='1.8s' begin='0s' repeatCount='indefinite'/%3E%3C/path%3E%3CanimateTransform attributeName='transform' type='scale' values='.92;1.06;.92' dur='1.8s' begin='0s' repeatCount='indefinite' additive='sum'/%3E%3C/g%3E%3C/svg%3E");
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
  color:var(--kn-orange);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
}

html body .kn-footer-kicker::before{
  content:'';
  width:24px;
  height:24px;
  border-radius:0;
  background:var(--kn-footer-arrow-marker) center/contain no-repeat;
  filter:drop-shadow(0 0 7px rgba(4,183,196,.22));
}

html body .kn-footer-newsletter h2{
  font-size:28px;
  margin-bottom:8px;
}

html body .kn-footer-newsletter p{
  margin:0;
  color:#60708f;
  line-height:1.65;
}

html body .kn-newsletter-form{
  display:grid;
  grid-template-columns:1fr 1fr 1.1fr 150px;
  gap:12px;
}

html body .kn-newsletter-form label{
  display:block;
}

html body .kn-newsletter-form label span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

html body .kn-newsletter-form input,
html body .kn-newsletter-form select{
  width:100%;
  height:50px;
  border:1px solid rgba(7,20,63,.14);
  border-radius:8px;
  background:#fbfdfe;
  color:var(--kn-navy);
  font:inherit;
  padding:0 15px;
  outline:none;
}

html body .kn-newsletter-form select{
  appearance:none;
  -webkit-appearance:none;
  padding-right:44px;
  background-color:#fbfdfe;
  background-image:url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.25 1.5L7 7.25L12.75 1.5' stroke='%2300195C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 17px center;
  background-size:14px 9px;
}

html body .kn-newsletter-form input:focus,
html body .kn-newsletter-form select:focus{
  border-color:var(--kn-orange);
  box-shadow:0 0 0 3px rgba(255,107,0,.12);
}

html body .kn-newsletter-form button{
  height:50px;
  border:0;
  border-radius:8px;
  background:linear-gradient(135deg,var(--kn-orange),#ff9f1f);
  color:#fff;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(255,107,0,.22);
}

html body .kn-newsletter-form button:disabled{
  cursor:not-allowed;
  opacity:.76;
}

html body .kn-newsletter-message{
  grid-column:1 / -1;
  min-height:18px;
  margin-top:-2px;
  color:#60708f;
  font-size:13px;
  font-weight:700;
}

html body .kn-newsletter-message.is-success{
  color:#0f766e;
}

html body .kn-newsletter-message.is-error{
  color:#dc2626;
}

html body .kn-footer-main{
  padding:38px 0 28px;
  background:#f3f5f7;
  width:100%;
}

html body .kn-footer-main .kn-footer-inner{
  padding-left:5%;
  padding-right:5%;
}

html body .kn-footer-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:42px;
}

html body .kn-footer-brand p,
html body .kn-footer-grid li{
  color:#53617d;
  font-size:14px;
  line-height:1.65;
}

html body .kn-footer .footer-logo-img{
  height:72px !important;
  max-width:250px !important;
  object-fit:contain;
  filter:none !important;
  margin-bottom:10px;
}

html body .kn-footer-grid h3{
  margin:0 0 16px;
  color:var(--kn-navy);
  font-size:17px;
  font-weight:800;
}

html body .kn-footer-grid ul{
  list-style:none;
  margin:0;
  padding:0;
}

html body .kn-footer-grid li{
  margin-bottom:9px;
}

html body .kn-footer-grid li a{
  transition:color .2s ease,transform .2s ease;
}

html body .kn-footer-grid li a:hover{
  color:var(--kn-orange);
}

html body .kn-footer .footer-social{
  display:flex;
  gap:9px;
  margin-top:18px;
}

html body .kn-footer .soc-btn{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:var(--kn-navy);
  border:1px solid rgba(7,20,63,.1);
  box-shadow:0 8px 18px rgba(7,20,63,.06);
}

html body .kn-footer .soc-btn svg{
  width:16px;
  height:16px;
  fill:currentColor;
}

html body .kn-footer .soc-btn:hover{
  color:#fff;
  background:var(--kn-teal);
}

html body .kn-footer-contact li:first-child{
  max-width:250px;
}

html body .kn-footer-bottom{
  padding:20px 0;
  background:#fff;
  border-top:1px solid rgba(7,20,63,.08);
}

html body .kn-footer-bottom .kn-footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

html body .kn-footer-bottom div{
  display:flex;
  gap:10px;
  align-items:center;
  color:#60708f;
  font-size:14px;
}

html body .kn-footer-bottom strong{
  color:var(--kn-navy);
}

html body .kn-footer-bottom nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:18px;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  position:static !important;
  top:auto !important;
  z-index:auto !important;
}

html body .kn-footer-bottom a{
  color:#53617d;
  font-size:14px;
}

html body .kn-footer-bottom a:hover{
  color:var(--kn-orange);
}

html body .kn-footer-bottom .kn-footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-left:auto;
}

html body .kn-footer-bottom .kn-footer-social a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid rgba(7,20,63,.1) !important;
  border-radius:50%;
  background:#f7fbfc !important;
  color:var(--kn-navy) !important;
  box-shadow:none !important;
  transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
}

html body .kn-footer-bottom .kn-footer-social a:hover{
  background:var(--kn-teal) !important;
  border-color:var(--kn-teal) !important;
  color:#fff !important;
  transform:translateY(-2px);
}

html body .kn-footer-bottom .kn-footer-social svg{
  width:16px;
  height:16px;
  fill:currentColor;
}

/* Contact page location layout */
html body .contact-location-section{
  background:#f3f7f9;
  padding:70px 5%;
}

html body .contact-location-inner{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);
  gap:28px;
  align-items:stretch;
  max-width:1240px;
  margin:0 auto;
}

html body .contact-address-panel,
html body .contact-map-panel{
  border:1px solid rgba(7,20,63,.1);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 42px rgba(7,20,63,.08);
  overflow:hidden;
}

html body .contact-address-panel{
  padding:34px;
}

html body .contact-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  color:var(--kn-orange);
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

html body .contact-kicker::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--kn-teal);
}

html body .contact-address-panel h2{
  margin:0 0 10px;
  color:var(--kn-navy);
  font-size:32px;
  line-height:1.15;
}

html body .contact-address-panel > p{
  margin:0 0 26px;
  color:#60708f;
  line-height:1.65;
}

html body .contact-detail-list{
  display:grid;
  gap:16px;
}

html body .contact-detail-item{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  padding:16px;
  border:1px solid rgba(7,20,63,.08);
  border-radius:8px;
  background:#fbfdfe;
}

html body .contact-detail-icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:8px;
  background:rgba(4,183,196,.12);
  color:var(--kn-navy);
  font-weight:800;
}

html body .contact-detail-item h3{
  margin:0 0 5px;
  color:var(--kn-navy);
  font-size:15px;
}

html body .contact-detail-item p{
  margin:0;
  color:#53617d;
  font-size:14px;
  line-height:1.55;
}

html body .contact-detail-item a{
  color:var(--kn-orange);
  text-decoration:none;
  font-weight:700;
}

html body .contact-map-panel,
html body .contact-map-panel iframe{
  min-height:560px;
}

html body .contact-map-panel iframe{
  width:100%;
}

@media(max-width:900px){
  html body .contact-location-inner{
    grid-template-columns:1fr;
  }

  html body .contact-map-panel,
  html body .contact-map-panel iframe{
    min-height:420px;
  }
}

@media(max-width:560px){
  html body .contact-location-section{
    padding:44px 5%;
  }

  html body .contact-address-panel{
    padding:24px;
  }

  html body .contact-address-panel h2{
    font-size:26px;
  }

  html body .contact-detail-item{
    grid-template-columns:36px 1fr;
    padding:14px;
  }

  html body .contact-detail-icon{
    width:36px;
    height:36px;
  }
}

/* About page v2 */
html body .about-v2{
  background:linear-gradient(180deg,#fbfdfe 0%,#ffffff 48%,#fff8f1 100%);
  color:var(--kn-navy);
}

html body .about-v2-intro,
html body .about-v2-system,
html body .about-v2-belief,
html body .about-v2-founder-note,
html body .about-v2-cta{
  width:min(1180px,88%);
  margin:0 auto;
}

html body .about-v2-intro{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.72fr);
  gap:42px;
  align-items:stretch;
  padding:86px 0 72px;
}

html body .about-v2-kicker{
  --kn-about-arrow-marker:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 32'%3E%3Cg transform-origin='20 16'%3E%3Cpath d='M29 5 L7 16 L18.4 18.3 L22.8 27 Z' fill='%23ff6b00'%3E%3Canimate attributeName='opacity' values='.55;1;.55' dur='1.8s' begin='0s' repeatCount='indefinite'/%3E%3C/path%3E%3CanimateTransform attributeName='transform' type='scale' values='.92;1.06;.92' dur='1.8s' begin='0s' repeatCount='indefinite' additive='sum'/%3E%3C/g%3E%3C/svg%3E");
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:max-content;
  max-width:100%;
  color:var(--kn-orange);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
}

html body .about-v2-kicker span{
  width:24px;
  height:24px;
  background:var(--kn-about-arrow-marker) center/contain no-repeat;
  filter:drop-shadow(0 0 7px rgba(255,107,0,.22));
}

html body .about-v2-copy h2,
html body .about-v2-heading h2,
html body .about-v2-belief-card h2,
html body .about-v2-founder-note h2,
html body .about-v2-cta h2{
  margin:18px 0 16px;
  color:var(--kn-navy);
  font-size:48px;
  line-height:1.05;
  letter-spacing:0;
}

html body .about-v2-copy p,
html body .about-v2-heading p,
html body .about-v2-belief-card p,
html body .about-v2-founder-note p,
html body .about-v2-cta p{
  color:#52607f;
  font-size:16px;
  line-height:1.78;
}

html body .about-v2-copy p + p{
  margin-top:14px;
}

html body .about-v2-panel{
  display:flex;
  flex-direction:column;
  gap:16px;
}

html body .about-v2-founder,
html body .about-v2-stats,
html body .about-v2-grid article,
html body .about-v2-belief-card,
html body .about-v2-values div,
html body .about-v2-founder-note,
html body .about-v2-cta{
  border:1px solid rgba(7,20,63,.09);
  border-radius:8px;
  background:#fff;
  box-shadow:0 22px 70px rgba(7,20,63,.08);
}

html body .about-v2-founder{
  position:relative;
  overflow:hidden;
  padding:30px;
  min-height:260px;
  background:radial-gradient(circle at 92% 0%,rgba(4,183,196,.18),transparent 32%),linear-gradient(135deg,#06165f,#0b2472 60%,#073a6b);
  color:#fff;
}

html body .about-v2-founder::after{
  content:'';
  position:absolute;
  right:-46px;
  bottom:-58px;
  width:190px;
  height:190px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
}

html body .about-v2-founder span{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}

html body .about-v2-founder strong{
  display:block;
  margin-top:18px;
  color:#fff;
  font-size:32px;
  line-height:1.1;
}

html body .about-v2-founder p{
  position:relative;
  z-index:1;
  max-width:360px;
  margin-top:18px;
  color:rgba(255,255,255,.78);
  line-height:1.7;
}

html body .about-v2-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  overflow:hidden;
}

html body .about-v2-stats div{
  padding:22px;
  border-right:1px solid rgba(7,20,63,.08);
}

html body .about-v2-stats div:last-child{
  border-right:0;
}

html body .about-v2-stats strong{
  display:block;
  color:var(--kn-orange);
  font-size:24px;
}

html body .about-v2-stats span{
  display:block;
  margin-top:5px;
  color:#52607f;
  font-size:13px;
  line-height:1.35;
}

html body .about-v2-system{
  padding:74px 0;
}

html body .about-v2-heading{
  max-width:760px;
  margin-bottom:30px;
}

html body .about-v2-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

html body .about-v2-grid article{
  padding:24px;
  transition:transform .2s ease,border-color .2s ease;
}

html body .about-v2-grid article:hover{
  transform:translateY(-4px);
  border-color:rgba(255,107,0,.28);
}

html body .about-v2-grid article > span{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:8px;
  background:#fff4e8;
  color:var(--kn-orange);
  font-weight:900;
}

html body .about-v2-grid h3{
  margin:18px 0 10px;
  color:var(--kn-navy);
  font-size:20px;
}

html body .about-v2-grid p{
  color:#52607f;
  line-height:1.65;
}

html body .about-v2-belief{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(320px,.75fr);
  gap:22px;
  align-items:stretch;
  padding:24px 0 78px;
}

html body .about-v2-belief-card{
  padding:34px;
}

html body .about-v2-values{
  display:grid;
  gap:14px;
}

html body .about-v2-values div{
  padding:24px;
}

html body .about-v2-values strong{
  display:block;
  color:var(--kn-navy);
  font-size:21px;
}

html body .about-v2-values span{
  display:block;
  margin-top:7px;
  color:#52607f;
  line-height:1.55;
}

html body .about-v2-founder-note{
  display:grid;
  grid-template-columns:minmax(260px,.55fr) minmax(0,1fr);
  gap:30px;
  align-items:center;
  padding:38px;
  background:radial-gradient(circle at 100% 0%,rgba(255,107,0,.1),transparent 34%),#fff;
}

html body .about-v2-founder-note blockquote{
  margin:0;
  color:var(--kn-navy);
  font-size:24px;
  line-height:1.45;
  font-weight:800;
}

html body .about-v2-founder-note p{
  grid-column:2;
  margin:0;
}

html body .about-v2-cta{
  margin-top:76px;
  margin-bottom:86px;
  padding:44px;
  text-align:center;
  background:radial-gradient(circle at 15% 20%,rgba(4,183,196,.16),transparent 28%),linear-gradient(135deg,#06165f,#092874 62%,#063c5a);
}

html body .about-v2-cta .about-v2-kicker,
html body .about-v2-cta h2{
  color:#fff;
}

html body .about-v2-cta .about-v2-kicker{
  margin:0 auto;
}

html body .about-v2-cta p{
  max-width:620px;
  margin:0 auto 24px;
  color:rgba(255,255,255,.76);
}

@media(max-width:980px){
  html body .about-v2-intro,
  html body .about-v2-belief,
  html body .about-v2-founder-note{
    grid-template-columns:1fr;
  }

  html body .about-v2-grid,
  html body .about-v2-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  html body .about-v2-founder-note p{
    grid-column:auto;
  }
}

@media(max-width:620px){
  html body .about-v2-copy h2,
  html body .about-v2-heading h2,
  html body .about-v2-belief-card h2,
  html body .about-v2-founder-note h2,
  html body .about-v2-cta h2{
    font-size:34px;
    line-height:1.08;
  }

  html body .about-v2-intro,
  html body .about-v2-system{
    padding:52px 0;
  }

  html body .about-v2-grid,
  html body .about-v2-stats{
    grid-template-columns:1fr;
  }

  html body .about-v2-stats div{
    border-right:0;
    border-bottom:1px solid rgba(7,20,63,.08);
  }

  html body .about-v2-founder-note,
  html body .about-v2-cta{
    padding:28px;
  }
}

@media(max-width:1060px){
  html body .kn-newsletter-grid,
  html body .kn-footer-grid{
    grid-template-columns:1fr 1fr;
  }

  html body .kn-newsletter-form{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:680px){
  html body .kn-footer-courses,
  html body .kn-footer-newsletter,
  html body .kn-footer-main{
    padding-left:0;
    padding-right:0;
  }

  html body .kn-newsletter-grid,
  html body .kn-footer-grid,
  html body .kn-newsletter-form{
    grid-template-columns:1fr;
  }

  html body .kn-footer-bottom .kn-footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  html body .kn-footer-bottom nav{
    justify-content:flex-start;
  }

  html body .kn-footer-bottom .kn-footer-social{
    margin-left:0;
    justify-content:flex-start;
  }
}

html body .site-header,
html body .site-header .main-nav,
html body nav.main-nav,
html body.home-v3 .site-header,
html body.home-v3 nav.main-nav{
  border-bottom:0 !important;
  box-shadow:none !important;
}

html body .topbar,
html body .site-header .topbar{
  border-bottom:0 !important;
}

html body .page-banner{
  border:0 !important;
  box-shadow:none !important;
}

/* Global eyebrow marker: animated cursor-click shape */
html body{
  --kn-click-marker:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 32'%3E%3Cg transform-origin='20 16'%3E%3Cpath d='M29 5 L7 16 L18.4 18.3 L22.8 27 Z' fill='%2304b7c4'%3E%3Canimate attributeName='opacity' values='.55;1;.55' dur='1.8s' begin='0s' repeatCount='indefinite'/%3E%3C/path%3E%3CanimateTransform attributeName='transform' type='scale' values='.92;1.06;.92' dur='1.8s' begin='0s' repeatCount='indefinite' additive='sum'/%3E%3C/g%3E%3C/svg%3E");
}

html body .hero-eyebrow span,
html body .section-eyebrow span,
html body .dark-section-eyebrow span,
html body .eyebrow::before,
html body .page-banner .hero-eyebrow span{
  content:'' !important;
  display:inline-block !important;
  width:24px !important;
  height:24px !important;
  min-width:24px !important;
  border-radius:0 !important;
  clip-path:none !important;
  background:var(--kn-click-marker) center/contain no-repeat !important;
  box-shadow:none !important;
  filter:drop-shadow(0 0 7px rgba(4,183,196,.22)) !important;
  transform-origin:center !important;
  animation:knClickMarkerPulse 2.4s ease-in-out infinite !important;
}

@keyframes knClickMarkerPulse{
  0%,100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:drop-shadow(0 0 5px rgba(4,183,196,.2));
  }
  50%{
    opacity:.94;
    transform:translateY(-1px) scale(1.06);
    filter:drop-shadow(0 0 12px rgba(255,107,0,.28));
  }
}

/* Exam detail final alignment */
html body .exam-detail-hero .page-banner-content{
  width:min(980px,calc(100% - 48px)) !important;
  max-width:980px !important;
  margin:0 auto !important;
  text-align:center !important;
}
html body .exam-detail-hero .hero-eyebrow{
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
html body .exam-detail-hero .exam-hero-title{
  justify-content:center !important;
  text-align:center !important;
}
html body .exam-detail-hero .page-banner-desc{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}
html body .exam-detail-section .course-detail-body{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  text-align:left !important;
}
html body .exam-detail-section .course-detail-body h1,
html body .exam-detail-section .course-detail-body h2,
html body .exam-detail-section .course-detail-body h3{
  text-align:left !important;
}
html body .exam-detail-section .course-detail-body p,
html body .exam-detail-section .course-detail-body ul,
html body .exam-detail-section .course-detail-body ol,
html body .exam-detail-section .course-detail-body li{
  text-align:left !important;
}

/* Application module refresh */
html body .applications-page{
  background:#f7f8fb;
  padding:78px 0 88px;
}

html body .applications-page .container{
  max-width:1120px;
}

html body .application-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:26px;
  margin-top:42px;
}

html body .application-card{
  border:1px solid rgba(15,23,42,.08);
  border-radius:8px;
  box-shadow:0 14px 38px rgba(15,23,42,.08);
}

html body .application-card:hover{
  transform:translateY(-4px);
  border-color:rgba(240,135,59,.45);
  box-shadow:0 20px 52px rgba(15,23,42,.13);
}

html body .application-image-wrap{
  position:relative;
  aspect-ratio:16/9;
  border-bottom:1px solid rgba(15,23,42,.08);
}

html body .application-content{
  min-height:64px;
  padding:12px 14px;
}

html body .application-title{
  font-size:18px;
  line-height:1.25;
}

html body .application-btn{
  border-radius:6px;
  padding:10px 16px;
  background:#07142f;
}

html body .application-badge{
  position:absolute;
  z-index:2;
  top:14px;
  right:14px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  max-width:calc(100% - 28px);
  padding:8px 12px;
  border-radius:999px;
  background:#07142f;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}

html body .application-badge span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#22c55e;
  flex:0 0 auto;
}

/* Horizontal featured application banner for detail pages */
.inline-app-carousel{
  position:relative;
  margin:0 0 30px;
  min-height:122px;
}

.inline-app-track{
  position:relative;
  min-height:122px;
}

.inline-app-slide{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:180px minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  min-height:122px;
  padding:20px 24px;
  border-radius:8px;
  overflow:hidden;
  text-decoration:none;
  color:#07142f;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.58), transparent 30%),
    linear-gradient(105deg,#d9a2b9 0%,#b8d7cd 42%,#c6a4b3 100%);
  box-shadow:0 18px 44px rgba(7,20,63,.13);
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .55s ease,transform .55s ease;
}

.inline-app-slide.inline-app-theme-1{
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.46), transparent 24%),
    linear-gradient(105deg,#d79db8 0%,#bfd9d3 48%,#caa8b8 100%);
}

.inline-app-slide.inline-app-theme-2{
  background:
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.48), transparent 25%),
    linear-gradient(105deg,#f9d67a 0%,#fb9f74 42%,#ef6f91 100%);
}

.inline-app-slide.inline-app-theme-3{
  background:
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.5), transparent 26%),
    linear-gradient(105deg,#a8edea 0%,#fed6e3 52%,#c7b6ff 100%);
}

.inline-app-slide.inline-app-theme-4{
  background:
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.48), transparent 26%),
    linear-gradient(105deg,#c6f6d5 0%,#90cdf4 46%,#b794f4 100%);
}

.inline-app-slide.inline-app-theme-5{
  background:
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.52), transparent 26%),
    linear-gradient(105deg,#ffe29f 0%,#ffa99f 48%,#ff719a 100%);
}

.inline-app-slide.is-active{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.inline-app-slide:before{
  content:"";
  position:absolute;
  inset:auto -40px -70px auto;
  width:240px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
}

.inline-app-logo-wrap{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:78px;
  padding:12px;
  border-radius:8px;
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.58);
}

.inline-app-logo{
  max-width:150px;
  max-height:58px;
  object-fit:contain;
}

.inline-app-copy{
  position:relative;
  z-index:1;
  min-width:0;
  text-align:center;
  overflow:visible;
}

.inline-app-kicker{
  display:inline-flex;
  margin-bottom:6px;
  color:#9f1239;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.inline-app-copy strong{
  display:block;
  width:100%;
  color:#083b99;
  font-size:clamp(20px,3vw,34px);
  line-height:1.05;
  font-weight:900;
  max-width:100%;
  max-height:72px;
  overflow:visible;
  overflow-wrap:break-word;
}

.inline-app-copy small{
  display:block;
  margin-top:6px;
  color:#06101f;
  font-size:15px;
  font-weight:800;
  line-height:1.25;
}

.inline-app-cta{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  min-height:52px;
  padding:12px 18px;
  border-radius:10px;
  background:linear-gradient(135deg,#d946ef,#2563eb);
  color:#fff;
  font-weight:900;
  font-size:19px;
  border:2px solid rgba(255,255,255,.82);
  box-shadow:0 12px 28px rgba(37,99,235,.25);
}

.inline-app-theme-1 .inline-app-cta{
  background:linear-gradient(135deg,#d946ef,#2563eb);
  box-shadow:0 12px 28px rgba(37,99,235,.25);
}

.inline-app-theme-2 .inline-app-cta{
  background:linear-gradient(135deg,#f97316,#dc2626);
  box-shadow:0 12px 28px rgba(220,38,38,.24);
}

.inline-app-theme-3 .inline-app-cta{
  background:linear-gradient(135deg,#0891b2,#7c3aed);
  box-shadow:0 12px 28px rgba(124,58,237,.24);
}

.inline-app-theme-4 .inline-app-cta{
  background:linear-gradient(135deg,#059669,#0284c7);
  box-shadow:0 12px 28px rgba(2,132,199,.24);
}

.inline-app-theme-5 .inline-app-cta{
  background:linear-gradient(135deg,#be123c,#f59e0b);
  box-shadow:0 12px 28px rgba(190,18,60,.24);
}

@media(max-width:900px){
  html body .application-grid{
    grid-template-columns:1fr;
  }

  .inline-app-slide{
    grid-template-columns:1fr;
    gap:10px;
    padding:18px;
    text-align:center;
  }

  .inline-app-logo-wrap{
    min-height:64px;
  }

  .inline-app-cta{
    width:100%;
    min-height:46px;
    font-size:16px;
  }
}

@media(max-width:560px){
  html body .application-content{
    flex-direction:row;
    align-items:center;
  }

  html body .application-btn{
    width:auto;
  }

  .inline-app-carousel,
  .inline-app-track{
    min-height:252px;
  }
}

/* Compact homepage featured applications */
html body .home-v2 .kn-featured,
html body .kn-featured{
  grid-template-columns:230px minmax(0,1fr);
  gap:16px;
  align-items:stretch;
  padding:36px 0;
}

html body .kn-featured-side{
  min-height:220px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius:8px;
}

html body .kn-featured-side h2{
  font-size:clamp(22px,2.1vw,28px);
  line-height:1.12;
}

html body .kn-featured-side p{
  margin-top:10px;
  font-size:14px;
  line-height:1.45;
}

html body .kn-featured-list{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:0;
}

html body .kn-featured-list[data-home-feature-carousel]{
  position:relative;
  min-height:220px;
  height:220px;
}

html body .kn-feature-card{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:220px;
  padding:18px;
  overflow:hidden;
  text-align:center;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 18px 42px rgba(7,20,63,.09);
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .55s ease,transform .55s ease;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card.is-active{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

html body .kn-feature-card.inline-app-theme-1{
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.42), transparent 28%),
    linear-gradient(135deg,#d79db8 0%,#bfd9d3 50%,#caa8b8 100%);
}

html body .kn-feature-card.inline-app-theme-2{
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.46), transparent 28%),
    linear-gradient(135deg,#f9d67a 0%,#fb9f74 48%,#ef6f91 100%);
}

html body .kn-feature-card.inline-app-theme-3{
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.46), transparent 28%),
    linear-gradient(135deg,#a8edea 0%,#fed6e3 52%,#c7b6ff 100%);
}

html body .kn-feature-card.inline-app-theme-4{
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.44), transparent 28%),
    linear-gradient(135deg,#c6f6d5 0%,#90cdf4 48%,#b794f4 100%);
}

html body .kn-feature-card.inline-app-theme-5{
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.48), transparent 28%),
    linear-gradient(135deg,#ffe29f 0%,#ffa99f 48%,#ff719a 100%);
}

html body .kn-feature-logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
  width:106px;
  height:76px;
  padding:10px;
  border-radius:8px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 12px 28px rgba(7,20,63,.08);
}

html body .kn-feature-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  border:0;
  background:transparent;
  border-radius:0;
}

html body .kn-feature-copy{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:0;
  overflow:visible;
}

html body .kn-feature-card h3{
  margin:0;
  color:#07142f;
  font-size:17px;
  line-height:1.2;
  max-width:260px;
}

html body .kn-feature-card .kn-feature-kicker{
  display:inline-flex;
  margin:0 0 6px;
  padding:0;
  background:transparent;
  color:#9f1239;
  font-size:12px;
  font-weight:900;
  line-height:1.1;
  text-transform:uppercase;
}

html body .kn-feature-card strong{
  display:block;
  width:100%;
  color:#083b99;
  font-size:clamp(20px,3vw,34px);
  line-height:1.05;
  font-weight:900;
  max-width:100%;
  overflow-wrap:break-word;
}

html body .kn-feature-card small{
  display:block;
  margin-top:6px;
  color:#06101f;
  font-size:15px;
  font-weight:800;
  line-height:1.25;
}

html body .kn-feature-card p{
  margin:6px 0 0;
  color:#1f2a44;
  font-size:14px;
  line-height:1.3;
}

html body .kn-feature-card span{
  margin-top:10px;
  background:rgba(255,255,255,.68);
  color:#f05b18;
  font-size:12px;
  line-height:1.25;
  max-width:100%;
}

html body .kn-feature-apply{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:9px 16px;
  border-radius:8px;
  color:#fff;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.7);
}

html body .inline-app-theme-1 .kn-feature-apply{
  background:linear-gradient(135deg,#d946ef,#2563eb);
}

html body .inline-app-theme-2 .kn-feature-apply{
  background:linear-gradient(135deg,#f97316,#dc2626);
}

html body .inline-app-theme-3 .kn-feature-apply{
  background:linear-gradient(135deg,#0891b2,#7c3aed);
}

html body .inline-app-theme-4 .kn-feature-apply{
  background:linear-gradient(135deg,#059669,#0284c7);
}

html body .inline-app-theme-5 .kn-feature-apply{
  background:linear-gradient(135deg,#be123c,#f59e0b);
}

@media(max-width:900px){
  html body .home-v2 .kn-featured,
  html body .kn-featured{
    grid-template-columns:1fr;
    padding:38px 0;
  }

  html body .kn-featured-side,
  html body .kn-feature-card{
    min-height:auto;
  }

  html body .kn-featured-list[data-home-feature-carousel]{
    min-height:220px;
    height:220px;
  }
}

@media(max-width:640px){
  html body .kn-featured-list{
    grid-template-columns:1fr;
  }
}

/* Home featured carousel uses the same horizontal ad language as detail pages */
html body .kn-featured-list[data-home-feature-carousel]{
  height:220px;
  min-height:220px;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
  display:grid;
  grid-template-columns:180px minmax(0,1fr) auto;
  align-items:center;
  justify-content:stretch;
  gap:18px;
  height:220px;
  min-height:220px;
  padding:20px 24px;
  text-align:center;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-logo-box{
  width:180px;
  height:78px;
  margin:0;
  padding:12px;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-copy{
  margin:0;
  min-width:0;
  align-self:center;
  overflow:visible;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card h3{
  max-width:none;
  font-size:22px;
  line-height:1.15;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card strong:not(.kn-feature-apply){
  font-size:clamp(20px,2.7vw,34px);
  line-height:1.03;
  max-height:70px;
  width:100%;
  max-width:100%;
  overflow:visible;
  overflow-wrap:break-word;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card p{
  margin-top:7px;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card span{
  margin-top:10px;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card .kn-feature-kicker{
  margin:0 0 6px;
  padding:0;
  background:transparent;
  color:#9f1239;
}

html body .kn-featured-list[data-home-feature-carousel] .kn-feature-apply{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:center;
  margin:0;
  min-width:126px;
  min-height:48px;
  font-size:16px !important;
  line-height:1.1 !important;
  color:#fff !important;
  white-space:nowrap;
  text-align:center;
}

@media(max-width:900px){
  html body .kn-featured-list[data-home-feature-carousel],
  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
    height:300px;
    min-height:300px;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
    grid-template-columns:1fr;
    gap:10px;
    padding:18px;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-logo-box{
    width:150px;
    height:70px;
    margin:0 auto;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-apply{
    width:100%;
  }
}

/* Keep homepage featured panel compact: blue block left, detail-style ad right */
html body .home-v2 .kn-featured,
html body .kn-featured{
  display:grid;
  grid-template-columns:230px minmax(0,1fr);
  gap:16px;
  align-items:stretch;
  padding:30px 0;
}

html body .kn-featured-side{
  min-height:122px;
  height:122px;
  padding:18px 20px;
}

html body .kn-featured-side p{
  margin-top:8px;
  font-size:13px;
  line-height:1.35;
  color:#fff;
}

html body .kn-featured-list[data-home-feature-carousel],
html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
  height:122px;
  min-height:122px;
}

@media(max-width:900px){
  html body .home-v2 .kn-featured,
  html body .kn-featured{
    grid-template-columns:1fr;
  }

  html body .kn-featured-side{
    height:auto;
    min-height:auto;
  }

  html body .kn-featured-list[data-home-feature-carousel],
  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
    height:252px;
    min-height:252px;
  }
}

/* Review module */
.kn-review-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,107,0,.12);
  color:#ff6b00;
  font-size:12px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.kn-review-chip::before{
  content:'';
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:9px solid currentColor;
  animation:knReviewArrowBlink 1.05s ease-in-out infinite;
}

@keyframes knReviewArrowBlink{
  0%,100%{
    opacity:.28;
    transform:translateX(0);
  }
  50%{
    opacity:1;
    transform:translateX(4px);
  }
}

.kn-review-hero{
  position:relative;
  overflow:hidden;
  min-height:560px;
  background:
    radial-gradient(circle at 12% 24%,rgba(4,183,196,.34),transparent 28%),
    radial-gradient(circle at 84% 70%,rgba(255,107,0,.3),transparent 30%),
    linear-gradient(135deg,#07143f 0%,#0e3674 46%,#ffe1c9 100%);
  color:#fff;
}

.kn-review-hero-pattern{
  position:absolute;
  inset:0;
  opacity:.92;
  background-image:
    var(--kn-hex-teal),
    var(--kn-hex-orange),
    radial-gradient(ellipse at 78% 30%,rgba(7,20,63,.18),transparent 44%),
    radial-gradient(ellipse at 18% 78%,rgba(4,183,196,.2),transparent 42%);
  background-size:112px 98px,168px 147px,auto,auto;
  background-position:0 0,0 0,0 0,0 0;
  mask-image:linear-gradient(90deg,transparent 0%,#000 9%,#000 91%,transparent 100%);
}

.kn-review-hero-inner{
  position:relative;
  z-index:1;
  max-width:1180px;
  min-height:560px;
  margin:0 auto;
  padding:84px 20px 76px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 470px;
  align-items:center;
  gap:58px;
}

.kn-review-hero-copy h1{
  margin:20px 0 18px;
  max-width:650px;
  color:#fff;
  font-size:52px;
  line-height:1.08;
  font-weight:900;
}

.kn-review-hero-copy p{
  max-width:580px;
  color:rgba(255,255,255,.86);
  font-size:18px;
  line-height:1.7;
}

.kn-review-hero-btn,
.kn-review-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 30px;
  border:0;
  border-radius:8px;
  background:linear-gradient(135deg,#ff7a18,#f04438);
  color:#fff;
  font-size:16px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(255,107,0,.28);
}

.kn-review-hero-btn{
  margin-top:30px;
}

.kn-review-mini-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:28px;
}

.kn-review-mini-row span{
  padding:9px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:13px;
  font-weight:800;
}

.kn-review-hero-art{
  position:relative;
  min-height:390px;
}

.kn-review-campus{
  position:absolute;
  inset:44px 0 0;
  border-radius:8px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.9),rgba(255,255,255,.42)),
    url('../images/default-course-banner.jpg') center/cover;
  filter:grayscale(1);
  opacity:.86;
  box-shadow:0 30px 80px rgba(0,0,0,.24);
}

.kn-review-student-card,
.kn-review-floating-note{
  position:absolute;
  right:28px;
  padding:18px;
  border-radius:8px;
  background:#fff;
  color:#07143f;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.kn-review-student-card{
  top:0;
  width:240px;
}

.kn-review-student-card span{
  color:#ffb000;
  letter-spacing:2px;
}

.kn-review-student-card strong{
  display:block;
  margin-top:8px;
  font-size:18px;
}

.kn-review-floating-note{
  left:26px;
  right:auto;
  bottom:18px;
  max-width:250px;
  color:#fff;
  background:linear-gradient(135deg,#08225c,#ff6b00);
  font-size:15px;
  font-weight:900;
}

.kn-review-benefits{
  max-width:1180px;
  margin:0 auto;
  padding:62px 20px 36px;
}

.kn-review-section-head{
  text-align:center;
  margin-bottom:34px;
}

.kn-review-section-head h2{
  color:#07143f;
  font-size:34px;
  line-height:1.15;
  font-weight:900;
}

.kn-review-section-head p{
  margin-top:8px;
  color:#445174;
}

.kn-review-benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.kn-review-benefit-grid article{
  padding:30px 24px;
  border:1px solid rgba(7,20,63,.1);
  border-radius:8px;
  text-align:center;
  background:#fff;
  box-shadow:0 18px 42px rgba(7,20,63,.06);
}

.kn-review-benefit-grid span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  margin-bottom:18px;
  border-radius:8px;
  background:#eef9fb;
  color:#ff6b00;
  font-size:28px;
  font-weight:900;
}

.kn-review-benefit-grid h3{
  color:#07143f;
  font-size:22px;
  font-weight:900;
}

.kn-review-benefit-grid p{
  margin-top:10px;
  color:#445174;
  line-height:1.55;
}

.kn-review-form-section{
  padding:42px 20px 76px;
  background:linear-gradient(180deg,#fff 0%,#f3fbfc 100%);
}

.kn-review-form-shell{
  max-width:1020px;
  margin:0 auto;
}

.kn-review-form-panel{
  padding:34px;
  border:1px solid rgba(7,20,63,.08);
  border-radius:8px;
  background:#f7fbff;
  box-shadow:0 24px 70px rgba(7,20,63,.08);
}

.kn-review-form-intro{
  margin-bottom:26px;
}

.kn-review-form-intro h2{
  margin-top:14px;
  color:#07143f;
  font-size:32px;
  line-height:1.15;
  font-weight:900;
}

.kn-review-form-intro p{
  margin-top:8px;
  color:#52607f;
}

.kn-review-success,
.kn-review-errors{
  margin-bottom:18px;
  padding:13px 15px;
  border-radius:8px;
  font-weight:800;
}

.kn-review-success{
  color:#065f46;
  background:#dcfce7;
  border:1px solid #86efac;
}

.kn-review-errors{
  color:#991b1b;
  background:#fee2e2;
  border:1px solid #fecaca;
}

.kn-review-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 22px;
}

.kn-review-form label,
.kn-review-wide{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.kn-review-form label span,
.kn-review-wide span{
  color:#07143f;
  font-size:14px;
  font-weight:900;
}

.kn-review-form b{
  color:#f04438;
}

.kn-review-form input,
.kn-review-form select,
.kn-review-form textarea{
  width:100%;
  min-height:48px;
  padding:0 14px;
  border:1px solid #dde7f2;
  border-radius:8px;
  background:#fff;
  color:#07143f;
  font-size:15px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}

.kn-review-form textarea{
  min-height:150px;
  padding:14px;
  resize:vertical;
}

.kn-review-form input:focus,
.kn-review-form select:focus,
.kn-review-form textarea:focus{
  border-color:#04b7c4;
  box-shadow:0 0 0 4px rgba(4,183,196,.12);
}

.kn-review-form em{
  color:#dc2626;
  font-size:12px;
  font-style:normal;
  font-weight:700;
}

.kn-review-wide{
  margin-top:18px;
}

.kn-review-submit{
  min-width:190px;
  margin:26px auto 0;
}

.kn-detail-review-section{
  padding:26px 5%;
  background:#fff;
}

.kn-detail-review-card{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:24px;
  padding:28px;
  border-radius:8px;
  background:
    linear-gradient(135deg,rgba(8,34,92,.96),rgba(6,20,95,.92) 52%,rgba(255,107,0,.86));
  color:#fff;
  box-shadow:0 24px 60px rgba(7,20,63,.16);
}

.kn-detail-review-card .kn-review-chip{
  background:rgba(255,255,255,.15);
  color:#fff;
}

.kn-detail-review-copy h2{
  margin:12px 0 8px;
  color:#fff;
  font-size:30px;
  line-height:1.16;
  font-weight:900;
}

.kn-detail-review-copy p{
  max-width:680px;
  color:rgba(255,255,255,.84);
  line-height:1.6;
}

.kn-detail-review-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

.kn-detail-review-actions .btn-red{
  white-space:nowrap;
}

.kn-detail-review-actions span{
  color:rgba(255,255,255,.8);
  font-size:13px;
  font-weight:800;
}

.kn-review-sidebar-card{
  margin-top:18px;
  overflow:hidden;
  border-radius:8px;
  background:
    radial-gradient(circle at 88% 18%,rgba(255,255,255,.28),transparent 28%),
    linear-gradient(135deg,#0b4aa2 0%,#07143f 62%,#ff6b00 100%);
  box-shadow:0 18px 42px rgba(7,20,63,.13);
}

.kn-review-sidebar-top{
  padding:22px;
  color:#fff;
}

.kn-review-sidebar-top span{
  display:inline-flex;
  margin-bottom:10px;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-size:11px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.kn-review-sidebar-top strong{
  display:block;
  color:#fff;
  font-size:24px;
  line-height:1.12;
  font-weight:900;
}

.kn-review-sidebar-top p{
  margin-top:10px;
  color:rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.45;
}

.kn-review-sidebar-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 16px 16px;
  min-height:46px;
  padding:0 16px;
  border-radius:8px;
  background:#fff;
  color:#083b99;
  font-weight:900;
  text-decoration:none;
}

.kn-approved-reviews-section{
  padding:64px 5% 72px;
  background:
    linear-gradient(180deg,#fff 0%,#f6fdfe 100%);
}

.kn-approved-reviews-inner{
  width:min(1180px,92vw);
  margin:0 auto;
}

.kn-approved-reviews-head{
  max-width:720px;
  margin:0 auto 30px;
  text-align:center;
}

.kn-approved-reviews-head .kn-approved-review-eyebrow{
  margin:0 auto;
}

.kn-approved-reviews-head h2{
  margin:16px 0 8px;
  color:#07143f;
  font-size:clamp(30px,4vw,46px);
  line-height:1.1;
  font-weight:900;
}

.kn-approved-reviews-head p{
  color:#52607f;
  font-size:16px;
  line-height:1.65;
}

.kn-approved-reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}

.kn-approved-review-card{
  min-height:300px;
  padding:22px;
  border:1px solid rgba(7,20,63,.08);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 44px rgba(7,20,63,.07);
}

.kn-approved-review-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.kn-approved-review-person{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:center;
  min-width:0;
}

.kn-approved-review-top strong{
  display:block;
  color:#07143f;
  font-size:17px;
  font-weight:900;
}

.kn-approved-review-top span{
  display:block;
  margin-top:4px;
  color:#64708c;
  font-size:13px;
  line-height:1.35;
}

.kn-approved-stars{
  display:flex;
  gap:2px;
  color:#cbd5e1;
  font-size:15px;
  white-space:nowrap;
}

.kn-approved-stars span{
  color:#cbd5e1;
}

.kn-approved-stars .is-filled{
  color:#ffb000;
}

.kn-approved-review-card h3{
  color:#07143f;
  font-size:20px;
  line-height:1.25;
  font-weight:900;
}

.kn-approved-review-card p{
  margin-top:10px;
  color:#445174;
  line-height:1.62;
}

.kn-approved-review-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:18px;
}

.kn-approved-review-meta span{
  padding:7px 10px;
  border-radius:999px;
  background:#f1f7fb;
  color:#083b99;
  font-size:12px;
  font-weight:800;
}

.kn-approved-review-more{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.kn-approved-review-more .btn-red{
  min-width:190px;
}

.kn-student-reviews-hero{
  position:relative;
  overflow:hidden;
  min-height:430px;
  background:
    radial-gradient(circle at 12% 24%,rgba(4,183,196,.34),transparent 28%),
    radial-gradient(circle at 84% 70%,rgba(255,107,0,.3),transparent 30%),
    linear-gradient(135deg,#07143f 0%,#0e3674 46%,#ffe1c9 100%);
  color:#fff;
}

.kn-student-reviews-hero-inner{
  position:relative;
  z-index:1;
  width:min(1180px,88%);
  min-height:430px;
  margin:0 auto;
  padding:82px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.kn-student-reviews-hero h1{
  max-width:760px;
  margin:18px 0 14px;
  color:#fff;
  font-size:clamp(36px,5vw,62px);
  line-height:1.06;
  font-weight:900;
}

.kn-student-reviews-hero p{
  max-width:680px;
  color:rgba(255,255,255,.84);
  font-size:18px;
  line-height:1.7;
}

.kn-student-review-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}

.kn-student-review-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.42);
  background:rgba(255,255,255,.08);
}

.kn-student-reviews-page{
  width:min(1180px,88%);
  margin:0 auto;
  padding:48px 0 78px;
}

.kn-review-filterbar{
  display:grid;
  grid-template-columns:1.2fr 1.2fr .8fr auto;
  gap:14px;
  align-items:end;
  margin-top:-82px;
  padding:18px;
  border:1px solid rgba(7,20,63,.08);
  border-radius:8px;
  background:#fff;
  box-shadow:0 22px 60px rgba(7,20,63,.16);
  position:relative;
  z-index:3;
}

.kn-review-filterbar label{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.kn-review-filterbar span{
  color:#07143f;
  font-size:13px;
  font-weight:900;
}

.kn-review-filterbar select{
  width:100%;
  min-height:46px;
  padding:0 12px;
  border:1px solid #dbe6f2;
  border-radius:8px;
  background:#f8fbff;
  color:#07143f;
  font-size:14px;
  outline:none;
}

.kn-review-filterbar select:focus{
  border-color:#04b7c4;
  box-shadow:0 0 0 4px rgba(4,183,196,.12);
}

.kn-review-filter-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.kn-review-filter-actions button,
.kn-review-filter-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:8px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

.kn-review-filter-actions button{
  border:0;
  background:linear-gradient(135deg,#ff7a18,#f04438);
  color:#fff;
  cursor:pointer;
}

.kn-review-filter-actions a{
  border:1px solid #dbe6f2;
  color:#083b99;
  background:#fff;
}

.kn-review-results-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin:42px 0 24px;
}

.kn-review-results-head span{
  color:#ff6b00;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.kn-review-results-head h2{
  margin-top:8px;
  color:#07143f;
  font-size:clamp(30px,4vw,46px);
  line-height:1.1;
  font-weight:900;
}

.kn-review-results-head a{
  color:#083b99;
  font-weight:900;
  text-decoration:none;
}

.kn-student-review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.kn-student-review-card{
  display:flex;
  flex-direction:column;
  min-height:330px;
  padding:22px;
  border:1px solid rgba(7,20,63,.08);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 44px rgba(7,20,63,.07);
}

.kn-student-review-card-top{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  margin-bottom:18px;
}

.kn-review-avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:8px;
  background:linear-gradient(135deg,#04b7c4,#ff6b00);
  color:#fff;
  font-size:18px;
  font-weight:900;
}

.kn-student-review-card-top strong{
  display:block;
  color:#07143f;
  font-size:16px;
  font-weight:900;
}

.kn-student-review-card-top span{
  color:#64708c;
  font-size:12px;
  font-weight:700;
}

.kn-student-review-card h3{
  color:#07143f;
  font-size:20px;
  line-height:1.28;
  font-weight:900;
}

.kn-student-review-card p{
  margin-top:10px;
  color:#445174;
  line-height:1.62;
}

.kn-student-review-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:auto;
  padding-top:18px;
}

.kn-student-review-tags span{
  padding:7px 10px;
  border-radius:999px;
  background:#f1f7fb;
  color:#083b99;
  font-size:12px;
  font-weight:800;
}

.kn-review-pagination{
  margin-top:28px;
}

.kn-review-empty{
  padding:58px 24px;
  border:1px solid rgba(7,20,63,.08);
  border-radius:8px;
  background:#fff;
  text-align:center;
  box-shadow:0 18px 44px rgba(7,20,63,.06);
}

.kn-review-empty > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  margin-bottom:16px;
  border-radius:8px;
  background:#fff7ed;
  color:#ff6b00;
  font-size:28px;
}

.kn-review-empty h3{
  color:#07143f;
  font-size:26px;
  font-weight:900;
}

.kn-review-empty p{
  margin:8px auto 20px;
  max-width:460px;
  color:#52607f;
}

@media(max-width:900px){
  .kn-review-hero-inner{
    grid-template-columns:1fr;
    min-height:auto;
    padding:64px 20px;
  }

  .kn-review-hero-copy h1{
    font-size:38px;
  }

  .kn-review-hero-art{
    min-height:320px;
  }

  .kn-review-benefit-grid,
  .kn-review-form-grid,
  .kn-detail-review-card,
  .kn-approved-reviews-grid,
  .kn-student-review-grid,
  .kn-review-filterbar{
    grid-template-columns:1fr;
  }

  .kn-detail-review-actions{
    align-items:flex-start;
  }
}

@media(max-width:560px){
  .kn-review-hero-copy h1{
    font-size:31px;
  }

  .kn-review-form-panel{
    padding:22px;
  }

  .kn-review-section-head h2,
  .kn-review-form-intro h2,
  .kn-detail-review-copy h2{
    font-size:26px;
  }
}

/* Unified inner-page sidebar styling */
html body .course-detail-sidebar,
html body .exam-detail-sidebar{
  gap:18px;
}

html body .course-detail-sidebar > *,
html body .exam-detail-sidebar > *,
html body .course-news-sidebar,
html body .course-app-sidebar,
html body .course-detail-info-card,
html body .download-card,
html body .exam-sidebar-card,
html body .kn-review-sidebar-card{
  border-radius:8px !important;
}

html body .course-news-sidebar,
html body .course-app-sidebar,
html body .course-detail-info-card,
html body .download-card,
html body .exam-sidebar-card{
  overflow:hidden;
  border:1px solid rgba(4,183,196,.22) !important;
  background:
    radial-gradient(circle at 88% 12%,rgba(4,183,196,.12),transparent 30%),
    linear-gradient(180deg,#f2fcfd 0%,#ffffff 58%,#fff8f1 100%) !important;
  box-shadow:0 18px 44px rgba(7,20,63,.08) !important;
}

html body .course-detail-info-title,
html body .course-news-sidebar .course-detail-info-title,
html body .course-app-sidebar .course-detail-info-title,
html body .exam-sidebar-card h2{
  margin:0 0 18px !important;
  padding:0 0 14px !important;
  border-bottom:1px solid rgba(4,183,196,.18) !important;
  color:var(--kn-navy) !important;
  font-family:'Inter',sans-serif !important;
  font-size:22px !important;
  line-height:1.2 !important;
  font-weight:900 !important;
  letter-spacing:0 !important;
}

html body .exam-sidebar-card p{
  margin-bottom:16px;
  color:#53617d !important;
  font-size:14px;
}

html body .course-detail-info-list li{
  border-bottom:1px dashed rgba(255,107,0,.18) !important;
}

html body .course-detail-info-list li:last-child{
  border-bottom:0 !important;
}

html body .sidebar-news-card,
html body .exam-sidebar-list a,
html body .sidebar-app-card{
  border-radius:6px !important;
}

html body .sidebar-news-btn,
html body .kn-review-sidebar-btn,
html body .course-detail-info-card .btn-red,
html body .download-card .btn-red,
html body .download-card .btn-outline{
  border-radius:8px !important;
}

html body .download-card .brochure-download-btn[data-type="brochure"]{
  background:linear-gradient(135deg,var(--kn-teal) 0%,#039aaa 100%) !important;
  color:#fff !important;
  box-shadow:0 14px 28px rgba(4,183,196,.2) !important;
}

html body .download-card .brochure-download-btn[data-type="brochure"]:hover,
html body .download-card .brochure-download-btn[data-type="brochure"]:focus{
  background:linear-gradient(135deg,var(--kn-orange) 0%,#ff8a17 48%,var(--kn-gold) 100%) !important;
  color:#fff !important;
  box-shadow:0 14px 28px rgba(255,107,0,.24) !important;
}

/* Consultation-style brochure and syllabus download modal */
html body .custom-download-modal{
  position:fixed !important;
  inset:0 !important;
  z-index:99999 !important;
  background:rgba(2,8,31,.72) !important;
  backdrop-filter:blur(7px) !important;
  -webkit-backdrop-filter:blur(7px) !important;
  padding:32px 16px !important;
  overflow-y:auto !important;
}

html body .custom-download-modal[style*="block"]{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:center !important;
}

html body .custom-download-modal-content{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  transform:none !important;
  width:min(760px,100%) !important;
  max-width:760px !important;
  margin:clamp(18px,7vh,70px) auto !important;
  overflow:visible !important;
  border:1px solid var(--kn-line) !important;
  border-radius:8px !important;
  background:linear-gradient(180deg,#ffffff 0%,#f7fcfd 100%) !important;
  box-shadow:0 30px 80px rgba(2,8,31,.35) !important;
  animation:modalSlide .3s ease;
}

html body .download-popup-header{
  position:relative !important;
  padding:30px 72px 18px 30px !important;
  color:var(--kn-navy) !important;
  background:transparent !important;
}

html body .download-popup-header h3{
  margin:0 0 8px !important;
  color:var(--kn-navy) !important;
  font-family:'Plus Jakarta Sans','Manrope',sans-serif !important;
  font-size:30px !important;
  line-height:1.18 !important;
  font-weight:900 !important;
  letter-spacing:0 !important;
}

html body .download-popup-header p{
  max-width:590px !important;
  margin:0 !important;
  color:var(--kn-muted) !important;
  font-size:14px !important;
  font-weight:650 !important;
  line-height:1.6 !important;
  opacity:1 !important;
}

html body .close-download-modal{
  position:absolute !important;
  top:18px !important;
  right:18px !important;
  width:36px !important;
  height:36px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid var(--kn-line) !important;
  border-radius:50% !important;
  background:#fff !important;
  color:var(--kn-navy) !important;
  font-size:22px !important;
  line-height:1 !important;
  cursor:pointer !important;
  transition:background .2s ease,color .2s ease,transform .15s ease !important;
}

html body .close-download-modal:hover{
  background:var(--kn-orange) !important;
  color:#fff !important;
  transform:rotate(90deg) !important;
}

html body .download-popup-body{
  padding:0 30px 30px !important;
}

html body .download-popup-note{
  margin:0 0 16px !important;
  padding:13px 14px !important;
  border:1px solid rgba(4,183,196,.14) !important;
  border-radius:8px !important;
  background:#f3fafb !important;
  color:#53617d !important;
  font-size:13px !important;
  font-weight:700 !important;
}

html body .download-popup-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

html body .download-field,
html body .download-popup-body .download-field{
  display:flex !important;
  flex-direction:column !important;
  gap:7px !important;
  margin:0 !important;
  color:var(--kn-ink) !important;
}

html body .download-field-full{
  grid-column:1 / -1;
}

html body .download-field span{
  color:var(--kn-ink) !important;
  font-size:13px !important;
  font-weight:800 !important;
}

html body .download-popup-body .form-control{
  width:100% !important;
  min-height:46px !important;
  height:auto !important;
  margin:0 !important;
  padding:10px 12px !important;
  border:1px solid var(--kn-line) !important;
  border-radius:8px !important;
  background:#fff !important;
  color:var(--kn-ink) !important;
  font-family:'Manrope',sans-serif !important;
  font-size:14px !important;
  font-weight:650 !important;
  outline:none !important;
  transition:border-color .2s ease,box-shadow .2s ease !important;
}

html body .download-popup-body .form-control:focus{
  border-color:var(--kn-teal) !important;
  box-shadow:0 0 0 4px rgba(4,183,196,.14) !important;
}

html body .download-submit-btn{
  width:100% !important;
  min-height:48px !important;
  height:auto !important;
  margin-top:16px !important;
  border:0 !important;
  border-radius:8px !important;
  background:linear-gradient(105deg,var(--kn-teal),var(--kn-navy) 42%,var(--kn-orange) 100%) !important;
  color:#fff !important;
  font-size:15px !important;
  font-weight:900 !important;
  box-shadow:none !important;
}

html body .download-submit-btn:hover,
html body .download-submit-btn:focus{
  transform:translateY(-1px) !important;
  box-shadow:0 14px 30px rgba(255,107,0,.2) !important;
}

html body .download-popup-status{
  display:none;
  margin-top:14px;
  padding:13px 14px;
  border-radius:8px;
  border:1px solid rgba(4,183,196,.22);
  background:
    radial-gradient(circle at 96% 12%,rgba(255,107,0,.1),transparent 34%),
    #f2fcfd;
  color:var(--kn-navy);
  font-size:13px;
  font-weight:750;
  line-height:1.55;
}

html body .download-popup-status.is-visible{
  display:block;
}

html body .download-popup-status.is-info{
  border-color:rgba(255,107,0,.22);
  background:
    radial-gradient(circle at 96% 12%,rgba(4,183,196,.13),transparent 34%),
    #fff8f1;
}

@media(max-width:640px){
  html body .custom-download-modal{
    padding:14px 10px !important;
  }

  html body .download-popup-header{
    padding:24px 58px 16px 16px !important;
  }

  html body .download-popup-header h3{
    font-size:26px !important;
  }

  html body .download-popup-body{
    padding:0 16px 18px !important;
  }

  html body .download-popup-grid{
    grid-template-columns:1fr;
  }
}

/* Kollege Next themed Ask Nexi widget */
html body .ai-finder-launch{
  isolation:isolate;
  min-height:62px !important;
  padding:8px 18px 8px 8px !important;
  border:1px solid rgba(4,183,196,.28) !important;
  background:
    radial-gradient(circle at 18% 18%,rgba(255,255,255,.32),transparent 28%),
    linear-gradient(105deg,var(--kn-teal) 0%,var(--kn-navy) 48%,var(--kn-orange) 100%) !important;
  box-shadow:
    0 18px 44px rgba(7,20,63,.24),
    0 0 0 7px rgba(255,107,0,.08) !important;
  transform:translateY(0);
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease !important;
  animation:nexiFloat 3.8s ease-in-out infinite;
}

html body .ai-finder-launch:hover,
html body .ai-finder-launch:focus-visible{
  transform:translateY(-3px) scale(1.015) !important;
  filter:saturate(1.08);
  box-shadow:
    0 22px 54px rgba(7,20,63,.28),
    0 0 0 9px rgba(4,183,196,.12) !important;
}

html body .ai-finder-pulse{
  inset:-8px !important;
  border:1px solid rgba(4,183,196,.42) !important;
  box-shadow:0 0 0 0 rgba(255,107,0,.18);
  animation:nexiPulse 2.1s ease-out infinite !important;
}

html body .ai-finder-orb{
  width:46px !important;
  height:46px !important;
  background:linear-gradient(180deg,#fff 0%,#f3fcfd 100%) !important;
  color:var(--kn-navy) !important;
  box-shadow:
    inset 0 0 0 2px rgba(4,183,196,.18),
    0 8px 18px rgba(7,20,63,.16) !important;
}

html body .ai-finder-orb::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:1px dashed rgba(255,107,0,.38);
  animation:nexiOrbit 8s linear infinite;
}

html body .ai-finder-face{
  position:relative;
  z-index:1;
  color:var(--kn-navy);
}

html body .ai-finder-label{
  font-size:14px !important;
  font-weight:900 !important;
  letter-spacing:.1px;
}

html body .ai-finder-panel{
  width:min(430px,calc(100vw - 28px)) !important;
  border-radius:8px !important;
  border:1px solid rgba(4,183,196,.26) !important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(247,252,253,.98) 100%) !important;
  box-shadow:0 28px 76px rgba(7,20,63,.26) !important;
  transform-origin:bottom right;
}

html body .ai-finder.is-open .ai-finder-panel{
  animation:nexiPanelIn .28s ease both;
}

html body .ai-finder-panel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background-image:
    linear-gradient(30deg,rgba(4,183,196,.13) 12%,transparent 12.5%,transparent 87%,rgba(4,183,196,.13) 87.5%,rgba(4,183,196,.13)),
    linear-gradient(150deg,rgba(255,107,0,.11) 12%,transparent 12.5%,transparent 87%,rgba(255,107,0,.11) 87.5%,rgba(255,107,0,.11));
  background-size:72px 42px;
  mask-image:linear-gradient(180deg,#000 0%,transparent 64%);
}

html body .ai-finder-head{
  position:relative;
  z-index:1;
  padding:18px !important;
  background:
    radial-gradient(circle at 88% 10%,rgba(255,255,255,.18),transparent 26%),
    linear-gradient(105deg,var(--kn-teal) 0%,var(--kn-navy) 48%,var(--kn-orange) 100%) !important;
}

html body .ai-finder-kicker{
  color:rgba(255,255,255,.82) !important;
  letter-spacing:.06em !important;
}

html body .ai-finder-head h3,
html body .ai-results-head h4,
html body .ai-loader-title,
html body .ai-finder-copy strong{
  color:var(--kn-navy) !important;
  font-family:'Plus Jakarta Sans','Manrope',sans-serif !important;
}

html body .ai-finder-head h3{
  color:#fff !important;
}

html body .ai-finder-close{
  border:1px solid rgba(255,255,255,.46) !important;
  background:rgba(255,255,255,.16) !important;
  transition:background .18s ease,transform .18s ease !important;
}

html body .ai-finder-close:hover{
  background:rgba(255,255,255,.28) !important;
  transform:rotate(90deg);
}

html body .ai-finder-bubble{
  border-radius:8px 8px 8px 3px !important;
  border:1px solid rgba(4,183,196,.18) !important;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,107,0,.08),transparent 34%),
    #f4fbfc !important;
}

html body .ai-finder input,
html body .ai-finder select{
  border-radius:8px !important;
}

html body .ai-finder input:focus,
html body .ai-finder select:focus{
  border-color:var(--kn-teal) !important;
  outline:0 !important;
  box-shadow:0 0 0 4px rgba(4,183,196,.14) !important;
}

html body .ai-finder-primary{
  border-radius:8px !important;
  background:linear-gradient(105deg,var(--kn-teal),var(--kn-navy) 44%,var(--kn-orange) 100%) !important;
  box-shadow:0 14px 30px rgba(7,20,63,.16) !important;
  transition:transform .18s ease,box-shadow .18s ease !important;
}

html body .ai-finder-primary:hover,
html body .ai-finder-primary:focus{
  transform:translateY(-1px);
  box-shadow:0 18px 34px rgba(255,107,0,.22) !important;
}

html body .ai-loader-ring{
  border-color:rgba(4,183,196,.14) !important;
  border-top-color:var(--kn-orange) !important;
  border-right-color:var(--kn-teal) !important;
  border-bottom-color:var(--kn-navy) !important;
}

html body .ai-result-card,
html body .ai-empty-result{
  border-radius:8px !important;
  border-color:rgba(4,183,196,.16) !important;
}

html body .ai-result-tags span{
  background:#eefbfd !important;
  color:#007786 !important;
}

html body .ai-result-card a,
html body .ai-results-head button{
  color:var(--kn-orange) !important;
}

@keyframes nexiFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}

@keyframes nexiPulse{
  0%{opacity:.8;transform:scale(.96);box-shadow:0 0 0 0 rgba(4,183,196,.2)}
  70%{opacity:.18;transform:scale(1.12);box-shadow:0 0 0 10px rgba(255,107,0,0)}
  100%{opacity:0;transform:scale(1.16);box-shadow:0 0 0 14px rgba(4,183,196,0)}
}

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

@keyframes nexiPanelIn{
  from{opacity:0;transform:translateY(14px) scale(.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

/* College detail location section: address, video, map */
html body .college-location-grid{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

html body .college-location-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  border:1px solid rgba(4,183,196,.2);
  border-radius:8px;
  background:
    radial-gradient(circle at 88% 10%,rgba(4,183,196,.1),transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f8fdfe 100%);
  box-shadow:0 20px 54px rgba(7,20,63,.08);
  padding:22px;
}

html body .college-location-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.34;
  background-image:
    linear-gradient(30deg,rgba(4,183,196,.12) 12%,transparent 12.5%,transparent 87%,rgba(4,183,196,.12) 87.5%,rgba(4,183,196,.12)),
    linear-gradient(150deg,rgba(255,107,0,.1) 12%,transparent 12.5%,transparent 87%,rgba(255,107,0,.1) 87.5%,rgba(255,107,0,.1));
  background-size:68px 40px;
  mask-image:linear-gradient(180deg,#000 0%,transparent 62%);
}

html body .college-location-card-head{
  position:relative;
  z-index:1;
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:20px;
}

html body .college-location-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:8px;
  color:var(--kn-teal);
  background:#fff7ed;
  box-shadow:inset 0 0 0 1px rgba(255,107,0,.14);
  font-size:20px;
  flex:0 0 auto;
}

html body .college-location-card-head span:not(.college-location-icon){
  display:block;
  color:var(--kn-orange);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

html body .college-location-card-head h3{
  margin:2px 0 0;
  color:var(--kn-navy);
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  font-size:22px;
  line-height:1.2;
  font-weight:900;
}

html body .college-location-meta{
  position:relative;
  z-index:1;
  display:inline-flex;
  margin-bottom:14px;
  padding:7px 10px;
  border-radius:999px;
  background:#eefbfd;
  color:#007786;
  font-size:13px;
  font-weight:850;
}

html body .college-location-address{
  position:relative;
  z-index:1;
  margin:0;
  color:#52607f;
  line-height:1.68;
  font-weight:650;
}

html body .college-location-actions{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

html body .college-location-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 13px;
  border-radius:8px;
  border:1px solid rgba(4,183,196,.28);
  background:#fff;
  color:var(--kn-navy);
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}

html body .college-location-btn.is-primary,
html body .college-location-btn:hover{
  border-color:transparent;
  background:linear-gradient(105deg,var(--kn-teal),var(--kn-navy) 44%,var(--kn-orange) 100%);
  color:#fff;
}

html body .college-video-card{
  padding-bottom:18px;
}

html body .college-video-thumb{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  aspect-ratio:16/10;
  overflow:hidden;
  border:0;
  border-radius:8px;
  cursor:pointer;
  background:#07143f;
  padding:0;
  box-shadow:0 16px 34px rgba(7,20,63,.16);
}

html body .college-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.04);
  transition:transform .28s ease,opacity .28s ease;
}

html body .college-video-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,20,63,.08),rgba(7,20,63,.48));
}

html body .college-video-thumb:hover img{
  transform:scale(1.04);
  opacity:.9;
}

html body .college-video-play{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:linear-gradient(135deg,var(--kn-orange),var(--kn-gold));
  color:#fff;
  box-shadow:0 14px 30px rgba(255,107,0,.28);
  font-size:24px;
  padding-left:4px;
}

html body .college-video-note{
  position:relative;
  z-index:1;
  margin:14px 0 0;
  color:#52607f;
  font-size:13px;
  font-weight:750;
}

html body .college-video-empty{
  position:relative;
  z-index:1;
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  border:1px dashed rgba(4,183,196,.3);
  border-radius:8px;
  background:#f3fafb;
  color:#52607f;
  text-align:center;
}

html body .college-video-empty span{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:var(--kn-orange);
  box-shadow:0 10px 24px rgba(7,20,63,.08);
}

html body .college-map-card{
  padding-bottom:22px;
}

html body .college-map-frame{
  position:relative;
  z-index:1;
  height:260px;
  overflow:hidden;
  border-radius:8px;
  border:1px solid rgba(4,183,196,.18);
  background:#eef2f7;
}

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

html body .college-video-modal{
  position:fixed;
  inset:0;
  z-index:100000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

html body .college-video-modal.is-open{
  display:flex;
}

html body .college-video-modal-backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(2,8,31,.78);
  backdrop-filter:blur(7px);
}

html body .college-video-modal-card{
  position:relative;
  z-index:1;
  width:min(920px,96vw);
  aspect-ratio:16/9;
  border-radius:8px;
  overflow:hidden;
  background:#02081f;
  box-shadow:0 30px 80px rgba(2,8,31,.42);
}

html body .college-video-modal-card iframe{
  width:100%;
  height:100%;
  border:0;
}

html body .college-video-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:36px;
  height:36px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  background:rgba(7,20,63,.72);
  color:#fff;
  font-size:18px;
  font-weight:900;
}

@media(max-width:1060px){
  html body .college-location-grid{
    grid-template-columns:1fr;
  }

  html body .college-location-card{
    min-height:auto;
  }

  html body .college-location-actions{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin-top:22px;
  }
}

@media(max-width:560px){
  html body .college-location-card{
    padding:18px;
  }

  html body .college-location-card-head h3{
    font-size:19px;
  }
}

/* Final mobile navigation color pass */
@media(max-width:1024px){
  html body .site-header .main-nav{
    background:#fff !important;
    box-shadow:0 10px 28px rgba(7,20,63,.08) !important;
  }

  html body .site-header .nav-toggle{
    width:42px;
    height:42px;
    border:1px solid rgba(4,183,196,.2);
    border-radius:8px;
    background:#f4fbfc;
    align-items:center;
    justify-content:center;
    gap:5px;
  }

  html body .site-header .nav-toggle span{
    width:22px;
    height:2px;
    background:var(--kn-navy) !important;
    border-radius:99px;
  }

  html body .site-header .nav-toggle.is-active{
    background:#fff7ed;
    border-color:rgba(255,107,0,.28);
  }

  html body .site-header .nav-collapse{
    top:72px !important;
    left:5% !important;
    right:5% !important;
    max-height:calc(100vh - 90px);
    overflow-y:auto;
    padding:18px !important;
    gap:10px !important;
    border:1px solid rgba(4,183,196,.24) !important;
    border-radius:8px !important;
    background:
      radial-gradient(circle at 96% 8%,rgba(255,107,0,.22),transparent 30%),
      linear-gradient(180deg,#07143f 0%,#06165f 100%) !important;
    box-shadow:0 24px 60px rgba(7,20,63,.28) !important;
  }

  html body .site-header .nav-links{
    gap:8px !important;
  }

  html body .site-header .nav-links a{
    display:flex !important;
    align-items:center;
    min-height:46px;
    padding:12px 14px !important;
    border:1px solid rgba(255,255,255,.14) !important;
    border-radius:8px !important;
    background:rgba(255,255,255,.06) !important;
    color:#fff !important;
    font-weight:850 !important;
    box-shadow:none !important;
  }

  html body .site-header .nav-links a:hover,
  html body .site-header .nav-links a.active{
    border-color:rgba(4,183,196,.42) !important;
    background:linear-gradient(105deg,rgba(4,183,196,.25),rgba(255,255,255,.08)) !important;
    color:#fff !important;
  }

  html body .site-header .nav-cta{
    width:100%;
    min-height:46px;
    margin:12px 0 2px !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    border-radius:8px !important;
    background:linear-gradient(135deg,var(--kn-orange),var(--kn-gold)) !important;
    color:#fff !important;
    box-shadow:0 14px 26px rgba(255,107,0,.26) !important;
  }
}

@media(max-width:520px){
  html body .site-header .nav-collapse{
    left:20px !important;
    right:20px !important;
    padding:16px !important;
  }

  html body .site-header .nav-links a{
    min-height:44px;
    font-size:14px !important;
  }

  html body .site-header .nav-cta{
    min-height:44px;
  }
}

/* Final mobile ad banner pass: keep CTA visible and text responsive */
@media(max-width:700px){
  html body .home-v2 .kn-featured,
  html body .kn-featured{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
    padding:20px 0 28px !important;
  }

  html body .kn-featured-side{
    height:auto !important;
    min-height:auto !important;
    padding:16px 18px !important;
    border-radius:8px !important;
  }

  html body .kn-featured-side h2{
    font-size:13px !important;
    line-height:1.15 !important;
  }

  html body .kn-featured-side p{
    max-width:100% !important;
    font-size:13px !important;
    line-height:1.35 !important;
  }

  html body .kn-featured-list[data-home-feature-carousel],
  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
    height:330px !important;
    min-height:330px !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card{
    grid-template-columns:1fr !important;
    grid-template-rows:auto auto auto !important;
    align-content:start !important;
    justify-items:center !important;
    gap:10px !important;
    padding:18px 18px 20px !important;
    border-radius:8px !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-logo-box{
    width:min(160px,58vw) !important;
    height:70px !important;
    margin:0 auto !important;
    padding:10px 14px !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-copy{
    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card .kn-feature-kicker{
    margin-bottom:6px !important;
    font-size:11px !important;
    line-height:1.1 !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card strong:not(.kn-feature-apply){
    max-height:none !important;
    font-size:clamp(24px,7.2vw,30px) !important;
    line-height:1.05 !important;
    overflow:visible !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card p,
  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card small{
    margin-top:6px !important;
    font-size:14px !important;
    line-height:1.25 !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-apply{
    width:100% !important;
    min-width:0 !important;
    min-height:46px !important;
    margin-top:4px !important;
    padding:12px 16px !important;
    border-radius:8px !important;
    font-size:16px !important;
  }

  html body .inline-app-carousel,
  html body .inline-app-track,
  html body .inline-app-slide{
    height:330px !important;
    min-height:330px !important;
  }

  html body .inline-app-carousel{
    margin-bottom:22px !important;
  }

  html body .inline-app-slide{
    grid-template-columns:1fr !important;
    grid-template-rows:auto auto auto !important;
    align-content:start !important;
    justify-items:center !important;
    gap:10px !important;
    padding:18px 18px 20px !important;
    border-radius:8px !important;
  }

  html body .inline-app-logo-wrap{
    width:min(160px,58vw) !important;
    min-height:70px !important;
    height:70px !important;
    margin:0 auto !important;
    padding:10px 14px !important;
  }

  html body .inline-app-logo{
    max-width:100% !important;
    max-height:52px !important;
  }

  html body .inline-app-copy{
    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
  }

  html body .inline-app-kicker{
    margin-bottom:6px !important;
    font-size:11px !important;
    line-height:1.1 !important;
  }

  html body .inline-app-copy strong{
    max-height:none !important;
    font-size:clamp(24px,7.2vw,30px) !important;
    line-height:1.05 !important;
    overflow:visible !important;
  }

  html body .inline-app-copy small{
    margin-top:6px !important;
    font-size:14px !important;
    line-height:1.25 !important;
  }

  html body .inline-app-cta{
    width:100% !important;
    min-width:0 !important;
    min-height:46px !important;
    margin-top:4px !important;
    padding:12px 16px !important;
    border-radius:8px !important;
    font-size:16px !important;
  }
}

@media(max-width:420px){
  html body .kn-featured-list[data-home-feature-carousel],
  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card,
  html body .inline-app-carousel,
  html body .inline-app-track,
  html body .inline-app-slide{
    height:318px !important;
    min-height:318px !important;
  }

  html body .kn-featured-list[data-home-feature-carousel] .kn-feature-card strong:not(.kn-feature-apply),
  html body .inline-app-copy strong{
    font-size:clamp(23px,7vw,28px) !important;
  }
}

/* Final compare UI theme pass */
html body #compareBar{
  left:50% !important;
  bottom:18px !important;
  width:min(760px,calc(100% - 32px)) !important;
  transform:translateX(-50%) !important;
  padding:12px 14px !important;
  border:1px solid rgba(4,183,196,.24) !important;
  border-top:1px solid rgba(4,183,196,.24) !important;
  border-radius:8px !important;
  background:
    radial-gradient(circle at 12% 50%,rgba(4,183,196,.24),transparent 28%),
    radial-gradient(circle at 90% 20%,rgba(255,107,0,.22),transparent 30%),
    linear-gradient(135deg,#07143f 0%,#08206f 58%,#06123d 100%) !important;
  box-shadow:0 18px 44px rgba(7,20,63,.28) !important;
  color:#fff !important;
  font-family:'Plus Jakarta Sans','Manrope',Arial,sans-serif !important;
  z-index:99998 !important;
}

html body #compareBar .compare-count{
  color:rgba(255,255,255,.86) !important;
  font-size:15px !important;
  line-height:1.2 !important;
  font-weight:800 !important;
}

html body #compareBar .compare-count span{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:28px !important;
  height:28px !important;
  margin:0 4px !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.12) !important;
  color:var(--kn-gold,#ffb02e) !important;
  font-size:16px !important;
  font-weight:900 !important;
}

html body #compareBar .compare-now-btn,
html body .compare-now-btn{
  min-height:46px !important;
  padding:12px 24px !important;
  border:0 !important;
  border-radius:8px !important;
  background:linear-gradient(135deg,var(--kn-orange,#ff6b00),var(--kn-gold,#ffb02e)) !important;
  color:#fff !important;
  font-family:'Plus Jakarta Sans','Manrope',Arial,sans-serif !important;
  font-size:15px !important;
  font-weight:900 !important;
  box-shadow:0 14px 30px rgba(255,107,0,.28) !important;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease !important;
}

html body #compareBar .compare-now-btn:hover,
html body #compareBar .compare-now-btn:focus,
html body .compare-now-btn:hover,
html body .compare-now-btn:focus{
  transform:translateY(-1px) !important;
  filter:saturate(1.06) !important;
  background:linear-gradient(135deg,var(--kn-teal,#04b7c4),var(--kn-orange,#ff6b00)) !important;
  box-shadow:0 16px 34px rgba(4,183,196,.22) !important;
}

html body .compare-modal{
  background:rgba(2,8,31,.72) !important;
  backdrop-filter:blur(7px) !important;
}

html body .compare-modal-content{
  width:min(1600px,calc(100% - 48px)) !important;
  max-height:88vh !important;
  padding:0 !important;
  overflow:hidden !important;
  border:1px solid rgba(4,183,196,.18) !important;
  border-radius:8px !important;
  background:#fff !important;
  box-shadow:0 30px 90px rgba(2,8,31,.34) !important;
  font-family:'Plus Jakarta Sans','Manrope',Arial,sans-serif !important;
}

html body .compare-modal-header{
  position:sticky !important;
  top:0 !important;
  z-index:3 !important;
  min-height:74px !important;
  margin:0 !important;
  padding:20px 24px !important;
  border-bottom:1px solid rgba(4,183,196,.18) !important;
  background:
    radial-gradient(circle at 12% 20%,rgba(4,183,196,.22),transparent 28%),
    linear-gradient(135deg,#07143f,#08206f 58%,#ff6b00 160%) !important;
  color:#fff !important;
}

html body .compare-modal-header h3{
  margin:0 !important;
  color:#fff !important;
  font-family:'Plus Jakarta Sans','Manrope',Arial,sans-serif !important;
  font-size:22px !important;
  line-height:1.15 !important;
  font-weight:900 !important;
}

html body .compare-modal-header h3:before{
  content:"";
  display:inline-block;
  width:12px;
  height:12px;
  margin-right:10px;
  border-radius:3px;
  background:linear-gradient(135deg,var(--kn-teal,#04b7c4),var(--kn-gold,#ffb02e));
  box-shadow:0 0 0 6px rgba(255,255,255,.1);
  vertical-align:1px;
}

html body #closeCompareModal{
  width:42px !important;
  height:42px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(255,255,255,.22) !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.1) !important;
  color:#fff !important;
  font-size:0 !important;
  cursor:pointer !important;
  transition:background .2s ease,transform .2s ease !important;
}

html body #closeCompareModal:before{
  content:"X";
  font-size:18px;
  line-height:1;
  font-weight:900;
}

html body #closeCompareModal:hover{
  background:rgba(255,255,255,.18) !important;
  transform:rotate(4deg) !important;
}

html body #compareTableContainer{
  max-height:calc(88vh - 74px) !important;
  overflow:auto !important;
  padding:18px 24px 24px !important;
  background:linear-gradient(180deg,#f8fdff 0%,#fff 42%) !important;
}

html body #compareTableContainer .table-responsive{
  overflow:auto !important;
  border:1px solid rgba(7,20,63,.08) !important;
  border-radius:8px !important;
  background:#fff !important;
  box-shadow:0 18px 44px rgba(7,20,63,.08) !important;
}

html body .compare-table{
  margin:0 !important;
  width:100% !important;
  min-width:1180px !important;
  border-collapse:separate !important;
  border-spacing:0 !important;
  color:#07143f !important;
  font-family:'Plus Jakarta Sans','Manrope',Arial,sans-serif !important;
}

html body .compare-table th{
  position:sticky !important;
  top:0 !important;
  z-index:2 !important;
  padding:18px 16px !important;
  border:0 !important;
  border-right:1px solid rgba(255,255,255,.12) !important;
  background:linear-gradient(135deg,#07143f 0%,#08206f 56%,#04b7c4 180%) !important;
  color:#fff !important;
  font-size:14px !important;
  line-height:1.25 !important;
  font-weight:900 !important;
  text-align:center !important;
}

html body .compare-table th:first-child{
  background:linear-gradient(135deg,var(--kn-orange,#ff6b00),var(--kn-gold,#ffb02e)) !important;
}

html body .compare-table td{
  padding:14px 14px !important;
  border:0 !important;
  border-right:1px solid rgba(7,20,63,.08) !important;
  border-bottom:1px solid rgba(7,20,63,.08) !important;
  background:#fff !important;
  color:#1f2b52 !important;
  font-size:13.5px !important;
  line-height:1.35 !important;
  font-weight:650 !important;
  text-align:center !important;
}

html body .compare-table tr:nth-child(even) td{
  background:#f7fbfc !important;
}

html body .compare-table td:first-child{
  position:sticky !important;
  left:0 !important;
  z-index:1 !important;
  min-width:178px !important;
  background:#fff7ed !important;
  color:#07143f !important;
  font-weight:900 !important;
  text-align:left !important;
}

html body .compare-table tr:nth-child(even) td:first-child{
  background:#fff3e4 !important;
}

html body .compare-view-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:36px !important;
  padding:9px 16px !important;
  border-radius:8px !important;
  background:linear-gradient(135deg,var(--kn-orange,#ff6b00),var(--kn-gold,#ffb02e)) !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:900 !important;
  text-decoration:none !important;
  box-shadow:0 10px 22px rgba(255,107,0,.2) !important;
}

html body .compare-view-btn:hover{
  background:linear-gradient(135deg,var(--kn-teal,#04b7c4),var(--kn-orange,#ff6b00)) !important;
  color:#fff !important;
  box-shadow:0 12px 26px rgba(4,183,196,.2) !important;
}

@media(max-width:700px){
  html body #compareBar{
    width:calc(100% - 24px) !important;
    bottom:12px !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:10px !important;
    padding:12px !important;
  }

  html body #compareBar .compare-count{
    text-align:center !important;
    font-size:14px !important;
  }

  html body #compareBar .compare-now-btn{
    width:100% !important;
  }

  html body .compare-modal-content{
    width:calc(100% - 22px) !important;
    max-height:86vh !important;
  }

  html body .compare-modal-header{
    min-height:64px !important;
    padding:16px !important;
  }

  html body .compare-modal-header h3{
    font-size:18px !important;
  }

  html body #compareTableContainer{
    max-height:calc(86vh - 64px) !important;
    padding:12px !important;
  }

  html body .compare-table{
    min-width:920px !important;
  }

  html body .compare-table th,
  html body .compare-table td{
    padding:12px 10px !important;
    font-size:12.5px !important;
  }
}
