:root{
  --primary:#071b3f;
  --primary-2:#0d3270;
  --secondary:#ff7a18;
  --secondary-2:#ffb020;
  --accent:#00a878;
  --danger:#e63946;
  --text:#1f2937;
  --muted:#667085;
  --light:#f5f8fc;
  --white:#ffffff;
  --border:#e4eaf2;
  --shadow:0 16px 40px rgba(7,27,63,.10);
  --shadow-soft:0 8px 24px rgba(7,27,63,.08);
  --radius:18px;
  --radius-sm:12px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:#fff;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:15px;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body::selection{background:var(--secondary);color:#fff}
a{color:var(--primary-2);transition:.25s ease;text-decoration:none}
a:hover,a:focus{color:var(--secondary);text-decoration:none;outline:none}
img{max-width:100%;height:auto}
iframe{max-width:100%}
ul{padding-left:0}
.container{max-width:1220px;width:100%}
section{position:relative}

/* Header */
.premium-header{position:relative;z-index:1000;background:#fff;box-shadow:0 4px 24px rgba(7,27,63,.08)}
.premium-header.is-sticky .header-lower{position:fixed;top:0;left:0;right:0;z-index:1000;box-shadow:0 8px 28px rgba(7,27,63,.13);animation:headerDrop .3s ease}
@keyframes headerDrop{from{transform:translateY(-100%)}to{transform:translateY(0)}}
.top-bar{background:linear-gradient(90deg,var(--primary),#102d62);color:#fff;border-bottom:1px solid rgba(255,255,255,.12)}
.topbar-grid{display:flex;align-items:center;justify-content:space-between;min-height:42px;gap:20px}
.topbar-contact,.topbar-actions{display:flex;align-items:center;gap:20px}
.topbar-contact a,.topbar-actions a{color:rgba(255,255,255,.9);font-size:13px;display:inline-flex;align-items:center;gap:7px;white-space:nowrap}
.topbar-contact a:hover,.topbar-actions a:hover{color:#fff}
.topbar-actions a{padding:4px 0}
.topbar-actions a:last-child{background:rgba(255,255,255,.12);padding:6px 12px;border-radius:999px}

.announcement-bar{background:linear-gradient(90deg,#fff4e8,#fffaf5);border-bottom:1px solid #ffe0bd;overflow:hidden}
.announcement-inner{display:flex;align-items:center;min-height:42px;gap:14px}
.announcement-label{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,var(--secondary),var(--secondary-2));color:#fff;font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;padding:8px 13px;border-radius:999px;white-space:nowrap;box-shadow:0 6px 14px rgba(255,122,24,.2)}
.announcement-track{position:relative;flex:1;overflow:hidden;white-space:nowrap;color:#54320f;font-weight:600;font-size:13px}
.announcement-text{display:inline-block;padding-left:100%;animation:announcementMove 24s linear infinite}
.announcement-track:hover .announcement-text{animation-play-state:paused}
@keyframes announcementMove{to{transform:translateX(-100%)}}
.announcement-cta{font-size:13px;font-weight:800;color:var(--secondary);white-space:nowrap}

.header-lower{background:rgba(255,255,255,.98);transition:.25s ease}
.navigation-shell{min-height:82px;display:flex;align-items:center;gap:24px}
.brand{display:flex;align-items:center;gap:12px;min-width:285px;color:var(--primary)}
.brand:hover{color:var(--primary)}
.brand-logo{width:66px;height:66px;border-radius:16px;background:#fff;display:flex;align-items:center;justify-content:center;padding:5px;box-shadow:0 8px 20px rgba(7,27,63,.12);border:1px solid var(--border);overflow:hidden}
.brand-logo img{width:100%;height:100%;object-fit:contain;border-radius:11px!important}
.brand-copy{display:flex;flex-direction:column;line-height:1.2}
.brand-copy strong{font-size:18px;font-weight:850;max-width:230px;color:var(--primary)}
.brand-copy small{margin-top:6px;color:var(--secondary);font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase}

.nav-style{margin:0!important;background:transparent!important;border:0!important;box-shadow:none!important;flex:1;min-height:auto!important}
.nav-style .navbar-collapse{padding:0!important}
.nav-style .navbar-nav{float:right;margin:0!important;display:flex;align-items:center}
.nav-style .navbar-nav>li{position:relative;float:none}
.nav-style .navbar-nav>li>a{padding:31px 9px!important;color:#22324c!important;font-size:13px;font-weight:750;line-height:20px!important;background:transparent!important;white-space:nowrap}
.nav-style .navbar-nav>li>a::after{content:"";position:absolute;left:10px;right:10px;bottom:18px;height:3px;border-radius:4px;background:linear-gradient(90deg,var(--secondary),var(--secondary-2));transform:scaleX(0);transform-origin:center;transition:.25s ease}
.nav-style .navbar-nav>li:hover>a,.nav-style .navbar-nav>li.active>a{color:var(--primary)!important}
.nav-style .navbar-nav>li:hover>a::after,.nav-style .navbar-nav>li.active>a::after{transform:scaleX(1)}
.menu-arrow{margin-left:4px;font-size:11px}
.nav-home-icon{margin-right:4px}
.aiu-tab-dropdown{position:absolute;top:calc(100% - 8px);left:0;width:250px;max-height:420px;overflow:auto;margin:0;padding:10px;background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 20px 45px rgba(7,27,63,.17);opacity:0;visibility:hidden;transform:translateY(12px);transition:.22s ease;list-style:none;z-index:1001}
.hover-aiu-tab:hover>.aiu-tab-dropdown,.hover-aiu-tab.open>.aiu-tab-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.aiu-tab-dropdown li{display:block;border-bottom:1px dashed #edf0f5}
.aiu-tab-dropdown li:last-child{border-bottom:0}
.aiu-tab-dropdown li a{display:flex!important;align-items:center;gap:9px;padding:10px 11px!important;border-radius:9px;color:#334155!important;font-size:13px!important;font-weight:650!important;line-height:1.35!important;background:transparent!important}
.aiu-tab-dropdown li a:hover{color:var(--primary)!important;background:#f3f7fd!important;transform:translateX(3px)}
.aiu-tab-dropdown li a i{color:var(--secondary)}
.course-dropdown{width:290px;left:auto;right:0}
.header-whatsapp{display:flex;align-items:center;gap:10px;background:linear-gradient(135deg,#10b981,#059669);color:#fff!important;padding:10px 14px;border-radius:13px;box-shadow:0 10px 22px rgba(5,150,105,.22);line-height:1.05;white-space:nowrap}
.header-whatsapp i{font-size:22px}
.header-whatsapp span{font-size:12px;font-weight:800}
.header-whatsapp small{font-weight:500;opacity:.85}
.header-whatsapp:hover{transform:translateY(-2px);box-shadow:0 14px 25px rgba(5,150,105,.28)}
.navbar-toggle{margin:18px 0!important;border:0!important;background:var(--primary)!important;border-radius:10px!important;padding:10px!important}
.navbar-toggle .icon-bar{background:#fff!important;width:24px;height:2px}

/* Hero slider */
#carousel-example-generic{background:var(--primary);overflow:hidden}
#carousel-example-generic .carousel-inner>.item{min-height:260px;background:linear-gradient(135deg,var(--primary),var(--primary-2))}
#carousel-example-generic .carousel-inner>.item>img{width:100%;height:auto;max-height:580px;object-fit:cover;display:block}
#carousel-example-generic .carousel-control{width:54px;height:54px;top:50%;bottom:auto;transform:translateY(-50%);border-radius:50%;background:rgba(7,27,63,.72)!important;opacity:1;text-shadow:none;display:flex;align-items:center;justify-content:center;margin:0 20px}
#carousel-example-generic .carousel-control.left{left:0}
#carousel-example-generic .carousel-control.right{right:0}
#carousel-example-generic .carousel-control .glyphicon{position:static;margin:0;font-size:18px}
#carousel-example-generic .carousel-control:hover{background:var(--secondary)!important}
.fallback-hero{min-height:500px;display:flex;align-items:center;background:radial-gradient(circle at 80% 20%,rgba(255,122,24,.35),transparent 28%),linear-gradient(135deg,#06142f,#0c3475);color:#fff}
.fallback-hero-content{max-width:760px;padding:70px 15px}
.fallback-hero .hero-kicker{display:inline-block;padding:7px 13px;border:1px solid rgba(255,255,255,.25);border-radius:999px;background:rgba(255,255,255,.08);font-weight:800;text-transform:uppercase;letter-spacing:.09em;font-size:12px}
.fallback-hero h1{font-size:54px;font-weight:900;line-height:1.08;margin:22px 0 18px;color:#fff}
.fallback-hero p{font-size:18px;color:rgba(255,255,255,.82);max-width:650px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}

/* General sections */
.welcome,.new-faculty,.institution-highlights,.news_events,.stu-coll-noti,.approval-recog,.pages-tab{padding:70px 0!important;margin:0!important}
.welcome{background:linear-gradient(180deg,#fff,#f7faff)}
.welcome .row{align-items:stretch}
.welcome .col-lg-8,.welcome .col-lg-4{box-shadow:none!important}
.welcome .welcome-text{height:100%;padding:44px!important;background:#fff;border:1px solid var(--border);border-radius:var(--radius) 0 0 var(--radius);box-shadow:var(--shadow)}
.welcome .welcome-text h2{font-size:36px!important;color:var(--primary)!important;font-weight:900!important;margin-bottom:24px!important}
.welcome .welcome-text h2::before{background:var(--secondary)!important;height:4px!important;border-radius:4px;width:90px!important;bottom:-10px!important}
.welcome .welcome-text h2::after{display:none!important}
.welcome .welcome-text p{font-size:16px;color:var(--muted);line-height:1.9;text-align:justify}
.welcome .welcome-text a{display:inline-flex;margin-top:8px;font-weight:800;color:var(--secondary)!important}
.welcome .col-lg-4 img{width:100%!important;height:100%;min-height:360px;object-fit:cover;border-radius:0 var(--radius) var(--radius) 0;box-shadow:var(--shadow)}

.new-faculty{background:#fff}
.new-faculty>h2,.institution-highlights h3,.news_events .box>h3{font-size:38px!important;line-height:1.2;text-align:center!important;color:var(--primary)!important;font-weight:900!important;margin:0 0 38px!important;text-transform:none!important}
.new-faculty>h2 span,.institution-highlights h3 span{color:var(--secondary)!important}
.new-faculty .first-row-nf .box{margin-top:0!important;background:transparent!important;margin-bottom:28px}
.new-faculty .first-row-nf .box::before,.new-faculty .first-row-nf .box::after{display:none!important}
.new-faculty .first-row-nf .box .box-circle{height:100%!important;min-height:245px!important;padding:0!important;border:1px solid var(--border)!important;border-radius:var(--radius)!important;background:#fff!important;box-shadow:var(--shadow-soft)!important;overflow:hidden;line-height:normal!important;transition:.3s ease!important;text-align:left!important}
.new-faculty .first-row-nf .box .box-circle:hover{transform:translateY(-8px);box-shadow:var(--shadow)!important;border-color:#ffd6af!important}
.new-faculty .first-row-nf .box .box-circle img{width:100%!important;height:165px!important;object-fit:cover!important;display:block}
.new-faculty .first-row-nf .box .box-circle h6{display:block!important;margin:0!important;padding:18px 16px!important;color:var(--primary)!important;font-size:17px!important;font-weight:850!important;line-height:1.35!important;background:#fff}

.institution-highlights{background:linear-gradient(135deg,#071b3f,#0c3475)!important;color:#fff}
.institution-highlights h3{color:#fff!important}
.institution-highlights .owl-ih{margin:0!important}
.institution-highlights .ih-box{height:100%;min-height:300px!important;margin:12px!important;padding:30px 24px!important;background:rgba(255,255,255,.08)!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:var(--radius)!important;box-shadow:none!important;backdrop-filter:blur(8px)}
.institution-highlights .ih-box img{width:86px!important;height:86px!important;object-fit:cover;border-radius:50%!important;border:4px solid rgba(255,255,255,.9)}
.institution-highlights .ih-box h5{font-size:19px!important;text-transform:none!important}
.institution-highlights .ih-box p{color:rgba(255,255,255,.8)!important;font-size:14px!important;line-height:1.7}

.news_events{background:#f5f8fc}
.news_events .box .box_ne .content{padding:12px!important}
.news_events .box .box_ne .content h4{margin:0!important;padding:17px 20px!important;border:0!important;background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff!important;border-radius:14px 14px 0 0;font-size:18px!important}
.news_events .box .box_ne .content .content-box{margin:0!important;padding:20px!important;border:1px solid var(--border)!important;border-top:0!important;border-radius:0 0 14px 14px!important;background:#fff;box-shadow:var(--shadow-soft)!important;min-height:340px!important;overflow:hidden}
.news_events marquee{height:300px!important}
.news_events .marq-ul{list-style:none;margin:0}
.news_events .marq-ul li{padding:14px 8px!important;border-bottom:1px dashed var(--border)!important;color:var(--muted)}
.news_events .marq-ul li img{border-radius:14px;object-fit:cover;box-shadow:0 7px 16px rgba(7,27,63,.12)}

.approval-recog{background:#fff!important;background-image:none!important}
.approval-recog::before{content:"Our Recognition & Associations";display:block;text-align:center;color:var(--primary);font-size:34px;font-weight:900;margin-bottom:34px}
.approval-recog .img-box{min-height:190px!important;margin:10px!important;padding:24px 18px!important;background:#fff!important;color:var(--text)!important;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-soft);transition:.3s ease}
.approval-recog .img-box:hover{transform:translateY(-6px);border-color:#ffd1a7}
.approval-recog .img-box img{height:105px!important;width:105px!important;object-fit:contain;background:#fff!important;padding:8px!important;border-radius:12px}
.approval-recog .img-box h3,.approval-recog .img-box h6{color:var(--primary)!important;font-size:14px!important}

/* Page heading */
.new-heading{padding:60px 15px!important;text-align:center;background:radial-gradient(circle at 85% 25%,rgba(255,122,24,.35),transparent 24%),linear-gradient(135deg,#06142f,#0d3474)!important;color:#fff;margin:0!important;overflow:hidden}
.new-heading::after{content:"";position:absolute;inset:auto -10% -100px;height:180px;background:rgba(255,255,255,.04);transform:rotate(-3deg)}
.new-heading h1{position:relative;z-index:1;margin:0 0 10px!important;color:#fff!important;font-size:42px!important;font-weight:900!important;line-height:1.2}
.new-heading p{position:relative;z-index:1;margin:0!important;color:rgba(255,255,255,.75)!important;font-weight:600}
.new-heading p a,.new-heading .black{color:#fff!important;font-weight:800}

.pages-tab{background:#f7f9fc}
.pages-tab>.container>.row,.pages-tab .column>.row{margin-left:-12px;margin-right:-12px}
.pages-tab .column{padding-left:12px;padding-right:12px}
.about-content-box,.content-bg,.sky-fosrm,.pages-tab .form,.contact-box,.panel-default,.box-shadow:not(.institution-highlights){background:#fff!important;border:1px solid var(--border)!important;border-radius:var(--radius)!important;box-shadow:var(--shadow-soft)!important}
.about-content-box,.content-bg,.sky-fosrm,.pages-tab .form,.contact-box{padding:28px!important}
.about-content-box h1,.about-content-box h2,.about-content-box h3,.content-bg h1,.content-bg h2,.content-bg h3,.pages-tab h2,.pages-tab h3{color:var(--primary)!important;font-weight:850!important;line-height:1.3}
.about-content-box p,.content-bg p,.pages-tab p{color:var(--muted);line-height:1.85}
.left-sidebar-tab,.right-sidebar{background:#fff;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-soft);overflow:hidden}
.left-sidebar-tab ul{margin:0;list-style:none}
.left-sidebar-tab ul li a{display:block;padding:13px 16px;border-bottom:1px solid var(--border);color:#334155;font-weight:650}
.left-sidebar-tab ul li a:hover,.left-sidebar-tab ul li.active a{background:var(--primary);color:#fff;padding-left:20px}

/* Cards / gallery / video */
.news-block{padding:12px!important;margin:0!important}
.news-block .inner-box{height:100%;background:#fff;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-soft);overflow:hidden;transition:.3s ease}
.news-block .inner-box:hover{transform:translateY(-7px);box-shadow:var(--shadow)}
.news-block .image-box{margin:0!important;position:relative;background:#eaf0f8;overflow:hidden;aspect-ratio:16/10}
.news-block .image-box img{width:100%!important;height:100%!important;object-fit:cover!important;display:block}
.news-block .image-box iframe{width:100%!important;height:100%!important;display:block;border:0}
.news-block .lower-content{padding:18px!important;background:#fff}
.news-block .lower-content h3{margin:0!important;font-size:17px!important;line-height:1.4}
.news-block .lower-content h3 a{color:var(--primary)!important;font-weight:850}
.news-block .overlay-box{position:absolute;inset:0;background:rgba(7,27,63,.58);display:flex;align-items:center;justify-content:center;opacity:0;transition:.25s ease}
.news-block:hover .overlay-box{opacity:1}

/* Forms */
.form-group{margin-bottom:18px}
label{color:#344054;font-weight:750;margin-bottom:7px}
.form-control{height:46px;border:1px solid #d8e0eb;border-radius:10px;box-shadow:none!important;padding:10px 13px;font-size:14px;color:#27364d;background:#fff;transition:.2s ease}
textarea.form-control{height:auto;min-height:120px;resize:vertical}
.form-control:focus{border-color:var(--secondary)!important;box-shadow:0 0 0 4px rgba(255,122,24,.12)!important}
.input-group-addon{border:1px solid #d8e0eb!important;background:#f6f8fb!important;color:var(--primary)!important;border-radius:10px 0 0 10px!important}
.btn{border:0;border-radius:10px;padding:11px 19px;font-weight:800;transition:.25s ease;box-shadow:none}
.btn:hover{transform:translateY(-2px)}
.btn-primary,.btn-info,.btn-success,.btn-go,.btn-git,input[type=submit],button[type=submit]{background:linear-gradient(135deg,var(--primary),var(--primary-2))!important;color:#fff!important;border:0!important}
.btn-danger{background:linear-gradient(135deg,#e63946,#c9182b)!important}
.btn-warning{background:linear-gradient(135deg,var(--secondary),var(--secondary-2))!important;color:#fff!important}
.btn-light{background:#fff!important;color:var(--primary)!important}
.btn-whatsapp{background:#10b981!important;color:#fff!important}
.red,.err{color:var(--danger)!important}

/* Tables */
.table-responsive{border:0!important;border-radius:14px;box-shadow:var(--shadow-soft);background:#fff}
.table{margin-bottom:0;background:#fff}
.table>thead>tr>th,.tdh{background:var(--primary)!important;color:#fff!important;border:0!important;font-size:13px;text-transform:uppercase;letter-spacing:.03em;padding:13px!important;vertical-align:middle!important}
.table>tbody>tr>td{padding:12px!important;border-color:#edf1f6!important;vertical-align:middle!important}
.table-striped>tbody>tr:nth-of-type(odd){background:#f8fafc}
.table>tbody>tr:hover{background:#fff6ed!important}

/* Panels, tabs and modal */
.panel{border:0!important;box-shadow:none!important}
.panel-heading{background:var(--primary)!important;color:#fff!important;border:0!important;padding:14px 18px!important;border-radius:14px 14px 0 0!important;font-weight:800}
.panel-body{padding:22px!important}
.nav-tabs{border-bottom:1px solid var(--border)!important}
.nav-tabs>li>a{border-radius:10px 10px 0 0!important;color:var(--primary)!important;font-weight:750}
.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{background:var(--primary)!important;color:#fff!important;border-color:var(--primary)!important}
.modal-content{border:0;border-radius:18px;box-shadow:0 25px 70px rgba(7,27,63,.25);overflow:hidden}
.modal-header{background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff;border:0;padding:17px 20px}
.modal-header .close{color:#fff;opacity:.9;text-shadow:none}
.modal-body{padding:24px}

/* Footer */
.footer-cta{padding:0 0 0;background:#fff}
.footer-cta-inner{position:relative;z-index:2;margin-bottom:-70px;padding:36px 42px;display:flex;align-items:center;justify-content:space-between;gap:30px;background:linear-gradient(135deg,var(--secondary),#f95f25);border-radius:24px;color:#fff;box-shadow:0 22px 50px rgba(249,95,37,.25);overflow:hidden}
.footer-cta-inner::after{content:"";position:absolute;width:240px;height:240px;border-radius:50%;right:-70px;top:-110px;background:rgba(255,255,255,.12)}
.footer-cta-inner>div{position:relative;z-index:1}
.cta-kicker{font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;opacity:.85}
.footer-cta h2{color:#fff;margin:7px 0 6px;font-size:28px;font-weight:900}
.footer-cta p{margin:0;color:rgba(255,255,255,.88)}
.footer-cta-actions{display:flex;gap:11px;flex-shrink:0}

.site-footer{margin-top:0!important;padding:125px 0 48px;background:linear-gradient(145deg,#05142f,#081f47);color:rgba(255,255,255,.72)}
.footer-grid{display:grid;grid-template-columns:1.35fr .72fr .95fr 1.2fr;gap:36px}
.footer-brand{display:inline-flex;width:92px;height:92px;padding:8px;background:#fff;border-radius:18px;margin-bottom:17px}
.footer-brand img{width:100%;height:100%;object-fit:contain;border-radius:12px}
.site-footer h3{color:#fff;margin:0 0 10px;font-size:20px;font-weight:850}
.site-footer h4{color:#fff;font-size:17px;font-weight:850;margin:8px 0 20px;position:relative;padding-bottom:11px}
.site-footer h4::after{content:"";position:absolute;left:0;bottom:0;width:42px;height:3px;background:var(--secondary);border-radius:3px}
.site-footer p{color:rgba(255,255,255,.66)}
.footer-contact-list,.footer-links ul{list-style:none;margin:18px 0 0;padding:0}
.footer-contact-list li{display:flex;gap:11px;margin:11px 0;align-items:flex-start}
.footer-contact-list i{width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:8px;background:rgba(255,255,255,.08);color:var(--secondary);flex:0 0 auto}
.site-footer a{color:rgba(255,255,255,.72)}
.site-footer a:hover{color:#fff}
.footer-links li{margin:9px 0}
.footer-links li a{display:inline-flex;align-items:center;gap:8px}
.footer-links li a::before{content:"›";color:var(--secondary);font-size:18px;line-height:1}
.footer-social{display:flex;gap:9px;margin-top:18px}
.footer-social a{width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.09);color:#fff}
.footer-social a:hover{background:var(--secondary);transform:translateY(-3px)}
.footer-map{border-radius:15px;overflow:hidden;border:1px solid rgba(255,255,255,.15);line-height:0}
.footer-map iframe{filter:saturate(.8) contrast(1.05)}
.policy-links{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px;font-size:12px}
.bottom-footer{background:#031027;color:rgba(255,255,255,.66);padding:16px 0;border-top:1px solid rgba(255,255,255,.08)}
.bottom-footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.bottom-footer p{margin:0;font-size:13px}
.secure-note i{color:var(--accent);margin-right:6px}

.floating-actions{position:fixed;right:18px;bottom:88px;z-index:999;display:flex;flex-direction:column;gap:10px}
.floating-btn{height:50px;min-width:50px;border-radius:15px;color:#fff!important;display:flex;align-items:center;justify-content:center;gap:9px;padding:0 15px;box-shadow:0 12px 28px rgba(0,0,0,.19);font-weight:800;overflow:hidden}
.floating-btn i{font-size:21px}
.floating-btn span{max-width:0;opacity:0;white-space:nowrap;transition:.25s ease}
.floating-btn:hover span{max-width:90px;opacity:1}
.whatsapp-btn{background:#10b981}
.call-btn{background:var(--primary-2)}
.back-to-top{position:fixed;right:20px;bottom:22px;z-index:999;width:46px;height:46px;border:0;border-radius:14px;background:var(--secondary);color:#fff;box-shadow:0 10px 24px rgba(255,122,24,.3);opacity:0;visibility:hidden;transform:translateY(10px);transition:.25s ease}
.back-to-top.show{opacity:1;visibility:visible;transform:none}

/* Fix old preloader and utility styles */
#whole-website-content{display:block!important}
#preloader{display:none!important}
.box-shadow{box-shadow:var(--shadow-soft)!important}
.box-border{border:1px solid var(--border)!important}
marquee{white-space:normal}

@media (max-width:1199px){
  .brand{min-width:225px}.brand-copy strong{font-size:15px}.brand-copy small{font-size:9px}
  .nav-style .navbar-nav>li>a{padding-left:7px!important;padding-right:7px!important;font-size:12px}
  .header-whatsapp{display:none}
  .footer-grid{grid-template-columns:1.2fr .8fr 1fr}.footer-map-column{grid-column:1/-1}
}

@media (max-width:991px){
  .topbar-grid{min-height:38px}.topbar-actions a:first-child{display:none}
  .navigation-shell{min-height:74px;display:block;position:relative;padding:7px 0}
  .brand{min-width:0;width:calc(100% - 62px);min-height:60px}
  .brand-logo{width:58px;height:58px}.brand-copy strong{font-size:16px}.brand-copy small{font-size:10px}
  .nav-style{position:absolute!important;right:0;top:6px;width:100%;z-index:3}
  .nav-style .navbar-header{float:none}
  .nav-style .navbar-toggle{display:block;float:right}
  .nav-style .navbar-collapse{position:absolute;top:68px;left:0;right:0;background:#fff;border:1px solid var(--border)!important;border-radius:0 0 16px 16px;box-shadow:0 18px 35px rgba(7,27,63,.16);max-height:72vh!important;overflow-y:auto!important}
  .nav-style .navbar-collapse.collapse{display:none!important}.nav-style .navbar-collapse.collapse.in{display:block!important}
  .nav-style .navbar-nav{float:none!important;display:block;margin:0!important;padding:9px}
  .nav-style .navbar-nav>li{display:block;width:100%}
  .nav-style .navbar-nav>li>a{padding:12px 14px!important;border-bottom:1px solid #edf1f6;line-height:20px!important}
  .nav-style .navbar-nav>li>a::after{display:none}
  .menu-arrow{float:right;margin-top:5px}
  .aiu-tab-dropdown{display:none;position:static;width:100%!important;max-height:none;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;border-radius:0;padding:5px 8px 8px 18px;background:#f7f9fc}
  .hover-aiu-tab.open>.aiu-tab-dropdown{display:block}
  .footer-cta-inner{margin-bottom:-55px;padding:28px;display:block}.footer-cta-actions{margin-top:20px}
  .site-footer{padding-top:105px}.footer-grid{grid-template-columns:1fr 1fr}.footer-map-column{grid-column:1/-1}
  .welcome .welcome-text{border-radius:var(--radius)!important}.welcome .col-lg-4 img{border-radius:var(--radius)!important;margin-top:20px;min-height:280px}
}

@media (max-width:767px){
  body{font-size:14px}
  .container{padding-left:16px;padding-right:16px}
  .topbar-grid{justify-content:center}.topbar-contact{width:100%;justify-content:center;gap:13px}.topbar-actions{display:none}.topbar-contact a{font-size:12px}.topbar-contact a span{max-width:150px;overflow:hidden;text-overflow:ellipsis}
  .announcement-inner{min-height:40px}.announcement-label{font-size:0;width:34px;height:30px;padding:0;justify-content:center}.announcement-label i{font-size:13px}.announcement-cta{display:none}
  .brand-copy strong{font-size:14px;max-width:205px}.brand-copy small{font-size:8px;letter-spacing:.02em}
  #carousel-example-generic .carousel-inner>.item{min-height:180px}#carousel-example-generic .carousel-inner>.item>img{min-height:180px;object-fit:cover}
  #carousel-example-generic .carousel-control{width:40px;height:40px;margin:0 8px}
  .fallback-hero{min-height:410px}.fallback-hero h1{font-size:36px}.fallback-hero p{font-size:16px}
  .welcome,.new-faculty,.institution-highlights,.news_events,.stu-coll-noti,.approval-recog,.pages-tab{padding:48px 0!important}
  .welcome .welcome-text{padding:26px!important}.welcome .welcome-text h2{font-size:28px!important}.welcome .col-lg-4 img{height:260px!important;min-height:0}
  .new-faculty>h2,.institution-highlights h3,.news_events .box>h3{font-size:30px!important;margin-bottom:28px!important}
  .new-faculty .first-row-nf .box .box-circle{min-height:0!important}.new-faculty .first-row-nf .box .box-circle img{height:190px!important}
  .new-heading{padding:46px 15px!important}.new-heading h1{font-size:31px!important}
  .about-content-box,.content-bg,.sky-fosrm,.pages-tab .form,.contact-box{padding:20px!important}
  .news-block{padding:8px 4px!important}.news-block .image-box{aspect-ratio:16/10}
  .form-control{font-size:16px}
  .footer-cta{padding:0 12px}.footer-cta-inner{border-radius:19px;padding:24px 20px}.footer-cta h2{font-size:22px}.footer-cta-actions{display:grid;grid-template-columns:1fr}.footer-cta-actions .btn{width:100%}
  .footer-grid{grid-template-columns:1fr;gap:28px}.footer-map-column{grid-column:auto}.site-footer{padding-bottom:35px}
  .bottom-footer-inner{display:block;text-align:center}.secure-note{margin-top:5px!important}
  .floating-actions{right:12px;bottom:78px}.floating-btn{width:46px;height:46px;min-width:46px;padding:0}.floating-btn span{display:none}.back-to-top{right:12px;bottom:18px;width:44px;height:44px}
  .table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}
}

@media (max-width:420px){
  .topbar-contact a:nth-child(2){display:none}
  .brand-copy small{display:none}.brand-copy strong{font-size:13px}
  .fallback-hero h1{font-size:31px}
  .new-heading h1{font-size:27px!important}
}

/* Lightweight video loading */
.video-category-cover>a,.video-embed-lite{position:relative;display:block;width:100%;height:100%;background:#0a1832;overflow:hidden}
.video-category-cover img,.video-embed-lite img{width:100%!important;height:100%!important;object-fit:cover!important;transition:.35s ease;opacity:.88}
.video-category-cover:hover img,.video-embed-lite:hover img{transform:scale(1.04);opacity:1}
.video-play-badge,.video-lite-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:62px;height:62px;border-radius:50%;border:0;background:linear-gradient(135deg,var(--secondary),#ff4d2d);color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 15px 32px rgba(255,77,45,.34);font-size:20px;transition:.25s ease;z-index:2}
.video-play-badge i,.video-lite-play i{margin-left:4px}
.video-category-cover:hover .video-play-badge,.video-embed-lite:hover .video-lite-play{transform:translate(-50%,-50%) scale(1.08)}
.video-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0a1a3b,#154b98);color:rgba(255,255,255,.8);font-size:52px}
.empty-state{padding:55px 25px;text-align:center;background:#fff;border:1px dashed #ced8e6;border-radius:var(--radius);box-shadow:var(--shadow-soft)}
.empty-state>i{width:82px;height:82px;border-radius:24px;display:inline-flex;align-items:center;justify-content:center;background:#eef4fc;color:var(--primary-2);font-size:34px}
.empty-state h3{margin:18px 0 7px!important;color:var(--primary)!important;font-weight:850!important}
.empty-state p{color:var(--muted);margin-bottom:18px}
.image-load-error{background:#edf2f7;min-height:80px}

/* =========================================================
   Header, icon and enquiry modal hotfix - 2026-08-01
   ========================================================= */
.fa{
  font-family:FontAwesome!important;
  font-style:normal!important;
  font-weight:normal!important;
  speak:none;
}

/* Cleaner professional header */
.premium-header{
  isolation:isolate;
  border-bottom:1px solid rgba(7,27,63,.07);
}
.premium-header .top-bar{
  background:linear-gradient(110deg,#061735 0%,#0a295e 58%,#123c7c 100%);
}
.premium-header .topbar-grid{min-height:38px}
.premium-header .topbar-contact,
.premium-header .topbar-actions{gap:9px}
.premium-header .topbar-contact a,
.premium-header .topbar-actions a{
  min-height:28px;
  padding:4px 10px;
  border-radius:8px;
  font-size:12px;
  font-weight:650;
}
.premium-header .topbar-contact a i,
.premium-header .topbar-actions a i{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  background:rgba(255,255,255,.12);
  color:#fff;
  flex:0 0 22px;
}
.premium-header .topbar-contact a:hover,
.premium-header .topbar-actions a:hover{
  background:rgba(255,255,255,.1);
}
.premium-header .topbar-actions a:last-child{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.12);
  padding-right:13px;
}
.premium-header .announcement-bar{
  background:linear-gradient(90deg,#fff8ef 0%,#fff 48%,#fff8ef 100%);
}
.premium-header .announcement-inner{min-height:40px}
.premium-header .announcement-label{
  padding:7px 14px;
  box-shadow:0 7px 18px rgba(255,122,24,.22);
}
.premium-header .announcement-cta{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:5px 10px;
  border-radius:8px;
}
.premium-header .announcement-cta:hover{background:#fff0df}
.premium-header .header-lower{
  background:rgba(255,255,255,.985);
  backdrop-filter:saturate(150%) blur(12px);
  -webkit-backdrop-filter:saturate(150%) blur(12px);
}
.premium-header .navigation-shell{min-height:88px;gap:20px}
.premium-header .brand{min-width:305px;gap:13px}
.premium-header .brand-logo{
  width:68px;
  height:68px;
  border-radius:18px;
  border:1px solid #dfe7f2;
  box-shadow:0 10px 26px rgba(7,27,63,.12);
}
.premium-header .brand-copy strong{
  font-size:19px;
  letter-spacing:-.025em;
  line-height:1.15;
}
.premium-header .brand-copy small{
  color:#f36f16;
  letter-spacing:.045em;
}
.premium-header .nav-style .navbar-nav>li>a{
  padding:34px 10px!important;
  font-size:13px;
  font-weight:750;
  border-radius:9px;
}
.premium-header .nav-style .navbar-nav>li:hover>a{
  background:#f7f9fd!important;
}
.premium-header .nav-style .navbar-nav>li>a::after{bottom:20px}
.premium-header .aiu-tab-dropdown{
  top:calc(100% - 5px);
  border-radius:16px;
  padding:9px;
  border-color:#dfe7f1;
  box-shadow:0 24px 60px rgba(7,27,63,.2);
}
.premium-header .aiu-tab-dropdown::before{
  content:"";
  position:absolute;
  top:-6px;
  left:28px;
  width:12px;
  height:12px;
  background:#fff;
  border-left:1px solid #dfe7f1;
  border-top:1px solid #dfe7f1;
  transform:rotate(45deg);
}
.premium-header .course-dropdown::before{left:auto;right:30px}
.premium-header .aiu-tab-dropdown li a{position:relative;z-index:1}
.premium-header .header-whatsapp{
  min-width:132px;
  justify-content:center;
  border:1px solid rgba(255,255,255,.28);
}
.premium-header .header-whatsapp i{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  background:rgba(255,255,255,.16);
}

/* Font-independent slider alignment; arrows now use bundled Font Awesome */
#carousel-example-generic .carousel-control .slider-arrow{
  position:static;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  font-size:17px;
  color:#fff;
}
#carousel-example-generic .carousel-control .slider-arrow i{line-height:1}

/* Bootstrap modal must always sit over the complete header */
body.modal-open{overflow:hidden!important;padding-right:0!important}
body.modal-open .premium-header{z-index:1020!important}
.modal-backdrop{
  z-index:29990!important;
  background:#020b1d!important;
}
.modal-backdrop.in{opacity:.78!important}
#enquireNow.modal{
  z-index:30000!important;
  padding:0!important;
  overflow-x:hidden!important;
  overflow-y:auto!important;
}
#enquireNow .modal-dialog{
  width:920px!important;
  max-width:calc(100% - 30px)!important;
  margin:28px auto!important;
}
#enquireNow .modal-content{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  border-radius:24px!important;
  background:#fff;
  box-shadow:0 30px 95px rgba(0,0,0,.42)!important;
}
#enquireNow .enquiry-modal-close{
  position:absolute;
  z-index:5;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(7,27,63,.1);
  border-radius:12px;
  background:rgba(255,255,255,.94);
  color:#071b3f;
  box-shadow:0 8px 24px rgba(7,27,63,.14);
  font-size:29px;
  line-height:1;
  cursor:pointer;
  transition:.22s ease;
}
#enquireNow .enquiry-modal-close:hover{
  transform:rotate(4deg) scale(1.05);
  color:#fff;
  background:#e63946;
  border-color:#e63946;
}
#enquireNow .enquiry-modal-grid{
  display:grid;
  grid-template-columns:36% 64%;
  min-height:610px;
}
#enquireNow .enquiry-modal-info{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:50px 35px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 15% 15%,rgba(255,176,32,.34),transparent 28%),
    radial-gradient(circle at 90% 90%,rgba(0,168,120,.24),transparent 31%),
    linear-gradient(145deg,#061735 0%,#0d3270 100%);
}
#enquireNow .enquiry-modal-info::before,
#enquireNow .enquiry-modal-info::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.11);
}
#enquireNow .enquiry-modal-info::before{width:220px;height:220px;right:-120px;top:-95px}
#enquireNow .enquiry-modal-info::after{width:160px;height:160px;left:-85px;bottom:-78px}
#enquireNow .enquiry-modal-info>*{position:relative;z-index:1}
#enquireNow .enquiry-kicker{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  margin-bottom:20px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
#enquireNow .enquiry-modal-info h3{
  margin:0 0 15px;
  color:#fff!important;
  font-size:30px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.03em;
}
#enquireNow .enquiry-modal-info>p{
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.75;
}
#enquireNow .enquiry-benefits{
  list-style:none;
  margin:26px 0 30px;
  padding:0;
}
#enquireNow .enquiry-benefits li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:9px 0;
  color:rgba(255,255,255,.91);
  font-size:13px;
  font-weight:650;
}
#enquireNow .enquiry-benefits i{color:#54e1b7;font-size:16px;margin-top:3px}
#enquireNow .enquiry-help-note{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:15px;
  background:rgba(255,255,255,.08);
}
#enquireNow .enquiry-help-note>i{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:11px;
  background:linear-gradient(135deg,#ff7a18,#ffb020);
  color:#fff;
  font-size:17px;
}
#enquireNow .enquiry-help-note div{display:flex;flex-direction:column}
#enquireNow .enquiry-help-note small{color:rgba(255,255,255,.63);font-size:10px;text-transform:uppercase;letter-spacing:.08em}
#enquireNow .enquiry-help-note strong{color:#fff;font-size:12px}
#enquireNow .enquiry-modal-form-panel{
  padding:38px 38px 28px;
  background:linear-gradient(180deg,#fff,#fbfcff);
}
#enquireNow .enquiry-form-heading{padding-right:45px;margin-bottom:20px}
#enquireNow .enquiry-form-heading>span{
  display:block;
  margin-bottom:4px;
  color:#f36f16;
  font-size:11px;
  font-weight:850;
  letter-spacing:.09em;
  text-transform:uppercase;
}
#enquireNow .enquiry-form-heading h4{
  margin:0 0 4px;
  color:#071b3f!important;
  font-size:25px;
  font-weight:900;
  letter-spacing:-.025em;
}
#enquireNow .enquiry-form-heading p{margin:0;color:#7a8799;font-size:12px}
#enquireNow .enquiry-fields-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px 14px;
}
#enquireNow .enquiry-field-full{grid-column:1/-1}
#enquireNow .enquiry-field label{
  display:block;
  margin:0 0 5px;
  color:#31425d;
  font-size:11px;
  font-weight:750;
}
#enquireNow .enquiry-control-wrap{position:relative}
#enquireNow .enquiry-control-wrap>i{
  position:absolute;
  z-index:2;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#7b8ba3;
  font-size:14px;
  pointer-events:none;
}
#enquireNow .enquiry-textarea-wrap>i{top:17px;transform:none}
#enquireNow .form-control{
  width:100%;
  height:47px!important;
  margin:0!important;
  padding:10px 13px 10px 40px!important;
  border:1px solid #dce4ef!important;
  border-radius:12px!important;
  background:#fff!important;
  color:#1f2d42!important;
  box-shadow:none!important;
  font-size:13px!important;
  line-height:1.4!important;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
#enquireNow textarea.form-control{
  height:auto!important;
  min-height:72px;
  padding-top:13px!important;
  resize:vertical;
}
#enquireNow .form-control:focus{
  border-color:#1e5fac!important;
  box-shadow:0 0 0 4px rgba(30,95,172,.1)!important;
}
#enquireNow .form-control::placeholder{color:#a2adbc}
#enquireNow select.form-control{
  appearance:none;
  -webkit-appearance:none;
  padding-right:35px!important;
  cursor:pointer;
}
#enquireNow .enquiry-select-wrap::after{
  content:"\f107";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:#607089;
  font-family:FontAwesome;
  pointer-events:none;
}
#enquireNow .enquiry-phone-wrap{display:flex}
#enquireNow .country-code{
  height:47px;
  min-width:51px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dce4ef;
  border-right:0;
  border-radius:12px 0 0 12px;
  background:#f4f7fb;
  color:#34445d;
  font-size:13px;
  font-weight:750;
}
#enquireNow .enquiry-phone-wrap .form-control{
  padding-left:13px!important;
  border-radius:0 12px 12px 0!important;
}
#enquireNow .btn-enquire-send{
  width:100%;
  min-height:49px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:17px 0 0!important;
  padding:11px 18px!important;
  border:0!important;
  border-radius:13px!important;
  background:linear-gradient(135deg,#0a2e68,#0d4a9c)!important;
  color:#fff!important;
  box-shadow:0 12px 26px rgba(13,74,156,.22)!important;
  font-size:13px!important;
  font-weight:850!important;
  letter-spacing:.025em;
  text-transform:uppercase;
  transition:.22s ease;
}
#enquireNow .btn-enquire-send:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#f36f16,#ff9d1c)!important;
  box-shadow:0 14px 30px rgba(243,111,22,.26)!important;
}
#enquireNow .enquiry-privacy{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin:10px 0 0;
  color:#8793a5;
  font-size:10px;
  text-align:center;
}

@media (max-width:1199px){
  .premium-header .brand{min-width:250px}
  .premium-header .brand-copy strong{font-size:16px;max-width:190px}
  .premium-header .nav-style .navbar-nav>li>a{padding-left:7px!important;padding-right:7px!important;font-size:12px}
  .premium-header .header-whatsapp{min-width:auto;padding:10px 11px}
  .premium-header .header-whatsapp span{display:none}
}

@media (max-width:991px){
  .premium-header .navigation-shell{min-height:76px;padding:7px 0}
  .premium-header .brand{min-width:0;width:calc(100% - 62px)}
  .premium-header .brand-logo{width:58px;height:58px;border-radius:15px}
  .premium-header .nav-style{top:7px}
  .premium-header .nav-style .navbar-collapse{top:69px;z-index:50}
  .premium-header .nav-style .navbar-nav>li>a{padding:12px 14px!important;border-radius:8px}
  .premium-header .aiu-tab-dropdown::before{display:none}
  #enquireNow .modal-dialog{width:820px!important}
  #enquireNow .enquiry-modal-grid{grid-template-columns:34% 66%}
  #enquireNow .enquiry-modal-info{padding:42px 28px}
  #enquireNow .enquiry-modal-info h3{font-size:25px}
  #enquireNow .enquiry-modal-form-panel{padding:34px 28px 25px}
}

@media (max-width:767px){
  .premium-header .topbar-grid{min-height:36px}
  .premium-header .topbar-contact a,
  .premium-header .topbar-actions a{padding:3px 6px}
  .premium-header .topbar-contact a i,
  .premium-header .topbar-actions a i{width:24px;height:24px}
  .premium-header .announcement-inner{min-height:38px}
  .premium-header .announcement-track{font-size:12px}
  #enquireNow .modal-dialog{
    width:auto!important;
    max-width:none!important;
    margin:12px!important;
  }
  #enquireNow .modal-content{border-radius:19px!important}
  #enquireNow .enquiry-modal-grid{display:block;min-height:0}
  #enquireNow .enquiry-modal-info{display:none}
  #enquireNow .enquiry-modal-form-panel{padding:28px 18px 20px}
  #enquireNow .enquiry-form-heading{padding-right:38px;margin-bottom:17px}
  #enquireNow .enquiry-form-heading h4{font-size:21px}
  #enquireNow .enquiry-modal-close{top:10px;right:10px;width:36px;height:36px;border-radius:10px;font-size:26px}
  #enquireNow .enquiry-fields-grid{grid-template-columns:1fr;gap:10px}
  #enquireNow .enquiry-field-full{grid-column:auto}
  #enquireNow .form-control,#enquireNow .country-code{height:45px!important}
  #enquireNow textarea.form-control{min-height:68px}
}

@media (max-width:479px){
  .premium-header .topbar-contact a span{display:none}
  .premium-header .topbar-actions a:nth-child(1){display:none}
  .premium-header .topbar-actions a{font-size:11px}
  .premium-header .brand-copy strong{font-size:13px;max-width:180px}
  #enquireNow .modal-dialog{margin:7px!important}
  #enquireNow .enquiry-modal-form-panel{padding:25px 14px 16px}
  #enquireNow .enquiry-form-heading h4{font-size:19px}
}
#enquireNow .course-empty-note{
  min-height:47px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border:1px dashed #f2b27f;
  border-radius:12px;
  background:#fff8f1;
  color:#9a4d16;
  font-size:12px;
  font-weight:700;
}
/* Keep every Bootstrap modal above the shared high-z-index backdrop. */
.modal{z-index:30000!important}
