*,*::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;
}
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:6px;height:6px;background:#e74c3c;border-radius:50%;
  animation:blink 2s infinite;
}
.section-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(192,57,43,0.25);
  border:1px solid rgba(192,57,43,0.5);
  color: var(--red-dark);
  padding:6px 16px;border-radius:30px;
  font-size:12px;font-weight:500;letter-spacing:1.2px;
  text-transform:uppercase;margin-bottom:22px;width:fit-content;
}
.section-eyebrow span{
  width:6px;height:6px;background:#e74c3c;border-radius:50%;
  animation:blink 2s infinite;
}
.dark-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(255 255 255 / 22%);
    border: 1px solid rgb(255 255 255 / 50%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: fit-content;
}
.dark-section-eyebrow span{
  width:6px;height:6px;background:#e74c3c;border-radius:50%;
  animation:blink 2s infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}
.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,5.5vw,70px);
  font-weight:700;line-height:1.07;
  color:#fff;letter-spacing:-0.5px;
  margin-bottom:20px;
}
.hero-title em{font-style:italic;color:#96c22b}
.hero-desc{
  font-size:17px;font-weight:300;
  color:rgba(255,255,255,0.75);
  line-height:1.75;
  margin-bottom:36px;
  max-width: 700px;
}
.hero-btns{display:flex;gap:14px;}
.btn-red{
  background:var(--red-dark);color:#fff;
  padding:14px 32px;border-radius:7px;
  font-size:15px;font-weight:600;
  text-decoration:none;
  transition:background 0.2s,transform 0.15s;
  display:inline-block;
  border:var(--red);
}
.btn-red:hover{background:var(--green);transform:translateY(-2px); color:#000}
.btn-ghost{
  border:2px solid rgba(255,255,255,0.4);color:#fff;
  padding:12px 28px;border-radius:7px;
  font-size:15px;font-weight:400;
  text-decoration:none;
  transition:border-color 0.2s,background 0.2s;
  display:inline-block;
}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,0.08)}

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

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

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

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

/* ═══════════════════════════════════
   SECTION COMMON
═══════════════════════════════════ */
.section{padding:30px 5%}
.section-alt{background:var(--off-white)}
.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:40px 16px;
  overflow-y:auto;
}
.consult-modal.is-open{display:flex}
.consult-modal-backdrop{
  position:fixed;inset:0;
  background:rgba(10,10,20,0.7);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.consult-modal-card{
  position:relative;z-index:1;
  background:var(--white);
  border-radius:16px;
  width:100%;max-width:460px;
  padding:6px 6px 6px 6px;
  box-shadow:0 30px 80px rgba(0,0,0,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:14px;right:14px;
  width:36px;height:36px;
  border:none;background:var(--gray-pale);
  color:var(--dark);
  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(--red);color:#fff;transform:rotate(90deg)}
.consult-modal-header{margin-bottom:24px;padding-right:36px}
.consult-modal-header .form-title{margin-bottom:6px}
.consult-modal-header .form-sub{margin-bottom:0}
body.modal-open{overflow:hidden}

@media (max-width:640px){
  .consult-modal-card{padding:32px 22px 24px}
  .contact-cta-card{padding:32px 22px}
}
.form-title{
  font-family:'Playfair Display',serif;
  font-size:28px;font-weight:700;color:var(--dark);margin-bottom:8px;
}
.form-sub{font-size:14px;color:var(--gray);margin-bottom:32px}
.step-indicators{display:flex;gap:8px;margin-bottom:28px}
.step-dot{
  flex:1;height:4px;border-radius:2px;
  background:var(--gray-light);
  transition:background 0.3s;
}
.step-dot.done{background:var(--red)}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
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:var(--off-white);
    border:1px solid #eee;
    border-radius:18px;
    padding:20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media(max-width:768px){

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

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

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

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

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

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

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

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

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

.news-list-title{

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

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

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

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

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

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

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

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

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

@media(max-width:768px){

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

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

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

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

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

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

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

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

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

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

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

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

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

.directory-location{
    color:#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: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);
}

.consult-form,
.consult-modal-card{
  border-radius:24px;
}

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

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus,
.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%;
  }
}

/* =====================================================
   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:
    linear-gradient(rgba(240,135,59,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(240,135,59,.08) 1px,transparent 1px);
  background-size:44px 44px;
  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:
    linear-gradient(rgba(241,90,36,.12) 1px,transparent 1px),
    linear-gradient(90deg,rgba(241,90,36,.12) 1px,transparent 1px);
  background-size:42px 42px;
  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),
    linear-gradient(rgba(241,90,36,.075) 1px,transparent 1px),
    linear-gradient(90deg,rgba(241,90,36,.075) 1px,transparent 1px);
  background-size:210px 210px,260px 260px,230px 230px,46px 46px,46px 46px;
  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:
    linear-gradient(rgba(241,90,36,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(241,90,36,.045) 1px,transparent 1px);
  background-size:44px 44px;
  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;
}

.medical-tourism-page .footer-cta{
  display:none;
}

.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),
    linear-gradient(rgba(241,90,36,.12) 1px,transparent 1px),
    linear-gradient(90deg,rgba(241,90,36,.12) 1px,transparent 1px) !important;
  background-size:220px 220px,270px 270px,240px 240px,44px 44px,44px 44px !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%;
  }
}
