.fab-stack {
    position: fixed;
    left: 20px;
    bottom: 96px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fab-call {
    background: #0b2a4a;
}
.fab svg {
    width: 18px;
    height: 18px;
}
.fab-whatsapp {
    background: #25D366;
}


.fab {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: #fff;
    transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

/* ==========================
   FAQ SECTION
========================== */

.alt{
    padding:80px 0;
    background:#f8f9fc;
}

.wrap{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.section-head{
    text-align:center;
    margin-bottom:45px;
}

.section-head h2{
    position:relative;
    display:inline-block;
    font-size:38px;
    line-height:1.2;
    font-weight:700;
    color:#1d2939;
    padding-bottom:18px;
}

.section-head h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:100px;
    height:2px;
    background:#ae152d;
    border-radius:50px;
}

/* ==========================
   FAQ
========================== */

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 4px 18px rgba(0,0,0,.04);
}

.faq-item:hover{
    border-color:#ae152d;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ==========================
   Question
========================== */

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    outline:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px 60px 22px 22px;

    font-size:18px;
    font-weight:600;
    color:#111827;

    text-align:left;
    position:relative;
    transition:.3s;
}

.faq-question:hover{
    color:#3a2367;
}

/* + icon */

.faq-question::after{
    content:"+";
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f3f4f6;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:600;
    color:#3a2367;

    transition:.35s;
}

/* Active */

.faq-question[aria-expanded="true"]{
    color:#3a2367;
}

.faq-question[aria-expanded="true"]::after{
    content:"−";
    background:#3a2367;
    color:#fff;
}

/* ==========================
   Answer
========================== */

.faq-answer{
    display:none;
    padding:0 22px 22px;
    color:#555;
    font-size:16px;
    line-height:1.8;
    border-top:1px solid #3a2367;
}

/* ==========================
   Focus Accessibility
========================== */

.faq-question:focus-visible{
    outline:3px solid rgba(174,21,45,.25);
    outline-offset:-3px;
}

/* ==========================
   Mobile
========================== */

@media(max-width:768px){

    .alt{
        padding:55px 0;
    }
.fab-stack {
  
    display: none;
}
    .section-head{
        margin-bottom:30px;
    }

    .section-head h2{
        font-size:28px;
        padding-bottom:15px;
    }

    .section-head h2::after{
        width:80px;
    }

    .faq-question{
        font-size:16px;
        padding:18px 50px 18px 18px;
    }

    .faq-answer{
        padding:0 18px 18px;
        font-size:15px;
    }

    .faq-question::after{
        width:28px;
        height:28px;
        font-size:18px;
        right:15px;
    }

}

@media(max-width:480px){

    .section-head h2{
        font-size:24px;
    }

    .faq-question{
        font-size:15px;
        line-height:1.6;
    }

    .faq-answer{
        font-size:14px;
        line-height:1.7;
    }

}



:root{
  --maroon-900:#301d54;   /* deep purple — dark backgrounds */
  --maroon-800:#3a2367;
  --maroon-700:#52328a;   /* brand purple */
  --maroon-600:#6b42ab;
  --maroon-100:#e8f7fe;   /* light blue tint */
  --gold-500:#00a8ec;     /* brand blue — accent / CTA */
  --gold-400:#33bcf1;
  --orange-500:#ff8a00;   /* small accent for highlight chips, used sparingly */
  --orange-400:#ffb020;
  --cream:#f5fafd;
  --ink:#1c1b2e;
  --gray-600:#5c5b6d;
  --gray-300:#e2e2ee;
  --white:#ffffff;
  --radius:14px;
  --shadow:0 10px 30px -12px rgba(82,50,138,.22);
  --maxw:1180px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.visually-hidden{position:absolute;left:-9999px}

/* ---------- Header ---------- */
.topbar{background:var(--maroon-900);color:#f4e4c8;font-size:13px}
.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 6px 20px;
    flex-wrap: wrap;
}
.topbar a{display:flex;align-items:center;gap:6px;color:#fff;}
.topbar a:hover{color:#fff;}

header.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--white);
  box-shadow:0 2px 14px rgba(76,13,18,.08);
}

.site-header .wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 20px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:20px;color:var(--maroon-700)}
.brand-logo {
    width: 152px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}
.brand .mark{
  width:42px;height:42px;border-radius:10px;
  background:linear-gradient(145deg,var(--maroon-700),var(--maroon-900));
  color:var(--gold-400);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:800;
  flex-shrink:0;
}
.brand small{display:block;font-size:11px;font-weight:500;color:var(--gray-600);letter-spacing:.04em}
.header-cta{display:flex;align-items:center;gap:14px}
.header-cta .phone{font-weight:600;color:var(--maroon-700);font-size:14px;display:none}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 22px;border-radius:999px;font-weight:600;font-size:14.5px;
  transition:transform .15s ease,box-shadow .15s ease;
}
.btn-primary{background:linear-gradient(135deg,var(--gold-500),var(--gold-400));color:#fff;box-shadow:0 6px 18px -6px rgba(0,168,236,.45)}
.btn-primary:hover{transform:translateY(-2px)}
.btn-outline{border:1.5px solid var(--maroon-700);color:var(--maroon-700)}
.btn-outline:hover{background:var(--maroon-100)}
.btn-ghost{color:var(--maroon-700);text-decoration:underline}
@media(min-width:720px){.header-cta .phone{display:inline}}

/* ---------- Hero ---------- */
.hero{
  background:radial-gradient(circle at 85% 0%, rgba(0,168,236,.20), transparent 55%), linear-gradient(160deg,var(--maroon-900),var(--maroon-700) 70%);
  color:#fff;padding:52px 0 60px;position:relative;overflow:hidden;
}
.hero::after{
  content:"";position:absolute;right:-80px;top:-80px;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,168,236,.28),transparent 70%);
}
.hero-grid{display:grid;gap:34px;position:relative;z-index:1}
@media(min-width:900px){.hero-grid{grid-template-columns:1.15fr .85fr;align-items:center}}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);
  padding:6px 14px;border-radius:999px;font-size:12.5px;font-weight:600;letter-spacing:.03em;color:var(--gold-400);
  border:1px solid rgba(0,168,236,.35);margin-bottom:18px;
}
.hero h1{font-size:clamp(23px,4.4vw,44px);font-weight:600;line-height:1.15;margin-bottom:6px}
.hero h1 em{font-style:normal;color:var(--gold-400)}
.hero p.lead{font-size:16px;color:#ecdede;max-width:520px;margin-top:12px}
.stat-row{display:flex;gap:14px;margin:26px 0;flex-wrap:wrap}
.stat-chip{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:14px 18px;min-width:160px;backdrop-filter:blur(2px)}
.stat-chip b{display:block;font-size:24px;color:#fff;font-weight:800}
.stat-chip span{font-size:12.5px;color:#e6d6d6}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center;margin-top:8px}
.deadline-pill{background:#fff;color:var(--maroon-800);border-radius:var(--radius);padding:16px 20px;font-weight:600;box-shadow:var(--shadow)}
.deadline-pill span{display:block;font-size:12px;color:var(--gray-600);font-weight:500;text-transform:uppercase;letter-spacing:.05em}
.deadline-pill b{font-size:19px;color:var(--maroon-700)}

.hero-card {
    /* background: #fff; */
    border-radius: 20px;
    /* padding: 26px; */
    /* box-shadow: 0 25px 50px -20px rgba(0,0,0,.45); */
    color: var(--ink);
}
.hero-card h3{color:var(--maroon-700);font-size:18px;margin-bottom:14px;font-weight:700}
.hero-card .row{display:flex;justify-content:space-between;font-size:14px;padding:10px 0;border-bottom:1px dashed var(--gray-300)}
.hero-card .row:last-child{border-bottom:none}
.hero-card .row b{color:var(--maroon-800)}

/* ---------- Logo strip ---------- */
.strip{background:var(--cream);padding:34px 0;border-bottom:1px solid var(--gray-300)}
.strip h2{text-align:left;font-size:14px;letter-spacing:.06em;color:var(--gray-600);margin-bottom:20px;font-weight:600}
.logo-row{display:flex;flex-wrap:wrap;justify-content:start;gap:34px}
.logo-badge {
    width: 160px;
    height: 164px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--maroon-700);
    text-align: center;
    padding: 20px;
}
.eligibility-section{
    background:#f8fbff;
}

.eligibility-card{

    background:#fff;
    border-radius:24px;
    overflow:hidden;

    display:flex;
    align-items:center;
    gap:60px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    padding:50px;
}

.eligibility-image{
    flex:1;
}

.eligibility-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 40px;
}
.eligibility-content{
    flex:1;
}
.avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    overflow:hidden;
    background:#eef6fb;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:28px;
    font-weight:700;
    color:#00a8ec;
}

.avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.eligibility-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#eaf7fd;

    color:#00a8ec;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;
}

.eligibility-content h2{
font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--maroon-800);
    margin-top: 8px;

    position:relative;

    display:inline-block;
}

.eligibility-content h2:after{

    content:"";

    width:80px;

    height:3px;

    background:#00a8ec;

    position:absolute;

    left:0;

    bottom:-10px;
}

.eligibility-content p{

    color:#666;

    line-height:1.8;

    margin:35px 0 25px;
}

.eligibility-list{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.eligibility-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:6px;

    font-size:16px;
}

.eligibility-list i{

    color:#00a8ec;

    font-size:22px;
}

.eligibility-btns{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.btn-primary-custom{

    background:#00a8ec;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary-custom:hover{

    background:#008fc9;

    color:#fff;
}

.btn-outline-custom{

    border:2px solid #00a8ec;

    color:#00a8ec;

    padding:12px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-outline-custom:hover{

    background:#00a8ec;

    color:#fff;
}

@media(max-width:991px){

.eligibility-card{

flex-direction:column;

padding:35px 25px;

gap:30px;

text-align:center;
}
button.btn.btn-primary.sdsad {
    display: none;
}
.about-copy {
 
    text-align: justify;
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 12px;
}
.logo-badge {
    width: 100px;
    height: 74px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--maroon-700);
    text-align: center;
    padding: 20px;
}
.topbar {
   display: none;
}
.btn {

    width: 100%;
}
.tab-btn {
   
    width: 100%;
}
.eligibility-content {
    flex: 1;
    text-align: left;
}
.about-uni p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 12px;
    text-align: justify;
}
.eligibility-content h2{

font-size:30px;
}
.hero p.lead {
    font-size: 14px;
    color: #ecdede;
    /* max-width: 520px; */
    margin-top: 12px;
}
.stat-row {
    display: flex;
    gap: 7px;
    margin: 13px 0;
    flex-wrap: wrap;
}
.stat-chip b {
    display: block;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
}
.eligibility-content h2:after{

left:50%;

transform:translateX(-50%);
}

.eligibility-list li{

justify-content:flex-start;

font-size:16px;
}
.hero-card {
    display: none;
}
.mobile-forms {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: block !important;
}
.mobile-forms h3 {
    color: #333;
}
.mobile-forms p {
    color: #333;
}
.eligibility-btns{

justify-content:center;
}
}

@media(max-width:576px){

.eligibility-content h2{

font-size:26px;
}

.btn-primary-custom,
.btn-outline-custom{

width:100%;

text-align:center;
}
}
/* ---------- Section shell ---------- */
section{padding:40px 0}
.section-head{margin:0 auto 34px;text-align:left}
.section-head .tag{color:var(--gold-500);font-weight:700;font-size:13px;letter-spacing:.06em;text-transform:uppercase}
.section-head h2{font-size:clamp(19px,3vw,32px);font-weight:700;color:var(--maroon-800);margin-top:8px}
.section-head p{color:var(--gray-600);margin-top:10px;font-size:15px}
.alt{background:var(--cream)}

.section-head h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-head h2::after {
    content: "";
    position: absolute;
    left: 47px;
    bottom: -10px;
    width: 100px;
    height: 5px;
    background: #00a8ec;
    border-radius: 20px;
}

/* ---------- About ---------- */
.about-copy{margin:0 auto;display:grid;gap:16px;color:var(--gray-600);font-size:15.5px}
.about-copy .callout{
  border-left:4px solid var(--gold-500);background:var(--maroon-100);padding:16px 20px;border-radius:0 10px 10px 0;
  font-style:italic;color:var(--maroon-800);font-weight:500;
}

/* ---------- Highlights ---------- */
.grid{display:grid;gap:20px}
.cards-5 {
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
}
.card{
  background:#fff;border:1px solid var(--gray-300);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow);
  transition:transform .18s ease,box-shadow .18s ease;
}
.card:hover{transform:translateY(-4px)}
.card .ico{
  width:46px;height:46px;border-radius:12px;background:linear-gradient(135deg,var(--maroon-700),var(--maroon-900));
  color:var(--gold-400);display:flex;align-items:center;justify-content:center;font-weight:800;margin-bottom:14px;
}
.card h3{font-size:16.5px;color:var(--maroon-800);margin-bottom:8px;font-weight:700}
.card p{font-size:14px;color:var(--gray-600)}

/* ---------- Tabs (methodology / scheme / streams) ---------- */
.tabs-nav{display:flex;gap:8px;flex-wrap:wrap;justify-content:start;margin-bottom:26px}
.tab-btn{
  padding:10px 20px;border-radius:999px;font-weight:600;font-size:14px;border:1.5px solid var(--gray-300);color:var(--gray-600);
  background:#fff;transition:.15s ease;
}
.tab-btn[aria-selected="true"]{background:var(--maroon-700);color:#fff;border-color:var(--maroon-700)}
.tab-btn:hover{border-color:var(--maroon-700)}
.tab-panel{display:none;animation:fadeIn .25s ease}
.tab-panel.active{display:block}
@keyframes fadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.method-panel ul{list-style:none;display:grid;gap:10px;margin:0 auto}
.method-panel li{
  background:#fff;border:1px solid var(--gray-300);border-radius:10px;padding:13px 16px;font-size:14.5px;color:var(--gray-600);
  display:flex;gap:10px;
}
.method-panel li::before{content:"✓";color:var(--gold-500);font-weight:800;flex-shrink:0}

/* tables */
.table-scroll{overflow-x:auto;border-radius:var(--radius);border:1px solid var(--gray-300)}
table{width:100%;border-collapse:collapse;font-size:14px;min-width:560px}
thead th{background:var(--maroon-700);color:#fff;padding:12px 14px;text-align:left;font-weight:600}
tbody td{padding:11px 14px;border-bottom:1px solid var(--gray-300);color:var(--gray-600)}
tbody tr:nth-child(even){background:var(--cream)}
tbody tr:last-child td{font-weight:700;color:var(--maroon-800);background:var(--maroon-100)}
.elective-grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.elective-grid .col h4{color:var(--maroon-700);margin-bottom:10px;font-size:15px}
.elective-grid .col ol{padding-left:18px;color:var(--gray-600);font-size:14px;display:grid;gap:6px}

/* ---------- Outcomes ---------- */
.outcome-grid{display:grid;gap:14px}
.outcome-item{display:flex;gap:12px;background:#fff;border:1px solid var(--gray-300);border-radius:10px;padding:14px 16px}
.outcome-item b{color:var(--maroon-700);flex-shrink:0}
.outcome-item span{color:var(--gray-600);font-size:14.5px}

/* ---------- Certificate ---------- */
.cert-grid{display:grid;gap:34px}
@media(min-width:860px){.cert-grid{grid-template-columns:1fr .9fr;align-items:center}}
.cert-h2{font-size:clamp(24px,3vw,32px);font-weight:800;color:var(--ink);margin:10px 0 16px;line-height:1.25}
.cert-h2 mark{background:var(--gold-500);color:#fff;padding:2px 12px;border-radius:6px;font-weight:800}
.cert-grid p{color:var(--gray-600);font-size:14.5px;margin-bottom:10px}
.cert-list{list-style:none;display:grid;gap:8px;margin:10px 0 20px}
.cert-list li{font-size:14.5px;color:var(--gray-600);padding-left:22px;position:relative}
.cert-list li::before{content:"✓";position:absolute;left:0;color:var(--gold-500);font-weight:800}
.cert-visual{background:#fff;border-radius:16px;box-shadow:var(--shadow);padding:14px;max-width:420px;margin:0 auto}

/* ---------- Hiring companies slider ---------- */
.logo-slider{display:flex;align-items:center;gap:10px;max-width:1000px;margin:0 auto}
.slider-arrow{
  flex-shrink:0;width:40px;height:40px;border-radius:50%;background:#fff;border:1.5px solid var(--gray-300);
  color:var(--maroon-700);font-size:20px;display:flex;align-items:center;justify-content:center;transition:.15s ease;
}
.slider-arrow:hover{background:var(--maroon-700);color:#fff;border-color:var(--maroon-700)}
.slider-track-wrap{flex:1;overflow:hidden;border-radius:999px;border:1.5px solid var(--gray-300);background:var(--cream);padding:18px 10px}
.logo-track{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;-ms-overflow-style:none}
.logo-track::-webkit-scrollbar{display:none}
.logo-item{
  scroll-snap-align:start;flex:0 0 150px;height:64px;background:#fff;border-radius:10px;
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:15px;color:var(--maroon-800);
  box-shadow:0 4px 12px -6px rgba(28,27,46,.15);
}
.slider-dots{display:flex;justify-content:center;gap:8px;margin-top:18px}
.slider-dots button{width:9px;height:9px;border-radius:50%;background:var(--gray-300);transition:.15s ease}
.slider-dots button[aria-current="true"]{background:var(--maroon-700);width:22px;border-radius:5px}

/* ---------- Fees ---------- */
.fee-grid{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.fee-card{background:#fff;border-radius:var(--radius);border:1px solid var(--gray-300);padding:24px;text-align:center;box-shadow:var(--shadow)}
.fee-card .label{font-size:13px;text-transform:uppercase;letter-spacing:.04em;color:var(--gray-600);font-weight:600}
.fee-card .amount{font-size:26px;font-weight:800;color:var(--maroon-700);margin:8px 0}
.fee-card .strike{text-decoration:line-through;color:#a89a9a;font-size:15px;font-weight:500}
.fee-banner{margin:28px 0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--cream)}
.fee-banner img{width:100%;height:auto;display:block}
.fee-includes{display:grid;gap:24px;margin-top:30px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.fee-includes ul{list-style:none;display:grid;gap:8px;font-size:14.5px;color:var(--gray-600)}
.fee-includes li::before{content:"• ";color:var(--gold-500);font-weight:800}
.fee-includes h4{color:var(--maroon-800);margin-bottom:10px}

.payment-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));margin-top:20px}
.payment-grid .card b{color:var(--gold-500)}

/* ---------- Faculty ---------- */
.faculty-grid{display:grid;gap:22px;grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
.faculty-card{background:#fff;border:1px solid var(--gray-300);border-radius:var(--radius);padding:20px;text-align:center;box-shadow:var(--shadow)}
.avatar{
  width:78px;height:78px;border-radius:50%;margin:0 auto 12px;
  background:linear-gradient(135deg,var(--maroon-700),var(--maroon-900));color:var(--gold-400);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:22px;
}
.faculty-card h3{font-size:15px;color:var(--maroon-800)}
.faculty-card .role{font-size:12.5px;color:var(--gold-500);font-weight:600;margin-bottom:10px}
.faculty-card p{font-size:13px;color:var(--gray-600);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.faculty-card button{margin-top:10px;font-size:13px;font-weight:700;color:var(--maroon-700);text-decoration:underline}

/* ---------- Jobs ---------- */
.job-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}
.job-chip{background:#fff;border:1px solid var(--gray-300);border-left:4px solid var(--gold-500);border-radius:10px;padding:16px;font-weight:600;color:var(--maroon-800);font-size:14.5px}
.sss img {
    background: #fff;
    width: 200px;
    height: 70px;
}
.with-icon input, .with-icon select {
    display: block;
    width: 100%;
    height: auto;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 0.5rem;
    color: #333;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn_submit {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: #fff;
    font-size: 18px;
    width: 100%;
    border-radius: 0.5rem;
    padding: 10px 2rem;
}
.d-none {
    display: none!important;
}
/* ---------- About university ---------- */
.about-uni{display:grid;gap:30px}
@media(min-width:860px){.about-uni{grid-template-columns:1fr 1fr;align-items:center}}
.about-uni p{color:var(--gray-600);font-size:15px;margin-bottom:12px}


/* ---------- FAQ ---------- */
.faq{max-width:760px;margin:0 auto;display:grid;gap:10px}
.faq-item{border:1px solid var(--gray-300);border-radius:12px;overflow:hidden;background:#fff}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;padding:16px 18px;text-align:left;
  font-weight:600;color:var(--maroon-800);font-size:15px;
}
.faq-q .plus{transition:transform .2s ease;color:var(--gold-500);font-size:20px;flex-shrink:0;margin-left:10px}
.faq-item[aria-expanded="true"] .plus{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease}
.faq-a p{padding:0 18px 16px;color:var(--gray-600);font-size:14.5px}

/* ---------- Final CTA ---------- */
.cta-band{background:linear-gradient(135deg,var(--maroon-800),var(--maroon-900));color:#fff;text-align:center;padding:52px 0}
.cta-band h2{font-size:clamp(18px,3vw,30px);font-weight:800;margin-bottom:10px}
.cta-band p{color:#ecdede;max-width:520px;margin:0 auto 22px}
.mobile-forms {
    display: none;
}
/* ---------- Footer ---------- */
footer{background:var(--maroon-900);color:#e6d6d6;padding:46px 0 20px;font-size:14px}
.footer-grid{display:grid;gap:26px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
footer h4{color:#fff;margin-bottom:12px;font-size:15px}
footer a:hover{color:var(--gold-400)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:30px;padding-top:16px;text-align:center;font-size:13px;color:#c9b8b8}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{
  position:fixed;bottom:0;left:0;right:0;z-index:60;display:flex;background:#fff;box-shadow:0 -6px 20px rgba(0,0,0,.15);
}
.mobile-cta a{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:13px 0;font-weight:700;font-size:14px}
.mobile-cta a.call{background:var(--maroon-700);color:#fff}
.mobile-cta a.chat{background:var(--gold-500);color:var(--maroon-900)}
@media(min-width:900px){.mobile-cta{display:none}}

/* ---------- Back to top ---------- */
.top-btn{
  position:fixed;right:18px;bottom:78px;z-index:55;width:42px;height:42px;border-radius:50%;background:var(--maroon-700);
  color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow);opacity:0;pointer-events:none;transition:.2s ease;
}
.top-btn.show{opacity:1;pointer-events:auto}
@media(min-width:900px){.top-btn{bottom:24px}}

/* ---------- Modal ---------- */
.modal-overlay{
  position:fixed;inset:0;background:rgba(20,6,7,.6);display:none;align-items:center;justify-content:center;z-index:100;padding:16px;
}
.modal-overlay.open{display:flex}
.modal {
    background: #fff;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    max-height: 99vh;
    overflow-y: auto;
    padding: 20px;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
input::placeholder,
textarea::placeholder {
    color: #333;
    opacity: 1; /* Firefox */
}

/* Chrome, Safari */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #333;
}

/* Firefox */
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

/* Internet Explorer */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #333;
}

/* Microsoft Edge (Legacy) */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #333;
}
.modal-close{position:absolute;top:14px;right:14px;width:32px;height:32px;border-radius:50%;background:var(--cream);font-size:18px;color:var(--gray-600);display:flex;align-items:center;justify-content:center}
.modal h3{color:var(--maroon-800);font-size:20px;margin-bottom:6px;font-weight:800}
.modal p.sub{color:var(--gray-600);font-size:13.5px;margin-bottom:18px}
.field{margin-bottom:14px}
.field label{display:block;font-size:12.5px;font-weight:600;color:var(--gray-600);margin-bottom:6px}
.field select,.field input{
  width:100%;padding:11px 13px;border:1.5px solid var(--gray-300);border-radius:9px;font-size:14px;font-family:inherit;color:var(--ink);
}
.field select:focus,.field input:focus{outline:2px solid var(--gold-500);border-color:var(--gold-500)}
.modal .btn-primary{width:100%;margin-top:6px}
.consent{font-size:11.5px;color:#a89a9a;margin-top:12px;line-height:1.5}
.form-step{display:none}
.form-step.active{display:block}

/* faculty bio modal */
#facultyModal .modal{max-width:560px}
#facultyModal .avatar{width:64px;height:64px;font-size:18px;margin:0 0 12px}
#facultyModal h3{margin-bottom:2px}
#facultyModal .role{color:var(--gold-500);font-weight:600;font-size:13px;margin-bottom:14px}
#facultyModal p.bio{font-size:14px;color:var(--gray-600)}

@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}