 
:root{
    --navy:#082b45;
    --blue:#0c6d91;
    --teal:#1ca8a0;
    --ink:#122331;
    --muted:#667785;
    --line:#dce7ed;
    --soft:#f4f8fa;
    --white:#fff;
    --shadow:0 18px 55px rgba(8,43,69,.10);
    --radius:18px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    color:var(--ink);
    line-height:1.7;
    background:#fff;
}

h1,h2,h3,h4{
    font-family:'Plus Jakarta Sans',Inter,sans-serif;
    line-height:1.18;
    margin:0 0 18px;
    color:var(--navy);
}

h1{
    font-size:clamp(2.35rem,5vw,4.7rem);
    letter-spacing:-.045em;
}

h2{
    font-size:clamp(1.9rem,3vw,3rem);
    letter-spacing:-.035em;
}

h3{
    font-size:1.2rem;
}

p{
    color:var(--muted);
    margin:0 0 18px;
}

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


/* =========================================================
   TOP BAR
========================================================= */

.topbar{
    background:var(--navy);
    color:#d9edf4;
    font-size:12px;
}

.topbar-in{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.site-header{
    min-height:110px;
    height:110px;
    background:#fff;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-wrap{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}


/* =========================================================
   CISAT LOGO
========================================================= */

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--navy);
    min-width:0;
    flex-shrink:0;
}

.brand img{
    display:block;
    width:550px;
    height:auto;
    max-width:100%;
    object-fit:contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav{
    display:flex;
    align-items:center;
    gap:2px;
    height:100%;
}

.nav-link{
    appearance:none;
    border:0;
    background:transparent;
    text-decoration:none;
    color:#304452;
    font:600 14px Inter;
    display:flex;
    align-items:center;
    gap:5px;
    padding:30px 10px;
    height:100%;
    cursor:pointer;
}

.nav-link:hover,
.nav-link.active{
    color:var(--teal);
}

.nav-link i{
    font-style:normal;
    font-size:15px;
    transition:.2s;
}

.nav-item{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown{
    position:absolute;
    top:calc(100% - 1px);
    left:50%;
    transform:translate(-50%,10px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    border-radius:0 0 16px 16px;
    padding:18px;
    transition:.18s ease;
    z-index:1002;
}

.dropdown.mega{
    width:min(780px,90vw);
    display:grid;
    grid-template-columns:1fr 1fr 1.1fr;
    gap:10px;
}

.dropdown.simple{
    width:250px;
    left:0;
    transform:translateY(10px);
    padding:10px;
}

.dropdown a{
    display:block;
    text-decoration:none;
    color:#344b59;
    font-size:14px;
    font-weight:600;
    padding:9px 11px;
    border-radius:8px;
}

.dropdown a:hover{
    background:#eef8f8;
    color:var(--teal);
}

.dropdown h4{
    font-size:14px;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin:6px 10px 10px;
    color:#80909a;
}

.drop-feature{
    background:linear-gradient(145deg,#082b45,#0d6e8f);
    border-radius:13px;
    color:#fff;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.drop-feature strong{
    font-family:'Plus Jakarta Sans';
    font-size:18px;
    line-height:1.3;
    margin-bottom:8px;
}

.drop-feature span{
    font-size:12px;
    color:#d4e9ee;
}

.mini-btn{
    margin-top:16px!important;
    background:#fff!important;
    color:var(--navy)!important;
    text-align:center;
}

.nav-item.open>.dropdown,
.nav-item:hover>.dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
}

.nav-item:hover>.dropdown.simple{
    transform:translateY(0);
}

.nav-item.open>.drop-toggle i{
    transform:rotate(180deg);
}


/* =========================================================
   BUTTONS
========================================================= */

.apply-btn,
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:9px;
    padding:12px 18px;
    font-size:13px;
    font-weight:800;
    border:1px solid transparent;
    cursor:pointer;
}

.apply-btn{
    background:var(--teal);
    color:#fff;
    margin-left:8px;
}

.apply-btn:hover{
    background:var(--navy);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.nav-toggle{
    display:none;
    border:0;
    background:transparent;
    width:44px;
    height:44px;
    padding:10px;
}

.nav-toggle span{
    display:block;
    height:2px;
    background:var(--navy);
    margin:5px 0;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    min-height:650px;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(4,28,46,.92) 0%,
        rgba(4,28,46,.70) 45%,
        rgba(4,28,46,.18) 100%
    );
}

.hero-content{
    position:relative;
    color:#fff;
    padding:100px 0;
}

.hero-content h1{
    color:#fff;
    max-width:850px;
}

.hero-content h1 em{
    color:#59d1c7;
    font-style:normal;
}

.hero-content p{
    color:#dcebf0;
    max-width:650px;
    font-size:17px;
}

.eyebrow,
.kicker{
    font-size:11px;
    letter-spacing:.17em;
    font-weight:800;
    color:var(--teal);
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:14px;
}

.hero .eyebrow{
    color:#65d6ce;
}

.hero-actions{
    display:flex;
    gap:12px;
    margin-top:28px;
}

.btn.primary{
    background:var(--teal);
    color:#fff;
}

.btn.primary:hover{
    background:var(--navy);
}

.btn.light{
    background:#fff;
    color:var(--navy);
}

.btn.light:hover{
    background:#eaf7f6;
}

.btn.secondary{
    background:#eef6f8;
    color:var(--navy);
}


/* =========================================================
   STATS
========================================================= */

.stats{
    background:var(--navy);
    color:#fff;
}

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

.stat-grid>div{
    padding:27px 18px;
    border-right:1px solid rgba(255,255,255,.12);
    display:flex;
    flex-direction:column;
}

.stat-grid>div:last-child{
    border:0;
}

.stat-grid strong{
    font:800 30px 'Plus Jakarta Sans';
    color:#fff;
}

.stat-grid span{
    font-size:12px;
    color:#b8d1db;
}


/* =========================================================
   SECTIONS
========================================================= */

.section{
    padding:95px 0;
}

.soft{
    background:var(--soft);
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.image-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    height:400px;
}

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

.text-link{
    color:var(--blue);
    font-weight:800;
    text-decoration:none;
    font-size:13px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:32px;
}


/* =========================================================
   COURSES
========================================================= */

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

.course-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:26px;
    min-height:245px;
    display:flex;
    flex-direction:column;
    transition:.2s;
    box-shadow:0 8px 25px rgba(8,43,69,.04);
}

.course-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
    border-color:#bcdfe2;
}

.course-card>span,
.faculty-card span,
.news-tag{
    font-size:10px;
    letter-spacing:.12em;
    font-weight:800;
    color:var(--teal);
    text-transform:uppercase;
}

.course-card p{
    font-size:14px;
}

.course-card a{
    margin-top:auto;
    color:var(--navy);
    font-size:14px;
    font-weight:800;
    text-decoration:none;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-band{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

.feature-list{
    border-top:1px solid var(--line);
}

.feature-list>div,
.steps>div{
    display:flex;
    gap:20px;
    padding:22px 0;
    border-bottom:1px solid var(--line);
}

.feature-list b,
.steps b{
    font-size:12px;
    color:var(--teal);
}

.feature-list span,
.steps span{
    display:flex;
    flex-direction:column;
}

.feature-list strong,
.steps strong{
    font-size:14px;
    color:var(--navy);
}

.feature-list small,
.steps small{
    font-size:12px;
    color:var(--muted);
}


/* =========================================================
   CTA
========================================================= */

.cta{
    padding:80px 0;
    background:linear-gradient(135deg,var(--navy),#0c6d91);
    text-align:center;
}

.cta h2{
    color:#fff;
}

.cta p{
    color:#d9ebef;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero{
    padding:80px 0 75px;
    background:linear-gradient(180deg,#f3f8fa,#fff);
    border-bottom:1px solid var(--line);
}

.page-hero p{
    max-width:720px;
    font-size:16px;
}


/* =========================================================
   CARDS
========================================================= */

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

.cards-3 article,
.why-grid>div{
    border:1px solid var(--line);
    border-radius:16px;
    padding:28px;
    background:#fff;
}

.number{
    color:var(--teal);
    font-weight:800;
    font-size:12px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:30px;
}

.why-grid b{
    color:var(--teal);
    font-size:11px;
}


/* =========================================================
   FACULTY
========================================================= */

.faculty-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:28px;
}

.faculty-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    transition:.2s;
}

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

.faculty-card img{
    width:80%;
    height:230px;
    object-fit:cover;
    object-position:center top;
    background:#edf3f5;
}

.faculty-card div{
    padding:18px;
}

.faculty-card h3{
    font-size:15px;
    margin:7px 0;
}

.faculty-card small{
    color:var(--muted);
    font-size:11px;
}


/* =========================================================
   LEADERSHIP / MESSAGES
========================================================= */

.message-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:70px;
    align-items:start;
}

.leader-placeholder{
    height:360px;
    border-radius:20px;
    background:linear-gradient(145deg,#0b334e,#0c8790);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    color:#fff;
    box-shadow:var(--shadow);
}

.monogram{
    font:800 35px 'Plus Jakarta Sans';
    letter-spacing:.08em;
}

.leader-placeholder span{
    margin-top:10px;
    color:#bce5e3;
    font-size:12px;
}

.message{
    max-width:760px;
}

.message p{
    font-size:16px;
}

.signature{
    margin-top:30px;
    font-weight:800;
    color:var(--navy);
}

.signature small{
    font-weight:500;
    color:var(--muted);
}


/* =========================================================
   DETAILS
========================================================= */

.detail-grid{
    display:grid;
    grid-template-columns:1fr 330px;
    gap:70px;
}

.side-card{
    border:1px solid var(--line);
    border-radius:18px;
    padding:28px;
    height:max-content;
    position:sticky;
    top:120px;
    background:#fff;
}

.side-card strong{
    font-size:10px;
    color:var(--teal);
    letter-spacing:.12em;
}

.side-card h3{
    margin:10px 0 24px;
}

.side-card .text-link{
    display:block;
    margin-top:20px;
}

.check-list{
    padding:0;
    list-style:none;
}

.check-list li{
    padding:12px 0;
    border-bottom:1px solid var(--line);
    font-size:14px;
}

.check-list li:before{
    content:'✓';
    color:var(--teal);
    font-weight:800;
    margin-right:10px;
}


/* =========================================================
   PORTALS
========================================================= */

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

.portal{
    border:1px solid var(--line);
    border-radius:18px;
    padding:32px;
    min-height:300px;
    background:#fff;
}

.portal-icon{
    width:50px;
    height:50px;
    border-radius:13px;
    background:#e9f7f6;
    color:var(--teal);
    display:grid;
    place-items:center;
    font-weight:800;
    margin-bottom:28px;
}

.portal .btn{
    margin-top:10px;
}


/* =========================================================
   ADMISSIONS / CONTACT
========================================================= */

.admission-grid,
.contact-grid{
    display:grid;
    grid-template-columns:1fr 440px;
    gap:80px;
}

.contact-form{
    border:1px solid var(--line);
    border-radius:18px;
    padding:30px;
    background:#fff;
    box-shadow:0 10px 35px rgba(8,43,69,.05);
}

.contact-form label{
    display:block;
    font-size:12px;
    font-weight:700;
    color:var(--navy);
    margin:13px 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    display:block;
    margin-top:6px;
    border:1px solid #ccdbe2;
    border-radius:8px;
    padding:12px;
    font:14px Inter;
    outline:none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--teal);
    box-shadow:0 0 0 3px rgba(28,168,160,.1);
}

.contact-item{
    display:flex;
    flex-direction:column;
    padding:18px 0;
    border-bottom:1px solid var(--line);
}

.contact-item b{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--teal);
}

.contact-item span{
    font-size:14px;
    color:var(--muted);
}


/* =========================================================
   NEWS
========================================================= */

.news-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:18px;
}

.news-card{
    border:1px solid var(--line);
    border-radius:18px;
    padding:30px;
    min-height:250px;
}

.news-card.featured{
    background:linear-gradient(145deg,#082b45,#0b6d8d);
    color:#fff;
}

.news-card.featured h2,
.news-card.featured p{
    color:#fff;
}

.news-card a{
    color:var(--teal);
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#061f32;
    color:#b7ccd5;
    padding:65px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.6fr .8fr .9fr 1.1fr;
    gap:45px;
    padding-bottom:50px;
}

.footer h4{
    color:#fff;
    font-size:13px;
}

.footer a{
    display:block;
    color:#b7ccd5;
    text-decoration:none;
    font-size:12px;
    margin:8px 0;
}

.footer a:hover{
    color:#59d1c7;
}

.footer p{
    font-size:12px;
    color:#a9c1ca;
}

.footer-brand{
    color:#fff;
    margin-bottom:18px;
}

.footer-brand b{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    font-size:11px;
    color:#78939e;
}

.to-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:var(--teal);
    color:#fff;
    font-weight:800;
    display:none;
    z-index:999;
}

.to-top.show{
    display:block;
}


/* =========================================================
   2026–27 PROGRAMME CATALOGUE
========================================================= */

.hero-note{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:28px;
}

.hero-note span{
    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:8px 11px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    color:#e8fbfb;
    background:rgba(255,255,255,.06);
}

.dark-band{
    background:#071d32;
    color:#d8e8ee;
}

.dark-band h2,
.dark-band p{
    color:#fff;
}

.theme-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
    margin-top:30px;
}

.theme-grid div{
    padding:22px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    background:rgba(255,255,255,.04);
}

.theme-grid b{
    display:block;
    color:#58d1c8;
    font-size:12px;
    letter-spacing:.12em;
    margin-bottom:12px;
}

.theme-grid span{
    font-weight:700;
    font-size:14px;
    color:#e4f0f4;
}

.course-card.large{
    min-height:310px;
}

.course-meta{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin:18px 0;
}

.course-meta span,
.course-meta b{
    font-size:11px;
    color:#55707d;
    background:#f1f6f8;
    padding:7px 9px;
    border-radius:999px;
}

.fee-box{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:50px;
    align-items:start;
    background:#f4f8fa;
    border:1px solid var(--line);
    border-radius:24px;
    padding:38px;
}

.fee-table{
    border:1px solid var(--line);
    background:#fff;
    border-radius:14px;
    overflow:hidden;
}

.fee-table div{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:15px 18px;
    border-bottom:1px solid var(--line);
    font-size:13px;
}

.fee-table div:last-child{
    border-bottom:0;
}

.fee-table span{
    color:#4c6571;
}

.fee-table strong{
    color:var(--navy);
    white-space:nowrap;
}

.course-hero{
    padding-bottom:65px;
}

.hero-facts{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:35px;
    max-width:900px;
}

.hero-facts span{
    padding:17px 18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:12px;
    color:#d8ebf0;
    font-size:12px;
}

.hero-facts b{
    display:block;
    color:#fff;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:4px;
}

.detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 350px;
    gap:60px;
}

.detail-section{
    padding:0 0 48px;
    margin-bottom:48px;
    border-bottom:1px solid var(--line);
}

.detail-section:last-child{
    border-bottom:0;
}

.detail-section>h2{
    max-width:850px;
}

.tag-list,
.career-grid{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.tag-list span{
    background:#eaf7f6;
    color:#087f79;
    border:1px solid #cceae8;
    padding:9px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

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

.semester-grid article{
    border:1px solid var(--line);
    border-radius:16px;
    padding:22px;
    background:#fff;
}

.semester-grid h3{
    font-size:15px;
    color:var(--teal);
}

.semester-grid ul{
    padding-left:19px;
    margin:0;
}

.semester-grid li{
    font-size:13px;
    color:#5e727d;
    margin:7px 0;
}

.career-grid span{
    padding:11px 13px;
    border:1px solid var(--line);
    border-radius:10px;
    font-size:12px;
    font-weight:700;
    color:#36505d;
    background:#fbfdfe;
}

.check-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.check-grid div{
    padding:14px;
    border-radius:10px;
    background:#f5f9fa;
    color:#405963;
    font-size:13px;
    font-weight:600;
}

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

.side-card.sticky{
    position:sticky;
    top:120px;
}

.side-card.note{
    background:#f5f9fa;
}

.side-card h3{
    font-size:20px;
}

.side-stat{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:13px 0;
    border-bottom:1px solid var(--line);
    font-size:12px;
}

.side-stat span{
    color:#70838c;
}

.side-stat strong{
    color:var(--navy);
    text-align:right;
}

.btn.full{
    width:100%;
    margin:20px 0 12px;
}

.steps>div{
    display:flex;
    gap:18px;
    padding:18px 0;
    border-bottom:1px solid var(--line);
}

.steps b{
    width:40px;
    height:40px;
    border-radius:10px;
    background:#eaf7f6;
    color:var(--teal);
    display:grid;
    place-items:center;
    font-size:12px;
    flex:none;
}

.steps strong,
.steps small{
    display:block;
}

.steps strong{
    font-size:14px;
    color:var(--navy);
}

.steps small{
    font-size:12px;
    color:#70818a;
    margin-top:3px;
}

.kicker{
    display:inline-block;
}


/* =========================================================
   TABLET / LAPTOP
========================================================= */

@media(max-width:1199px){

    .brand img{
        width:550px;
    }

}


/* =========================================================
   1050px
========================================================= */

@media(max-width:1050px){

    .main-nav{
        gap:0;
    }

    .nav-link{
        padding-left:7px;
        padding-right:7px;
        font-size:12px;
    }

    .apply-btn{
        padding:10px 12px;
    }

    .faculty-grid{
        grid-template-columns:repeat(3,1fr);
    }

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

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

    .brand img{
        width:320px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media(max-width:820px){

    .topbar-in{
        justify-content:center;
    }

    .topbar-in span:last-child{
        display:none;
    }

    .site-header{
        height:78px;
        min-height:78px;
    }

    .nav-wrap{
        gap:12px;
    }

    .brand{
        min-width:0;
        flex-shrink:1;
    }

    .brand img{
        width:240px;
        max-width:100%;
        height:auto;
    }

    .brand small{
        display:none;
    }

    .brand b{
        font-size:18px;
    }

    .nav-toggle{
        display:block;
        flex-shrink:0;
    }

    .main-nav{
        position:absolute;
        top:78px;
        left:0;
        right:0;
        height:auto;
        max-height:calc(100vh - 78px);
        overflow:auto;
        background:#fff;
        border-top:1px solid var(--line);
        display:block;
        padding:8px 20px 20px;
        box-shadow:0 20px 30px rgba(0,0,0,.08);
        opacity:0;
        visibility:hidden;
        transform:translateY(-8px);
        transition:.2s;
    }

    .main-nav.open{
        opacity:1;
        visibility:visible;
        transform:none;
    }

    .nav-link,
    .apply-btn{
        width:100%;
        height:auto;
        justify-content:space-between;
        padding:14px 4px;
        border-bottom:1px solid #edf2f4;
    }

    .apply-btn{
        margin:10px 0 0;
        text-align:center;
    }

    .nav-item{
        height:auto;
        display:block;
    }

    .nav-item>.nav-link{
        display:flex;
    }

    .dropdown,
    .dropdown.mega,
    .dropdown.simple{
        position:static;
        width:100%;
        transform:none!important;
        display:block;
        box-shadow:none;
        border:0;
        border-radius:0;
        padding:0 0 7px;
        background:#f7fafb;
        max-height:0;
        overflow:hidden;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transition:max-height .25s ease;
    }

    .nav-item.open>.dropdown{
        max-height:900px;
    }

    .dropdown a{
        padding:10px 20px;
        font-size:12px;
    }

    .dropdown h4{
        margin:12px 20px 6px;
    }

    .drop-feature{
        margin:12px;
        border-radius:10px;
    }

    .hero{
        min-height:620px;
    }

    .hero-content{
        padding:80px 0;
    }

    .hero-content p{
        font-size:15px;
    }

    .split,
    .feature-band,
    .admission-grid,
    .contact-grid,
    .message-layout,
    .detail-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .image-card{
        height:300px;
    }

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

    .stat-grid>div{
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .section{
        padding:70px 0;
    }

    .portal-grid,
    .cards-3,
    .news-grid{
        grid-template-columns:1fr;
    }

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

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

    .side-card{
        position:static;
    }

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

    .fee-box{
        grid-template-columns:1fr;
    }

    .detail-layout{
        grid-template-columns:1fr;
    }

    .hero-facts{
        grid-template-columns:1fr;
    }

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

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

    .side-card.sticky{
        position:static;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:520px){

    .container{
        width:min(100% - 28px,1180px);
    }

    .site-header{
        height:72px;
        min-height:72px;
    }

    .brand img{
        width:200px;
        height:auto;
    }

    .nav-toggle{
        width:42px;
        height:42px;
    }

    .main-nav{
        top:72px;
        max-height:calc(100vh - 72px);
    }

    h1{
        font-size:2.25rem;
    }

    .hero{
        min-height:590px;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .course-grid,
    .faculty-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .faculty-card img{
        height:270px;
    }

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

    .footer-bottom{
        flex-direction:column;
        gap:5px;
    }

    .page-hero{
        padding:60px 0;
    }

    .section-head{
        display:block;
    }

    .section-head .text-link{
        display:block;
        margin-top:15px;
    }

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

    .fee-table div{
        display:block;
    }

    .fee-table strong{
        display:block;
        margin-top:4px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    *{
        scroll-behavior:auto!important;
        transition:none!important;
    }

}
```
