/**
 * BTI College — brand & UX layer.
 * Palette derived from the BTI logo (maroon + gold), WCAG-AA checked.
 *
 * Strategy: the maroon structural colour (buttons, links, borders, top bar) is
 * applied site-wide through the theme's Redux colour options. This file adds the
 * GOLD accents accessibly — gold only ever sits on maroon, or as a button/CTA
 * background paired with dark text. Gold is never used as text on white
 * (that fails contrast); the readable "gold-deep" is used for gold-coloured text.
 */

:root {
	--bti-maroon: #8B3D32;       /* primary brand */
	--bti-maroon-deep: #6E2E25;  /* hover / secondary surfaces */
	--bti-gold: #FAA732;         /* accent (fills with dark text, icons on maroon) */
	--bti-gold-deep: #9A6212;    /* accessible gold for text/links on white (5.1:1) */
	--bti-heading: #20282E;
	--bti-body: #4A4A4A;
	/* Page backgrounds — match live btibangalore.org (white + #f7f9fa section bands). */
	--bti-page-bg: #ffffff;
	--bti-section-alt: #f7f9fa;
	--bti-cream: var(--bti-section-alt);
}

/* Global page canvas (old site uses flat white, not warm cream). */
body,
#content,
.inner-page,
.inner-blog,
.pages-content {
	background-color: var(--bti-page-bg);
}

/* ---------- Buttons: maroon base, GOLD hover with dark text ---------- */
.btn,
.ss-btn,
.header-three .btn,
.menu-area .btn {
	background-color: var(--bti-maroon);
	border-color: var(--bti-maroon);
	color: #fff;
}

.btn:hover,
.ss-btn:hover,
.header-three .btn:hover,
.menu-area .btn:hover {
	background-color: var(--bti-gold) !important;
	border-color: var(--bti-gold) !important;
	color: var(--bti-maroon-deep) !important; /* dark text on gold = ~8:1 */
}

/* the theme uses a ::before overlay for the hover fill */
.btn:hover::before,
.ss-btn:hover::before {
	background-color: var(--bti-gold) !important;
}

/* ---------- Eyebrow labels: accessible gold TEXT on white ---------- */
.section-title h5,
.about-title h5 {
	color: var(--bti-gold-deep) !important;
}

/* Category badges sit on a MAROON fill -> text must be light, not dark gold */
.courses-content .cat,
.courses-item .cat {
	color: #fff !important;
}

/* short gold underline accent under section eyebrows */
.section-title h5 {
	display: inline-block;
}
.section-title h5::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	margin-top: 8px;
	background-color: var(--bti-gold);
}

/* ---------- Headings ---------- */
.section-title h2,
.about-title h2 {
	color: var(--bti-heading);
}

/* Course search band (choose course widget) — white text on dark/image bg */
.search-area .section-title h2,
.search-area .contact-bg .section-title h2 {
	color: #fff !important;
}

.search-area .section-title h2::before {
	display: none !important;
}

.search-area .section-title p {
	color: rgba(255, 255, 255, 0.88) !important;
}

/* Steps band (dark blue bg) — white headings */
.steps-area .section-title {
	padding-top: 32px;
}

.steps-area .section-title h2,
.steps-area h2,
.steps-area h3 {
	color: #fff !important;
}

.steps-area .section-title p {
	color: #96bece !important;
}

@media (max-width: 991px) {
	.steps-area .section-title {
		padding-top: 16px;
	}
}

/* FAQ contact card (dark blue) — white heading */
.faq-area .contact-bg02 .section-title h2,
.faq-area .contact-bg02 h2 {
	color: #fff !important;
}

/* Newsletter strip (dark teal) — white heading */
.newslater-area .newslater-title .text h2,
.newslater-area .section-title h2,
.newslater-area h2 {
	color: #fff !important;
}

/* ---------- Links ---------- */
a:hover {
	color: var(--bti-gold-deep);
}

.courses-item h3 a:hover,
.event-item h3 a:hover {
	color: var(--bti-maroon);
}

/* Event card thumbnails: fixed height so portrait posters don't break the grid */
.event-item .thumb,
.event-item .thumb a {
	display: block;
	overflow: hidden;
	height: 220px;
}
.event-item .thumb a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

/* Event cards: white copy on hover (theme sets h3/time; BTI body color was blocking <p>) */
.event-item:hover .event-content {
	background: var(--bti-maroon) !important;
	color: #fff;
}

.event-item:hover .event-content p,
.event-item:hover .event-content h3,
.event-item:hover .event-content h3 a,
.event-item:hover .event-content .time,
.event-item:hover .event-content .time strong {
	color: #fff !important;
}

.event-item:hover .event-content .time i {
	color: rgba(255, 255, 255, 0.85);
}

/* ---------- Body readability ---------- */
.courses-content p,
.event-content p {
	color: var(--bti-body);
	line-height: 1.65;
}

/* ---------- Equal-height course cards (Slick slider) ---------- */
.class-active .slick-track {
	display: flex !important;
	align-items: stretch;
}

.class-active .slick-slide {
	height: auto !important;
	display: flex !important;
	padding-left: 12px;
	padding-right: 12px;
	box-sizing: border-box;
}

.class-active .slick-slide > div,
.class-active .slick-slide > .col-lg-4,
.class-active .slick-slide > .col-md-6 {
	width: 100%;
	height: 100%;
	display: flex !important;
}

.class-active .courses-item {
	float: none;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin-left: 0;
	margin-right: 0;
	position: relative;
	overflow: visible;
}

.class-active .courses-item .thumb {
	flex-shrink: 0;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.class-active .courses-item .thumb a,
.class-active .courses-item .thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.class-active .courses-item .courses-content {
	float: none;
	width: 100%;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 210px;
	padding: 32px 24px 20px;
	overflow: visible;
}

.class-active .courses-item .courses-content h3 {
	flex-shrink: 0;
}

.class-active .courses-item .courses-content p,
.class-active .courses-item .courses-content .bti-course-excerpt {
	flex: 0 1 auto;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 4.2em;
}

.class-active .courses-item .courses-content a.readmore {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	flex-shrink: 0;
	position: relative;
	z-index: 3;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Icon on image area only — no longer covers Read More */
.class-active .courses-item .icon {
	position: absolute;
	top: 12px;
	right: 12px;
	float: none;
	margin: 0;
	z-index: 2;
	pointer-events: none;
}

.class-active .courses-item .icon img {
	max-height: 44px;
	width: auto;
	display: block;
}

.class-active.slick-slider .slick-list {
	overflow: hidden;
	padding-bottom: 4px;
}

/* ---------- Top bar (deep maroon via Redux): light text, gold hover ---------- */
.header-top a,
.second-header a,
.second-header span {
	color: #fff;
}
.header-top a:hover,
.second-header a:hover {
	color: var(--bti-gold);
}

/* ---------- Footer: solid black background, gold accents, readable logo ---------- */
.footer-bg,
.footer-area,
.footer-area .footer-bg,
footer.footer-bg {
	background-color: #000 !important;
	background-image: none !important;
}

.copyright-wrap {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* footer text is white; links hover to light gold (dark gold-deep would vanish on maroon) */
.footer-bg a,
.footer-area a,
.copyright-wrap a {
	color: #fff;
}
.footer-bg a:hover,
.footer-area a:hover,
.copyright-wrap a:hover,
.footer-link ul li a:hover {
	color: var(--bti-gold) !important;
}

/* footer accents in gold (gold on maroon = 3.8:1, fine for icons/large) */
.footer-widget .widgettitle::before,
.f-widget-title h2::before,
.f-cta-icon i,
.footer-bg .footer-social a:hover {
	background-color: transparent;
	color: var(--bti-gold);
}

/* the dark logo would vanish on the maroon footer — sit it on a white chip */
.footer-area img[src*="f_logo"],
.footer-bg img[src*="f_logo"],
.copyright-wrap img[src*="f_logo"] {
	background-color: #fff;
	padding: 10px 14px;
	border-radius: 6px;
}

/* ============================================================
   Classic page content (.pages-content) — branded layout so
   simple pages (Vision/Mission, Facilities, IIC, etc.) look
   designed without per-page Elementor builds.
   ============================================================ */
.inner-blog .pages-content {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	box-shadow: 0 6px 26px rgba(32, 40, 46, 0.06);
	padding: 48px 48px 40px;
	color: var(--bti-body);
	font-size: 16px;
	line-height: 1.8;
}

/* First heading sits tight to the top */
.inner-blog .pages-content > h2:first-child,
.inner-blog .pages-content > h3:first-child {
	margin-top: 0;
}

/* Section headings with gold underline accent */
.inner-blog .pages-content h2 {
	position: relative;
	color: var(--bti-heading);
	font-size: 28px;
	font-weight: 700;
	margin: 34px 0 18px;
	padding-bottom: 12px;
}
.inner-blog .pages-content h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 3px;
	background: var(--bti-gold);
	border-radius: 2px;
}
.inner-blog .pages-content h3 {
	color: var(--bti-maroon);
	font-size: 21px;
	font-weight: 700;
	margin: 28px 0 14px;
}
.inner-blog .pages-content p {
	margin: 0 0 18px;
}

/* Branded bullet lists: maroon check markers */
.inner-blog .pages-content ul {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
.inner-blog .pages-content ul li {
	position: relative;
	padding: 6px 0 6px 32px;
	border-bottom: 1px dashed #ededed;
}
.inner-blog .pages-content ul li:last-child {
	border-bottom: 0;
}
.inner-blog .pages-content ul li::before {
	content: "\f058"; /* fa check-circle */
	font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 6px;
	color: var(--bti-gold-deep);
}
.inner-blog .pages-content ul li strong {
	color: var(--bti-heading);
}

/* Ordered lists keep numbers but branded */
.inner-blog .pages-content ol {
	margin: 0 0 22px;
	padding-left: 20px;
}
.inner-blog .pages-content ol li {
	padding: 5px 0;
}

/* Blockquotes (Principal's / President's message) */
.inner-blog .pages-content blockquote {
	margin: 26px 0;
	padding: 22px 26px;
	background: var(--bti-cream);
	border-left: 4px solid var(--bti-gold);
	border-radius: 0 8px 8px 0;
	font-size: 18px;
	font-style: italic;
	color: var(--bti-heading);
}
.inner-blog .pages-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Links inside content */
.inner-blog .pages-content a {
	color: var(--bti-maroon);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.inner-blog .pages-content a:hover {
	color: var(--bti-gold-deep);
}

/* [TO CONFIRM] markers — show as a subtle editor note, de-emphasised */
.inner-blog .pages-content em {
	color: #9aa0a6;
	font-size: 14px;
}

/* Tables (if any) */
.inner-blog .pages-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 22px;
}
.inner-blog .pages-content table th,
.inner-blog .pages-content table td {
	border: 1px solid #e6e6e6;
	padding: 10px 14px;
	text-align: left;
}
.inner-blog .pages-content table th {
	background: var(--bti-maroon);
	color: #fff;
}

@media (max-width: 767px) {
	.inner-blog .pages-content {
		padding: 28px 22px 24px;
	}
	.inner-blog .pages-content h2 {
		font-size: 24px;
	}
}

/* ---------- Dropdown submenus: brand colours (override demo coral) ---------- */
.menu .sub-menu,
.menu .children,
.main-menu .menu-item-has-children > ul > .menu-item-has-children > ul,
.main-menu .menu-item-has-children > ul > .menu-item-has-children > ul > .menu-item-has-children > ul {
	border-top-color: var(--bti-gold) !important;
}

/* Submenu sizing — compact, proportional to the top nav (was oversized) */
.bti-header .main-menu .sub-menu,
.bti-header .menu .children {
	min-width: 230px !important;
	border-top-width: 3px !important;
	padding: 6px 0 !important;
}
.bti-header .main-menu .sub-menu li a,
.bti-header .menu .children li a {
	padding: 9px 18px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	white-space: normal !important; /* wrap long branch names instead of forcing width */
}
.bti-header .main-menu .sub-menu li {
	border-bottom: 1px solid #f0f0f0 !important;
}
.bti-header .main-menu .sub-menu li:last-child {
	border-bottom: 0 !important;
}
/* submenu item hover -> maroon tint, gold text */
.header-three .main-menu .sub-menu li a:hover,
.menu .children li a:hover,
.bti-header .main-menu .sub-menu li a:hover {
	color: var(--bti-maroon) !important;
}
/* parent caret indicator for items with a dropdown */
.bti-header .main-menu ul.menu > li.menu-item-has-children > a::after {
	content: "\f107"; /* fa caret down */
	font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome";
	font-weight: 900;
	display: inline-block !important;
	margin-left: 5px;
	font-size: 11px;
	opacity: 0.7;
}
/* nested flyout: small right-caret on second-level parents */
.bti-header .main-menu .sub-menu li.menu-item-has-children > a {
	position: relative;
}
.bti-header .main-menu .sub-menu li.menu-item-has-children > a::after {
	content: "\f105"; /* caret right */
	font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome";
	font-weight: 900;
	position: absolute;
	right: 14px;
	opacity: 0.6;
}

/* ---------- Header layout: top bar → accreditation → nav ---------- */
.bti-header .header-top .header-social span {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}
.bti-header .header-social .bti-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
	font-size: 14px;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.bti-header .header-social .bti-social-link:first-of-type {
	margin-left: 10px;
}
.bti-header .header-social .bti-social-link:hover {
	background: var(--bti-gold);
	color: var(--bti-maroon-deep) !important;
	transform: translateY(-1px);
}

/* Header top bar — phone & email PNG icons white on maroon */
.bti-header .header-top .header-cta .call-box .icon img {
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.bti-header .bti-nav-row {
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	padding-top: 10px;
	padding-bottom: 10px;
}

.bti-header-main {
	min-height: clamp(72px, 8vw, 100px);
	width: 100%;
	gap: clamp(10px, 1.5vw, 28px);
}

/* Theme default pulls nav right / negative margin — disable for BTI header */
.bti-header .main-menu {
	margin-right: 0 !important;
	text-align: left !important;
	width: 100% !important;
	max-width: none !important;
}

/* Nav must fill its grid track — let flex-grow go */
.bti-header .bti-header-nav,
.bti-header .bti-header-nav.flex-grow-1 {
	flex: 1 1 0 !important;
	width: 100% !important;
	max-width: none !important;
}

.bti-header .bti-desktop-nav,
.bti-header #cssmenu {
	width: 100% !important;
	max-width: none !important;
	text-align: left !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.bti-header-logo {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.bti-header-logo .logo {
	line-height: 0;
}

.bti-header-logo .bti-logo-link {
	display: inline-flex;
	line-height: 0;
	text-decoration: none;
}

/* Fixed logo frame — image scales inside; column width matches frame, not raw image */
.bti-header-logo .bti-logo-frame {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: clamp(145px, 14vw + 20px, 200px);
	height: clamp(50px, 4.5vw + 24px, 68px);
	overflow: hidden;
	flex-shrink: 0;
	box-sizing: border-box;
}

.bti-header-logo .bti-logo-frame img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: left center;
}

.bti-header-nav {
	min-width: 0;
	overflow: visible; /* must stay visible so dropdown sub-menus can appear */
	position: relative;
	z-index: 1;
}

/* ensure dropdown sub-menus are above everything and actually display on hover */
.bti-header .main-menu,
.bti-header #cssmenu,
.bti-header #cssmenu > ul.menu {
	overflow: visible;
}
.bti-header .main-menu ul.menu li.menu-item-has-children:hover > .sub-menu,
.bti-header .main-menu ul.menu li.menu-item-has-children:hover > ul {
	display: block;
	z-index: 999;
}

.bti-mobile-toggle {
	position: relative;
	z-index: 120;
	padding-left: 8px;
	min-width: 48px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
}

.bti-mobile-toggle .mobile-menu {
	position: relative;
	width: 48px;
	min-height: 48px;
}

/* MeanMenu hamburger — visible, tappable, BTI branded */
.bti-header .mean-container .mean-bar {
	float: none;
	position: relative;
	width: auto;
	z-index: 121;
}

.bti-header .mean-container a.meanmenu-reveal {
	position: relative !important;
	right: auto !important;
	top: auto !important;
	left: auto !important;
	margin: 0 !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px;
	min-height: 44px;
	padding: 11px 11px !important;
	border: 2px solid var(--bti-maroon) !important;
	border-radius: 8px;
	background-color: #fff !important;
	color: var(--bti-maroon) !important;
	display: block !important;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(32, 40, 46, 0.08);
}

.bti-header .mean-container .mean-nav {
	position: fixed;
	top: 72px; /* just below the mobile header height */
	left: 0;
	right: 0;
	width: 100% !important;
	margin-top: 0;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 9998;
	box-shadow: 0 14px 36px rgba(32, 40, 46, 0.18);
}

.bti-header .mean-container .mean-nav ul li a {
	font-size: 15px;
	font-weight: 600;
	color: var(--bti-heading);
	text-transform: none;
	padding: 12px 5%;
}

.bti-header .mean-container .mean-nav ul li a.mean-expand {
	border: none;
	font-weight: 700;
	color: var(--bti-maroon);
}

@media (max-width: 1199px) {
	.bti-header-logo {
		max-width: calc(100% - 60px);
		flex: 1 1 auto;
		min-width: 0;
	}

	.bti-header-logo .bti-logo-frame {
		width: min(168px, 100%);
		height: 52px;
	}

	.bti-header-main {
		gap: 10px;
		min-height: 72px;
	}

	.bti-nav-row .container {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (max-width: 575px) {
	.bti-header-logo .bti-logo-frame {
		width: min(140px, 100%);
		height: 46px;
	}

	.bti-header .mean-container .mean-nav {
		max-height: calc(100vh - 100px);
	}
}

@media (min-width: 1200px) {
	/* Logo | nav (fills middle) | CTA — nav stretches to fill all available space */
	.bti-header-main.d-flex {
		display: grid !important;
		grid-template-columns: max-content minmax(0, 1fr) max-content;
		align-items: center;
		justify-content: start;
		column-gap: clamp(16px, 2vw, 40px);
	}

	.bti-header-logo {
		grid-column: 1;
		justify-self: start;
		max-width: none;
	}

	.bti-header-nav {
		grid-column: 2;
		justify-self: stretch;
		width: 100% !important;
		max-width: none !important;
		min-width: 0;
		padding-left: 0;
		overflow: visible;
	}

	.bti-header-cta {
		grid-column: 3;
		justify-self: end;
		margin-left: 0;
	}

	.bti-header-nav #cssmenu,
	.bti-header-nav .main-menu,
	.bti-header-nav .bti-desktop-nav {
		width: 100% !important;
		max-width: none !important;
	}
}

/* Theme responsive.css (1200–1500) sets .main-menu { text-align: right } — override */
@media (min-width: 1200px) and (max-width: 1500px) {
	.bti-header .main-menu {
		text-align: left !important;
		margin-right: 0 !important;
		width: auto !important;
		display: flex !important;
		justify-content: flex-start !important;
	}
}

@media (min-width: 1400px) {
	.bti-header-logo .bti-logo-frame {
		width: clamp(160px, 13vw, 200px);
		height: clamp(56px, 4.2vw + 28px, 68px);
	}
}

.bti-logo-text {
	font-size: 1.1rem;
	margin: 0;
	line-height: 1.2;
}

.bti-header-nav .main-menu,
.bti-header-nav .bti-desktop-nav {
	width: 100%;
	max-width: none;
}

.bti-header-nav .main-menu {
	display: flex;
	justify-content: stretch;
	align-items: center;
}

.bti-header-nav #cssmenu {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	display: block;
	text-align: left;
}

/* Single-row primary nav — items spread across full nav track */
.bti-header #cssmenu > ul.menu,
.bti-header #cssmenu > ul.bti-primary-menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: clamp(2px, 0.4vw, 10px);
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	max-width: 100%;
}

.bti-header .main-menu ul.menu > li,
.bti-header .main-menu ul.bti-primary-menu > li {
	display: inline-block;
	margin: 0 !important;
	padding: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.bti-header .main-menu ul.menu > li > a,
.bti-header .main-menu ul.bti-primary-menu > li > a {
	display: block;
	padding: clamp(9px, 0.6vw, 13px) clamp(8px, 0.7vw, 16px);
	font-size: clamp(14px, 0.4vw + 12px, 16.5px);
	font-weight: 600;
	line-height: 1.35;
	color: var(--bti-heading);
	text-transform: none;
	letter-spacing: 0.01em;
}

.bti-header .main-menu ul.menu > li > a::after,
.bti-header .main-menu ul.bti-primary-menu > li > a::after {
	display: none;
}

.bti-header .main-menu ul.menu > li:hover > a,
.bti-header .main-menu ul.bti-primary-menu > li:hover > a,
.bti-header .main-menu ul.menu > li.current-menu-item > a {
	color: var(--bti-maroon);
}

/* Incubation Center — highlighted nav pill (distinct from plain links & Admissions CTA) */
.bti-header .main-menu ul.menu > li.menu-item-bti-incubation,
.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation {
	margin-left: clamp(2px, 0.3vw, 6px) !important;
}

.bti-header .main-menu ul.menu > li.menu-item-bti-incubation > a,
.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation > a {
	background: linear-gradient(135deg, var(--bti-maroon) 0%, var(--bti-maroon-deep) 100%);
	color: #fff !important;
	border: clamp(1px, 0.12vw, 2px) solid var(--bti-gold);
	border-radius: 999px;
	padding: clamp(4px, 0.45vw, 8px) clamp(7px, 0.75vw, 14px);
	box-shadow: 0 2px 10px rgba(139, 61, 50, 0.28);
	font-size: clamp(11px, 0.28vw + 10px, 13px);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.25;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bti-header .main-menu ul.menu > li.menu-item-bti-incubation > a::before,
.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation > a::before {
	content: "";
	display: inline-block;
	width: clamp(4px, 0.35vw, 6px);
	height: clamp(4px, 0.35vw, 6px);
	margin-right: clamp(3px, 0.35vw, 6px);
	border-radius: 50%;
	background: var(--bti-gold);
	box-shadow: 0 0 0 2px rgba(250, 167, 50, 0.35);
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.bti-header .main-menu ul.menu > li.menu-item-bti-incubation:hover > a,
.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation:hover > a,
.bti-header .main-menu ul.menu > li.menu-item-bti-incubation.current-menu-item > a,
.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation.current-menu-item > a {
	background: var(--bti-gold) !important;
	color: var(--bti-maroon-deep) !important;
	border-color: var(--bti-maroon);
	box-shadow: 0 3px 14px rgba(250, 167, 50, 0.45);
}

.bti-header .main-menu ul.menu > li.menu-item-bti-incubation:hover > a::before,
.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation:hover > a::before {
	background: var(--bti-maroon);
	box-shadow: 0 0 0 2px rgba(110, 46, 37, 0.25);
}

/* Mobile / meanmenu clone */
.mean-container .mean-nav ul li.menu-item-bti-incubation > a {
	background: var(--bti-maroon) !important;
	color: #fff !important;
	border-left: 4px solid var(--bti-gold);
	font-weight: 700;
}

.mean-container .mean-nav ul li.menu-item-bti-incubation > a:hover {
	background: var(--bti-gold) !important;
	color: var(--bti-maroon-deep) !important;
}

.bti-header-cta .second-header-btn {
	line-height: 0;
}

/* Override theme .second-header-btn .btn { padding: 25px 30px; font-size: 16px } */
.bti-header .bti-header-cta .second-header-btn .btn,
.bti-header-cta .btn {
	display: inline-block;
	padding: clamp(5px, 0.55vw, 10px) clamp(8px, 0.85vw, 16px) !important;
	font-size: clamp(9px, 0.22vw + 8px, 12px) !important;
	font-weight: 700;
	line-height: 1.25;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: clamp(0.2px, 0.04vw, 0.4px);
	border-radius: 4px;
	position: relative;
}

/* Hide hamburger when full desktop nav is visible */
@media (min-width: 1200px) {
	.bti-header .mean-container a.meanmenu-reveal {
		display: none !important;
	}
}

/* Laptop (1200–1399): readable nav + logo — no over-compression */
@media (min-width: 1200px) and (max-width: 1399px) {
	.bti-header-logo .bti-logo-frame {
		width: 150px;
		height: 52px;
	}

	.bti-header .main-menu ul.menu > li > a,
	.bti-header .main-menu ul.bti-primary-menu > li > a {
		padding: 8px 7px;
		font-size: 14px;
	}

	.bti-header .main-menu ul.menu > li.menu-item-bti-incubation > a,
	.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation > a {
		padding: 5px 10px;
		font-size: 11.5px;
	}

	.bti-header .bti-header-cta .second-header-btn .btn,
	.bti-header-cta .btn {
		padding: 7px 12px !important;
		font-size: 11px !important;
	}
}

/* Standard laptop / desktop (1400–1599) */
@media (min-width: 1400px) and (max-width: 1599px) {
	.bti-header-logo .bti-logo-frame {
		width: 168px;
		height: 58px;
	}

	.bti-header .main-menu ul.menu > li > a,
	.bti-header .main-menu ul.bti-primary-menu > li > a {
		padding: 9px 10px;
		font-size: 15px;
	}

	.bti-header-nav {
		padding-left: 0;
	}

	.bti-header .main-menu ul.menu > li.menu-item-bti-incubation > a,
	.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation > a {
		padding: 6px 11px;
		font-size: 12px;
	}

	.bti-header .bti-header-cta .second-header-btn .btn,
	.bti-header-cta .btn {
		padding: 7px 12px !important;
		font-size: 11px !important;
	}
}

/* Large screens (1600+): roomier logo frame and CTAs */
@media (min-width: 1600px) {
	.bti-header-main {
		min-height: 88px;
	}

	.bti-header-main.d-flex {
		grid-template-columns: max-content minmax(0, 1fr) max-content;
		gap: clamp(16px, 2vw, 40px);
	}

	.bti-header-logo .bti-logo-frame {
		width: clamp(168px, 12vw, 200px);
		height: clamp(58px, 4.5vw, 68px);
	}

	.bti-header .main-menu ul.menu > li > a,
	.bti-header .main-menu ul.bti-primary-menu > li > a {
		padding: 10px 14px;
		font-size: 16px;
	}

	.bti-header .main-menu ul.menu > li.menu-item-bti-incubation > a,
	.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation > a {
		padding: 6px 12px;
		font-size: 12px;
	}

	.bti-header .bti-header-cta .second-header-btn .btn,
	.bti-header-cta .btn {
		padding: 8px 14px !important;
		font-size: 11px !important;
	}

	.bti-header-nav {
		padding-left: 0;
	}
}

/* Ultra-wide */
@media (min-width: 1920px) {
	.bti-header-logo .bti-logo-frame {
		width: 200px;
		height: 68px;
	}

	.bti-header .main-menu ul.menu > li > a,
	.bti-header .main-menu ul.bti-primary-menu > li > a {
		padding: 11px 14px;
		font-size: 16.5px;
	}

	.bti-header .main-menu ul.menu > li.menu-item-bti-incubation > a,
	.bti-header .main-menu ul.bti-primary-menu > li.menu-item-bti-incubation > a {
		padding: 7px 14px;
		font-size: 13px;
	}

	.bti-header .bti-header-cta .second-header-btn .btn,
	.bti-header-cta .btn {
		padding: 10px 16px !important;
		font-size: 12px !important;
	}
}

/* ---------- Accreditation strip (below main nav; scrolls with page) ---------- */
.bti-accreditation-bar {
	background-color: var(--bti-maroon);
	border-top: 3px solid var(--bti-gold);
	border-bottom: none;
	color: #fff;
	position: relative;
	z-index: 8;
}
.bti-accreditation-bar .bti-acc-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 24px;
	padding: 12px 0;
}
.bti-accreditation-bar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
/* affiliation badges */
.bti-acc-badges {
	gap: 6px 10px;
}
.bti-acc-badges li {
	display: flex;
	align-items: center;
}
.bti-acc-badges li a.bti-acc-badge-link {
	display: flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	transition: color 0.2s ease, opacity 0.2s ease;
}
.bti-acc-badges li a.bti-acc-badge-link:hover {
	color: var(--bti-gold);
	opacity: 0.95;
}
.bti-acc-badges li i {
	color: #fff !important;
	font-size: 16px;
}
/* Fixed icon box — uniform 48×48px for all accreditation badges */
.bti-accreditation-bar .bti-acc-badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	overflow: hidden;
	background: #fff;
	border-radius: 4px;
	padding: 2px;
	box-sizing: border-box;
}
.bti-accreditation-bar .bti-acc-badge-icon img,
.bti-accreditation-bar .bti-acc-badges li img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	min-width: 0 !important;
	flex: none;
	object-fit: contain;
	object-position: center;
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-sizing: border-box;
}
/* CET / COMEDK codes */
.bti-acc-codes {
	gap: 10px;
}
.bti-acc-codes li {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid var(--bti-gold);
	border-radius: 4px;
	padding: 5px 12px;
	font-size: 13px;
}
.bti-acc-codes .bti-code-label {
	opacity: 0.85;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-size: 11px;
}
.bti-acc-codes strong {
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.5px;
}
@media (max-width: 767px) {
	.bti-accreditation-bar .bti-acc-inner {
		justify-content: center;
		text-align: center;
	}
	.bti-acc-badges,
	.bti-acc-codes {
		justify-content: center;
	}
	.bti-acc-badges li span {
		display: none; /* keep icons only on small screens to save space */
	}
}

/* ---------- Homepage hero slider (BTI campus photos) ---------- */
#home .single-slider.slider-bg {
	position: relative;
	background-position: center center;
}

#home .single-slider.slider-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(20, 27, 34, 0.82) 0%,
		rgba(20, 27, 34, 0.5) 50%,
		rgba(20, 27, 34, 0.25) 100%
	);
	pointer-events: none;
	z-index: 0;
}

#home .single-slider.slider-bg .container {
	position: relative;
	z-index: 1;
}

#home .single-slider.bti-hero-slide-campus {
	background-position: center 35%;
}

#home .single-slider.bti-hero-slide-graduates {
	background-position: center 25%;
}

/* ---------- News ticker (before About on homepage) ---------- */
.bti-news-ticker {
	width: 100%;
	background: var(--bti-maroon-deep);
	border-bottom: 1px solid rgba(250, 167, 50, 0.2);
}

.bti-news-ticker__bar {
	display: flex;
	align-items: stretch;
	min-height: 52px;
	max-width: 100%;
}

.bti-news-ticker__label {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	background: var(--bti-maroon);
	color: var(--bti-gold);
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-right: 1px solid rgba(250, 167, 50, 0.25);
	z-index: 2;
}

.bti-news-ticker__viewport {
	position: relative;
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
}

.bti-news-ticker__fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 48px;
	z-index: 2;
	pointer-events: none;
}

.bti-news-ticker__fade--left {
	left: 0;
	background: linear-gradient(90deg, var(--bti-maroon-deep) 0%, transparent 100%);
}

.bti-news-ticker__fade--right {
	right: 0;
	background: linear-gradient(270deg, var(--bti-maroon-deep) 0%, transparent 100%);
}

.bti-news-ticker__track {
	display: flex;
	width: max-content;
	align-items: center;
	height: 100%;
	animation: bti-news-scroll 45s linear infinite;
}

.bti-news-ticker__viewport:hover .bti-news-ticker__track {
	animation-play-state: paused;
}

.bti-news-ticker__group {
	display: flex;
	align-items: center;
	gap: 48px;
	padding: 10px 24px;
	flex-shrink: 0;
}

.bti-news-ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bti-news-ticker__item:hover,
.bti-news-ticker__item:focus {
	color: var(--bti-gold);
	text-decoration: none;
}

.bti-news-ticker__icon {
	flex-shrink: 0;
	font-size: 16px;
	color: var(--bti-gold);
}

.bti-news-ticker__body {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
}

.bti-news-ticker__date {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 600;
	color: var(--bti-gold);
	background: rgba(250, 167, 50, 0.12);
	border: 1px solid rgba(250, 167, 50, 0.3);
	border-radius: 4px;
	padding: 3px 8px;
	white-space: nowrap;
}

.bti-news-ticker__text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	white-space: nowrap;
}

@keyframes bti-news-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.bti-news-ticker__label span {
		display: none;
	}

	.bti-news-ticker__label {
		padding: 0 12px;
	}

	.bti-news-ticker__date {
		display: none;
	}

	.bti-news-ticker__group {
		gap: 28px;
		padding: 10px 16px;
	}

	.bti-news-ticker__text {
		font-size: 13px;
		max-width: 72vw;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bti-news-ticker__track {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
	}

	.bti-news-ticker__group[aria-hidden='true'] {
		display: none;
	}

	.bti-news-ticker__viewport {
		overflow-x: auto;
	}
}

/* ---------- About section main image ---------- */
.about-area .s-about-img {
	background: transparent !important;
}

.about-area .s-about-img > img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 8px;
	background: transparent !important;
}

/* ---------- About highlights (01–04 cards) ---------- */
.about-area .bti-about-highlights {
	margin-top: 28px;
}

.about-area .bti-about-highlights__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 768px) {
	.about-area .bti-about-highlights__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

.about-area .bti-about-highlights__item {
	float: none;
	width: auto;
	margin: 0;
	display: block;
}

.about-area .bti-about-highlight {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	height: 100%;
	min-height: 112px;
	padding: 16px 14px;
	background: #fff;
	border: 1px solid rgba(32, 40, 46, 0.08);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(32, 40, 46, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-area .bti-about-highlight:hover {
	border-color: rgba(139, 61, 50, 0.25);
	box-shadow: 0 12px 28px rgba(32, 40, 46, 0.1);
}

.about-area .bti-about-highlight .ano {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	min-width: 48px;
	margin: 0;
	padding: 0;
	border-radius: 10px;
	background: var(--bti-maroon);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Jost', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

.about-area .bti-about-highlight .text {
	flex: 1 1 auto;
	padding-top: 0;
	min-width: 0;
	overflow: hidden;
}

.about-area .about-content2.bti-about-highlights li .text h3,
.about-area .bti-about-highlight .text h3 {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 6px;
	margin: 0 0 8px;
	padding: 0;
	font-size: 15px !important;
	line-height: 1.2 !important;
	font-weight: 600;
	color: var(--bti-heading);
	white-space: nowrap;
}

.about-area .bti-about-highlight .text h3 i {
	flex-shrink: 0;
	margin: 0;
	color: var(--bti-maroon);
	font-size: 14px;
	line-height: 1;
}

.about-area .bti-about-highlight .text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--bti-body);
}

.about-area .s-about-content .about-title.second-title {
	margin-bottom: 8px;
}

.about-area .s-about-content > p,
.about-area .s-about-content > .txt-clr {
	margin-bottom: 0;
	line-height: 1.65;
}

@media (max-width: 767px) {
	.about-area .bti-about-highlight {
		min-height: 0;
		padding: 16px 14px;
	}

	.about-area .about-content2.bti-about-highlights li .text h3,
	.about-area .bti-about-highlight .text h3 {
		font-size: 14px !important;
	}
}

/* ---------- Fixed right: Admission Enquiry tab ---------- */
.bti-side-cta {
	--bti-side-cta-border: 2px;
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9990;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 168px;
	padding: 14px 11px;
	color: #fff;
	text-decoration: none;
	border-radius: 10px 0 0 10px;
	box-shadow: -4px 4px 20px rgba(32, 40, 46, 0.18);
	transition: box-shadow 0.2s ease, padding-right 0.2s ease;
	isolation: isolate;
	overflow: hidden;
	background: var(--bti-maroon);
}

/* Animated line travelling around the edges */
.bti-side-cta::before {
	content: '';
	position: absolute;
	inset: calc(-50% - var(--bti-side-cta-border));
	z-index: -2;
	background: conic-gradient(
		from 0deg,
		transparent 0deg 295deg,
		var(--bti-gold) 295deg 325deg,
		var(--bti-section-alt) 325deg 360deg
	);
	animation: bti-side-cta-border-spin 2.8s linear infinite;
}

.bti-side-cta::after {
	content: '';
	position: absolute;
	inset: var(--bti-side-cta-border);
	z-index: -1;
	background: var(--bti-maroon);
	border-radius: 8px 0 0 8px;
	transition: background-color 0.2s ease;
}

@keyframes bti-side-cta-border-spin {
	to {
		transform: rotate(360deg);
	}
}

.bti-side-cta:hover,
.bti-side-cta:focus {
	color: #fff;
	text-decoration: none;
	padding-right: 14px;
	box-shadow: -6px 6px 24px rgba(32, 40, 46, 0.22);
}

.bti-side-cta:hover::after,
.bti-side-cta:focus::after {
	background: var(--bti-maroon-deep);
}

.bti-side-cta:focus {
	outline: 2px solid var(--bti-gold);
	outline-offset: 2px;
}

.bti-side-cta__text {
	position: relative;
	z-index: 1;
	display: block;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.2;
	white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
	.bti-side-cta::before {
		animation: none;
		background: linear-gradient(
			180deg,
			var(--bti-gold) 0%,
			transparent 40%,
			transparent 60%,
			var(--bti-gold) 100%
		);
		inset: 0;
		opacity: 0.35;
	}
}

@media (max-width: 767px) {
	.bti-side-cta {
		min-height: 140px;
		padding: 12px 9px;
	}

	.bti-side-cta__text {
		font-size: 11px;
		letter-spacing: 0.1em;
	}
}

body.admin-bar .bti-side-cta {
	top: calc(50% + 16px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .bti-side-cta {
		top: calc(50% + 23px);
	}
}

/* ---------- Footer: BTI about column + link lists ---------- */
.bti-footer-about .bti-footer-logo img {
	max-height: 56px;
	width: auto;
	height: auto;
}

.bti-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bti-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

.bti-footer-contact li i {
	color: var(--bti-gold);
	margin-top: 3px;
	flex-shrink: 0;
}

.bti-footer-contact a {
	color: #fff;
	text-decoration: none;
}

.bti-footer-contact a:hover {
	color: var(--bti-gold);
}

.footer-bg .bti-footer-about > p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.6;
}

.footer-bg .footer-widget .widgettitle {
	margin-bottom: 18px;
}

/* ---------- Homepage virtual-tour CTA (campus photo) ---------- */
.cta-area.cta-bg.bti-cta-campus {
	position: relative;
}

.cta-area.cta-bg.bti-cta-campus::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.45) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
	z-index: 0;
	pointer-events: none;
}

.cta-area.cta-bg.bti-cta-campus > .container {
	position: relative;
	z-index: 1;
}

/* ---------- Testimonial author avatars: small & round ---------- */
.testimonial-area .testi-author img,
.single-testimonial .testi-author img {
	width: 64px !important;
	height: 64px !important;
	border-radius: 50% !important;
	object-fit: cover;
	border: 3px solid var(--bti-gold);
	box-shadow: 0 2px 10px rgba(32, 40, 46, 0.12);
	margin-top: 12px;
}

/* ============================================================
   Department / Programme landing page
   ============================================================ */
.bti-eyebrow {
	color: var(--bti-gold-deep) !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-size: 14px;
	margin-bottom: 8px;
	display: inline-block;
}
.bti-dept-overview .bti-eyebrow::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	margin-top: 8px;
	background-color: var(--bti-gold);
}

/* Overview hero */
.bti-dept-overview {
	background: var(--bti-page-bg);
	position: relative;
	overflow: hidden;
}
.bti-dept-overview::before {
	content: none;
}
.bti-dept-hero {
	position: relative;
	z-index: 1;
}
.bti-dept-intro h2 {
	color: var(--bti-heading);
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.2;
	margin-bottom: 16px;
}
.bti-dept-lead {
	color: var(--bti-body);
	font-size: 17px;
	line-height: 1.85;
	margin-bottom: 22px;
}
.bti-dept-lead p:last-child {
	margin-bottom: 0;
}
.bti-dept-quickfacts {
	list-style: none;
	margin: 0 0 26px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #ece6df;
	border-left: 4px solid var(--bti-maroon);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(32, 40, 46, 0.06);
}
.bti-dept-quickfacts li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
	color: var(--bti-body);
	font-size: 15px;
	line-height: 1.5;
}
.bti-dept-quickfacts li + li {
	border-top: 1px solid #e8ecef;
}
.bti-dept-quickfacts i {
	color: var(--bti-maroon);
	font-size: 16px;
	margin-top: 3px;
	width: 18px;
	text-align: center;
	flex-shrink: 0;
}
.bti-dept-quickfacts strong {
	display: block;
	color: var(--bti-heading);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-bottom: 2px;
}
.bti-dept-cta {
	margin-top: 4px;
}

/* Hero image */
.bti-dept-thumb {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(32, 40, 46, 0.16);
	border: 4px solid #fff;
}
.bti-dept-thumb::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45%;
	background: linear-gradient(180deg, transparent, rgba(32, 40, 46, 0.35));
	pointer-events: none;
}
.bti-dept-hero-img {
	width: 100%;
	height: auto;
	min-height: 320px;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}
.bti-dept-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	background: var(--bti-maroon);
	color: #fff;
	padding: 7px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 14px rgba(110, 46, 37, 0.35);
}

@media (min-width: 992px) {
	.bti-dept-hero .bti-dept-thumb {
		position: sticky;
		top: 110px;
	}
}

/* Overview detail cards */
.bti-dept-details {
	margin-top: 48px;
	position: relative;
	z-index: 1;
}
.bti-dept-card {
	background: #fff;
	border: 1px solid #ece6df;
	border-radius: 12px;
	padding: 28px 26px;
	height: 100%;
	box-shadow: 0 8px 28px rgba(32, 40, 46, 0.05);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bti-dept-card:hover {
	box-shadow: 0 14px 34px rgba(139, 61, 50, 0.1);
	transform: translateY(-2px);
}
.bti-dept-card h3 {
	color: var(--bti-heading);
	font-size: 20px;
	margin: 0 0 14px;
	padding-bottom: 12px;
	position: relative;
}
.bti-dept-card h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 3px;
	background: var(--bti-gold);
}
.bti-dept-card__body,
.bti-dept-card__body p {
	color: var(--bti-body);
	line-height: 1.8;
	margin-bottom: 0;
	font-size: 15px;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}
.bti-dept-objectives {
	margin: 0;
	padding-left: 1.25rem;
	list-style: decimal;
}
.bti-dept-objectives li {
	margin-bottom: 12px;
	text-align: justify;
	text-justify: inter-word;
}
.bti-dept-objectives li:last-child {
	margin-bottom: 0;
}
.bti-dept-card--vision,
.bti-dept-card--mission {
	border-top: 3px solid var(--bti-maroon);
}
.bti-dept-card--vision h3,
.bti-dept-card--mission h3 {
	color: var(--bti-maroon);
}

/* Glance stats grid */
.bti-dept-glance {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.bti-dept-glance__item {
	background: var(--bti-cream);
	border: 1px solid #ece6df;
	border-radius: 10px;
	padding: 16px 14px;
}
.bti-dept-glance__label {
	display: block;
	color: var(--bti-gold-deep);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	margin-bottom: 6px;
}
.bti-dept-glance__value {
	display: block;
	color: var(--bti-heading);
	font-size: 15px;
	line-height: 1.45;
	font-weight: 600;
}

@media (max-width: 767px) {
	.bti-dept-details {
		margin-top: 36px;
	}
	.bti-dept-card {
		padding: 22px 18px;
	}
	.bti-dept-glance {
		grid-template-columns: 1fr;
	}
	.bti-dept-hero-img {
		min-height: 240px;
	}
}

/* Legacy body styles (fallback) */
.bti-dept-overview .bti-dept-body { color: var(--bti-body); line-height: 1.8; margin-bottom: 24px; }
.bti-dept-overview .bti-dept-body h3 { color: var(--bti-maroon); font-size: 19px; margin: 18px 0 10px; }
.bti-dept-overview .bti-dept-body ul { padding-left: 0; list-style: none; }
.bti-dept-overview .bti-dept-body li { position: relative; padding: 4px 0 4px 26px; }
.bti-dept-overview .bti-dept-body li::before { content: "\f058"; font-family: "Font Awesome 5 Pro","Font Awesome 5 Free","FontAwesome"; font-weight: 900; color: var(--bti-gold-deep); position: absolute; left: 0; top: 4px; }

/* Labs */
.bti-dept-labs { background: var(--bti-cream); }
.bti-lab-photo { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(32,40,46,0.12); min-height: 280px; background: #ece6df; }
.bti-lab-photo__img { width: 100%; min-height: 280px; display: block; object-fit: cover; transition: opacity 0.25s ease; }
.bti-lab-photo__img.is-switching { opacity: 0.15; }
.bti-lab-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.bti-lab-list .bti-lab-item { background: #fff; border: 1px solid #ececec; border-left: 3px solid var(--bti-gold); border-radius: 6px; padding: 12px 14px; font-weight: 500; color: var(--bti-heading); cursor: pointer; transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; user-select: none; }
.bti-lab-list .bti-lab-item:hover { border-left-color: var(--bti-maroon); background: var(--bti-cream); box-shadow: 0 6px 18px rgba(32, 40, 46, 0.08); transform: translateY(-1px); }
.bti-lab-list .bti-lab-item.is-active { border-color: var(--bti-maroon); border-left-color: var(--bti-maroon); background: var(--bti-cream); box-shadow: 0 8px 22px rgba(139, 61, 50, 0.12); font-weight: 600; }
.bti-lab-list .bti-lab-item:focus { outline: 2px solid var(--bti-gold); outline-offset: 2px; }
.bti-lab-list .bti-lab-item i { color: var(--bti-maroon); margin-right: 8px; }

/* Faculty */
.bti-faculty-card { background: #fff; border: 1px solid #ececec; border-radius: 12px; padding: 24px 18px; text-align: center; cursor: pointer; transition: all .25s ease; height: 100%; }
.bti-faculty-card:hover, .bti-faculty-card:focus { box-shadow: 0 14px 34px rgba(139,61,50,0.14); transform: translateY(-4px); border-color: var(--bti-gold); outline: none; }
.bti-faculty-photo { position: relative; width: 110px; height: 110px; margin: 0 auto 16px; }
.bti-faculty-photo img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bti-gold); }
.bti-faculty-initial { display: flex; align-items: center; justify-content: center; width: 110px; height: 110px; border-radius: 50%; background: var(--bti-maroon); color: #fff; font-size: 40px; font-weight: 700; }
.bti-hod-badge { position: absolute; bottom: 0; right: 6px; background: var(--bti-gold); color: var(--bti-maroon-deep); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
.bti-faculty-info h4 { font-size: 17px; color: var(--bti-heading); margin: 0 0 4px; }
.bti-faculty-info span { display: block; color: var(--bti-body); font-size: 14px; margin-bottom: 10px; }
.bti-faculty-view { color: var(--bti-maroon); font-weight: 600; font-size: 13px; font-style: normal; }
.bti-faculty-card:hover .bti-faculty-view { color: var(--bti-gold-deep); }
.bti-faculty-note { color: #9aa0a6; margin-top: 10px; }

/* Faculty modal */
.bti-modal { position: fixed; inset: 0; z-index: 99999; display: none; }
.bti-modal.is-open { display: block; }
.bti-modal-overlay { position: absolute; inset: 0; background: rgba(20,24,28,0.6); }
.bti-modal-dialog { position: relative; max-width: 520px; margin: 8vh auto 0; background: #fff; border-radius: 14px; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); z-index: 1; animation: btiModalIn .25s ease; }
@keyframes btiModalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.bti-modal-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; font-size: 28px; line-height: 1; color: #888; cursor: pointer; }
.bti-modal-close:hover { color: var(--bti-maroon); }
.bti-modal-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.bti-modal-photo img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bti-gold); }
.bti-modal-heading h3 { margin: 0 0 4px; color: var(--bti-heading); font-size: 22px; }
.bti-modal-heading span { color: var(--bti-maroon); font-weight: 600; }
.bti-modal-meta { list-style: none; padding: 0; margin: 0 0 16px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 12px 0; }
.bti-modal-meta li { padding: 4px 0; color: var(--bti-body); }
.bti-modal-meta strong { color: var(--bti-heading); }
.bti-modal-dialog p { color: var(--bti-body); line-height: 1.7; margin: 0; }
body.bti-modal-open { overflow: hidden; }

/* Event & news cards on dept page */
.bti-event-card { display: flex; gap: 16px; background: #fff; border: 1px solid #ececec; border-radius: 10px; padding: 18px; height: 100%; transition: box-shadow .2s; }
.bti-event-card:hover { box-shadow: 0 10px 28px rgba(32,40,46,0.1); }
.bti-event-date { flex-shrink: 0; width: 64px; text-align: center; background: var(--bti-maroon); color: #fff; border-radius: 8px; padding: 12px 6px; height: fit-content; }
.bti-event-date strong { display: block; font-size: 24px; line-height: 1; }
.bti-event-date span { font-size: 12px; }
.bti-event-body h4 { font-size: 17px; margin: 0 0 6px; }
.bti-event-body h4 a { color: var(--bti-heading); }
.bti-event-body h4 a:hover { color: var(--bti-maroon); }
.bti-event-meta { font-size: 13px; color: var(--bti-body); margin-bottom: 6px; }
.bti-event-meta i { color: var(--bti-gold-deep); }
.bti-event-body p { color: var(--bti-body); font-size: 14px; margin: 0; }
.bti-news-card { background: #fff; border: 1px solid #ececec; border-radius: 10px; overflow: hidden; height: 100%; transition: box-shadow .2s; }
.bti-news-card:hover { box-shadow: 0 10px 28px rgba(32,40,46,0.1); }
.bti-news-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.bti-news-body { padding: 18px; }
.bti-news-date { color: var(--bti-gold-deep); font-size: 13px; font-weight: 600; }
.bti-news-body h4 { font-size: 17px; margin: 6px 0 8px; }
.bti-news-body h4 a { color: var(--bti-heading); }
.bti-news-body h4 a:hover { color: var(--bti-maroon); }
.bti-news-body p { color: var(--bti-body); font-size: 14px; margin: 0; }

@media (max-width: 575px) {
	.bti-lab-list { grid-template-columns: 1fr; }
	.bti-modal-dialog { margin: 5vh 16px 0; padding: 24px; }
}

/* ============================================================
   Department page tabs
   ============================================================ */
.bti-dept-tabs-area { background: var(--bti-cream); }
.bti-tab-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0 0 0;
	padding: 0;
	border-bottom: 2px solid #e6ddd6;
}
.bti-tab-link {
	padding: 14px 26px;
	font-weight: 600;
	font-size: 15px;
	color: var(--bti-body);
	cursor: pointer;
	border: 0;
	background: transparent;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all .2s ease;
	white-space: nowrap;
}
.bti-tab-link i { margin-right: 7px; color: var(--bti-gold-deep); }
.bti-tab-link:hover { color: var(--bti-maroon); }
.bti-tab-link.is-active {
	color: var(--bti-maroon);
	border-bottom-color: var(--bti-gold);
	background: #fff;
	border-radius: 8px 8px 0 0;
}
.bti-tab-link.is-active i { color: var(--bti-maroon); }
.bti-tab-panels {
	background: #fff;
	border: 1px solid #ececec;
	border-top: 0;
	border-radius: 0 0 12px 12px;
	padding: 40px;
	box-shadow: 0 8px 30px rgba(32,40,46,0.06);
}
.bti-tab-panel { display: none; animation: btiTabIn .3s ease; }
.bti-tab-panel.is-active { display: block; }
@keyframes btiTabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.bti-tab-heading { color: var(--bti-heading); font-size: 24px; margin: 0 0 24px; padding-bottom: 12px; position: relative; }
.bti-tab-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: var(--bti-gold); }

@media (max-width: 767px) {
	.bti-tab-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.bti-tab-link { padding: 12px 16px; font-size: 14px; }
	.bti-tab-panels { padding: 24px 18px; }
}

/* ============================================================
   Department landing — stats band + CTA banner
   ============================================================ */
.bti-dept-stats {
	background: linear-gradient(135deg, var(--bti-maroon) 0%, var(--bti-maroon-deep) 100%);
	padding: 42px 0;
}
.bti-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.bti-stat { color: #fff; padding: 6px 10px; border-right: 1px solid rgba(255,255,255,0.15); }
.bti-stat:last-child { border-right: 0; }
.bti-stat-num { display: block; font-size: 38px; font-weight: 800; color: #fff !important; line-height: 1; margin-bottom: 8px; }
.bti-stat-label { display: block; font-size: 14px; letter-spacing: 0.3px; opacity: 0.92; }

.bti-dept-cta-banner {
	background: var(--bti-cream);
	padding: 60px 0;
	border-top: 3px solid var(--bti-gold);
}
.bti-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 38px 44px;
	box-shadow: 0 10px 34px rgba(32,40,46,0.08);
}
.bti-cta-text h2 { color: var(--bti-heading); font-size: 26px; margin: 0 0 8px; }
.bti-cta-text p { color: var(--bti-body); margin: 0; max-width: 640px; }
.bti-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
.bti-btn-outline {
	background: transparent !important;
	border: 2px solid var(--bti-maroon) !important;
	color: var(--bti-maroon) !important;
}
.bti-btn-outline:hover {
	background: var(--bti-maroon) !important;
	color: #fff !important;
}

@media (max-width: 767px) {
	.bti-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
	.bti-stat:nth-child(2n) { border-right: 0; }
	.bti-stat-num { font-size: 30px; }
	.bti-cta-inner { flex-direction: column; text-align: center; padding: 30px 24px; }
	.bti-cta-actions { width: 100%; justify-content: center; }
}

/* Department-page news ticker spacing */
.bti-dept-ticker-wrap { margin: 10px 0 36px; }
.bti-dept-ticker-wrap .bti-news-ticker { margin: 0; }

/* ============================================================
   Document download lists (NAAC / VTU / AICTE / compliance pages)
   ============================================================ */
.inner-blog .pages-content:has(.bti-doc-list),
.inner-blog .pages-content:has(.bti-doc-page),
.inner-blog .pages-content:has(.bti-naac),
.pages-content .bti-doc-page,
.pages-content .bti-naac {
	width: 100%;
}
.bti-doc-page,
.bti-naac {
	margin: -10px 0 0;
}
.bti-doc-page > h2:first-child,
.bti-naac > h2:first-child {
	margin-top: 0;
}
.bti-doc-page > h3,
.bti-naac-crit-title,
.inner-blog .pages-content .bti-doc-page > h3 {
	color: var(--bti-maroon);
	font-size: 22px;
	margin: 36px 0 18px;
}
.bti-doc-page > h3:first-of-type,
.bti-naac-crit:first-child .bti-naac-crit-title {
	margin-top: 0;
}

/* Featured downloads (NAAC SSR / profile, etc.) */
.bti-doc-key,
.bti-naac-key {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 0 0 36px;
}
.bti-doc-key-card,
.bti-naac-key-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	background: var(--bti-cream);
	border: 1px solid #e8ecef;
	border-radius: 12px;
	color: var(--bti-heading);
	text-decoration: none !important;
	transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.bti-doc-key-card:hover,
.bti-naac-key-card:hover {
	border-color: var(--bti-gold);
	box-shadow: 0 10px 28px rgba(139,61,50,0.12);
	transform: translateY(-2px);
	color: var(--bti-heading);
}
.bti-doc-key-card > i:first-child,
.bti-naac-key-card > i:first-child {
	font-size: 28px;
	color: var(--bti-maroon);
}
.bti-doc-key-card span,
.bti-naac-key-card span {
	display: block;
	min-width: 0;
}
.bti-doc-key-card strong,
.bti-naac-key-card strong {
	display: block;
	color: var(--bti-heading);
	font-size: 16px;
	margin-bottom: 4px;
}
.bti-doc-key-dl,
.bti-naac-key-dl {
	color: var(--bti-maroon);
	font-size: 18px;
}

.inner-blog .pages-content .bti-doc-list,
.pages-content .bti-doc-page .bti-doc-list,
.pages-content .bti-naac .bti-doc-list,
.bti-doc-list {
	list-style: none !important;
	margin: 0 0 36px !important;
	padding: 0 !important;
	padding-left: 0 !important;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.inner-blog .pages-content .bti-doc-list > li,
.inner-blog .pages-content .bti-doc-list .bti-doc-item,
.pages-content .bti-doc-page .bti-doc-list > li,
.pages-content .bti-doc-page .bti-doc-list .bti-doc-item,
.pages-content .bti-naac .bti-doc-list > li,
.pages-content .bti-naac .bti-doc-list .bti-doc-item,
.bti-doc-item {
	box-sizing: border-box;
	display: grid !important;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	grid-template-areas: "icon meta action";
	align-items: center;
	column-gap: 18px;
	row-gap: 8px;
	margin: 0 !important;
	padding: 22px 24px !important;
	position: static;
	list-style: none !important;
	background: #fff;
	border: 1px solid #ececec;
	border-left: 4px solid var(--bti-maroon);
	border-radius: 12px;
	border-bottom: none !important;
	min-height: 92px;
	transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.bti-doc-item:hover {
	box-shadow: 0 10px 28px rgba(139,61,50,0.12);
	border-left-color: var(--bti-gold);
	transform: translateY(-2px);
}
.inner-blog .pages-content .bti-doc-list > li::before,
.inner-blog .pages-content .bti-doc-list .bti-doc-item::before,
.pages-content .bti-doc-page .bti-doc-list > li::before,
.pages-content .bti-doc-page .bti-doc-list .bti-doc-item::before,
.pages-content .bti-naac .bti-doc-list > li::before,
.pages-content .bti-naac .bti-doc-list .bti-doc-item::before {
	content: none !important;
	display: none !important;
}
.bti-doc-icon {
	grid-area: icon;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: var(--bti-cream);
	color: var(--bti-maroon);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.bti-doc-meta {
	grid-area: meta;
	min-width: 0;
	padding-right: 8px;
	color: var(--bti-body);
	font-size: 15px;
	line-height: 1.55;
}
.bti-doc-meta strong {
	display: block;
	color: var(--bti-heading);
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 4px;
}
.bti-doc-meta > span {
	display: block;
	font-size: 13px;
	line-height: 1.45;
	color: var(--bti-body);
}
.bti-doc-dl {
	grid-area: action;
	flex-shrink: 0;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 !important;
	padding: 11px 18px !important;
	border-radius: 8px;
	background: var(--bti-cream);
	border: 1px solid #e8ecef;
	color: var(--bti-maroon) !important;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
	text-decoration: none !important;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.inner-blog .pages-content .bti-doc-list .bti-doc-dl,
.pages-content .bti-doc-page .bti-doc-list .bti-doc-dl,
.pages-content .bti-naac .bti-doc-list .bti-doc-dl {
	text-decoration: none !important;
	font-weight: 600;
}
.bti-doc-dl:hover {
	background: var(--bti-maroon);
	border-color: var(--bti-maroon);
	color: #fff !important;
}
.bti-doc-dl i {
	margin: 0;
	font-size: 13px;
}

@media (max-width: 991px) {
	.inner-blog .pages-content .bti-doc-list,
	.bti-doc-list {
		gap: 16px;
	}
}
@media (max-width: 767px) {
	.bti-doc-key,
	.bti-naac-key {
		grid-template-columns: 1fr;
	}
	.inner-blog .pages-content .bti-doc-list,
	.pages-content .bti-doc-page .bti-doc-list,
	.pages-content .bti-naac .bti-doc-list,
	.bti-doc-list {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}
@media (max-width: 575px) {
	.inner-blog .pages-content .bti-doc-list > li,
	.inner-blog .pages-content .bti-doc-list .bti-doc-item,
	.bti-doc-item {
		grid-template-columns: 48px 1fr;
		grid-template-areas:
			"icon meta"
			"action action";
		padding: 18px 18px !important;
		min-height: 0;
	}
	.bti-doc-dl {
		justify-self: start;
		margin-top: 4px !important;
	}
}

/* NAAC criterion sections */
.bti-naac-crit { margin-bottom: 40px; }
.bti-naac-crit-title {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--bti-maroon);
	font-size: 22px;
	margin: 0 0 20px;
}
.bti-naac-crit-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bti-maroon);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

/* ============================================================
   About Us page (/about-us/) — page-about-us.php
   ============================================================ */
.bti-about-page-hero {
	background: var(--bti-page-bg);
}
.bti-about-page-hero .bti-about-hero-thumb {
	width: 100%;
}
.bti-about-hero-slider {
	position: relative;
	width: 100%;
	min-height: 380px;
	aspect-ratio: 16 / 10;
	background: #e8e4df;
}
.bti-about-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: opacity 0.85s ease;
	pointer-events: none;
}
.bti-about-hero-slide.is-active {
	opacity: 1;
	z-index: 1;
}
.bti-about-page-hero .bti-dept-hero-img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center center;
	display: block;
}
.bti-about-hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 0 12px;
}
.bti-about-hero-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.bti-about-hero-dot.is-active,
.bti-about-hero-dot:hover {
	background: var(--bti-gold);
	border-color: #fff;
	transform: scale(1.1);
}
.bti-about-page-hero .bti-dept-badge {
	z-index: 4;
}
@media (prefers-reduced-motion: reduce) {
	.bti-about-hero-slide {
		transition: none;
	}
}
@media (min-width: 992px) {
	.bti-about-hero-slider,
	.bti-about-page-hero .bti-dept-hero-img {
		min-height: 460px;
	}
	.bti-about-page-hero .bti-about-hero-media {
		padding-right: 24px;
	}
}
@media (min-width: 1200px) {
	.bti-about-hero-slider,
	.bti-about-page-hero .bti-dept-hero-img {
		min-height: 520px;
	}
}

.bti-about-quote {
	margin: 36px 0 0;
	padding: 28px 32px 24px;
	background: #fff;
	border: 1px solid #ece6df;
	border-left: 5px solid var(--bti-gold);
	border-radius: 0 12px 12px 0;
	box-shadow: 0 10px 30px rgba(32, 40, 46, 0.07);
	position: relative;
	z-index: 1;
}
.bti-about-quote p {
	margin: 0 0 10px;
	font-size: 22px;
	font-style: italic;
	font-weight: 600;
	color: var(--bti-heading);
	line-height: 1.45;
}
.bti-about-quote cite {
	display: block;
	font-size: 15px;
	font-style: normal;
	color: var(--bti-body);
	line-height: 1.6;
}

.bti-about-highlights-band {
	background: #fff;
	overflow: hidden;
}
.bti-about-highlights-band .about-content2,
.bti-about-highlights-band .bti-about-highlights {
	margin: 0;
}
.bti-about-highlights-band .bti-about-highlights__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 768px) {
	.bti-about-highlights-band .bti-about-highlights__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}
.bti-about-highlights-band .bti-about-highlights__item,
.bti-about-highlights-band .about-content2 li {
	float: none !important;
	width: auto !important;
	display: block !important;
	margin: 0 !important;
}
.bti-about-highlights-band .bti-about-highlight {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	height: 100%;
	min-height: 112px;
	padding: 16px 14px;
	background: #fff;
	border: 1px solid rgba(32, 40, 46, 0.08);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(32, 40, 46, 0.06);
}
.bti-about-highlights-band .bti-about-highlight .ano {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	min-width: 48px;
	margin: 0 !important;
	border-radius: 10px;
	background: var(--bti-maroon);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}
.bti-about-highlights-band .bti-about-highlight .text {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 0;
}
.bti-about-highlights-band .bti-about-highlight .text h3 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 8px;
	font-size: 15px !important;
	line-height: 1.3 !important;
	font-weight: 600;
	color: var(--bti-heading);
	white-space: normal;
}
.bti-about-highlights-band .bti-about-highlight .text h3 i {
	color: var(--bti-maroon);
	font-size: 14px;
}
.bti-about-highlights-band .bti-about-highlight .text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--bti-body);
}

.bti-about-sections {
	background: var(--bti-section-alt);
}
.bti-about-sections__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.bti-about-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
}
.bti-about-card--wide {
	grid-column: 1 / -1;
}
.bti-about-card--wide .bti-about-card__media {
	aspect-ratio: 21 / 7;
	min-height: 200px;
}
.bti-about-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 220px;
	flex-shrink: 0;
	background: var(--bti-section-alt);
	border-bottom: 1px solid #ece6df;
	overflow: hidden;
}
.bti-about-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}
.bti-about-card__media-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 100%;
	min-height: inherit;
	padding: 28px 20px;
	text-align: center;
	color: #8a8580;
}
.bti-about-card__media-placeholder i {
	font-size: 36px;
	color: var(--bti-maroon);
	opacity: 0.45;
}
.bti-about-card__media-placeholder span {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.bti-about-card__media-hint {
	display: block;
	margin-top: 4px;
	padding: 6px 10px;
	font-size: 11px;
	font-family: Consolas, Monaco, monospace;
	background: rgba(255, 255, 255, 0.7);
	border: 1px dashed #cfc8c0;
	border-radius: 4px;
	color: var(--bti-heading);
	word-break: break-all;
}
.bti-about-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 28px 28px 24px;
}
.bti-about-card h3 {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--bti-heading);
	font-size: 22px;
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f0ebe6;
}
.bti-about-card h3 i {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bti-cream);
	color: var(--bti-maroon);
	border-radius: 10px;
	font-size: 18px;
}
.bti-about-card h3::after {
	display: none;
}
.bti-about-card__intro {
	color: var(--bti-body);
	font-size: 16px;
	line-height: 1.75;
	margin: 0 0 14px;
}
.bti-about-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}
.bti-about-card__list li {
	position: relative;
	padding: 8px 0 8px 28px;
	border-bottom: 1px dashed #ebe6e0;
	color: var(--bti-body);
	font-size: 15px;
	line-height: 1.65;
}
.bti-about-card__list li:last-child {
	border-bottom: 0;
}
.bti-about-card__list li::before {
	content: "\f058";
	font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 8px;
	color: var(--bti-gold-deep);
	font-size: 14px;
}
.bti-about-card__list a {
	color: var(--bti-maroon);
	font-weight: 600;
	text-decoration: none;
}
.bti-about-card__list a:hover {
	color: var(--bti-gold-deep);
	text-decoration: underline;
}
.bti-about-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--bti-maroon);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.bti-about-card__link:hover {
	color: var(--bti-gold-deep);
}

@media (max-width: 991px) {
	.bti-about-sections__grid {
		grid-template-columns: 1fr;
	}
	.bti-about-card--wide {
		grid-column: auto;
	}
}

@media (max-width: 767px) {
	.bti-about-quote {
		padding: 22px 20px 18px;
	}
	.bti-about-quote p {
		font-size: 19px;
	}
}

/* ============================================================
   Incubation Center — vibrant landing layout
   ============================================================ */
/* let it break out of the plain .pages-content card */
.inner-blog .pages-content:has(.bti-incubation),
.pages-content .bti-incubation { width: 100%; }
.bti-incubation { margin: -10px 0 0; }
.bti-incubation h3, .bti-incubation h4, .bti-incubation h5 { margin-top: 0; }

/* Hero */
.bti-inc-hero {
	position: relative;
	background: linear-gradient(135deg, var(--bti-maroon) 0%, var(--bti-maroon-deep) 60%, #3d1a14 100%);
	border-radius: 16px;
	padding: 56px 40px;
	overflow: hidden;
	text-align: center;
	margin-bottom: 40px;
}
.bti-inc-hero::after {
	content: ""; position: absolute; right: -60px; top: -60px;
	width: 240px; height: 240px; border-radius: 50%;
	background: radial-gradient(circle, rgba(250,167,50,0.35), transparent 70%);
}
.bti-inc-hero__inner { position: relative; z-index: 1; }
.bti-inc-kicker { display: inline-block; background: rgba(250,167,50,0.18); color: var(--bti-gold); border: 1px solid rgba(250,167,50,0.4); padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.bti-inc-kicker i { margin-right: 6px; }
.bti-inc-hero h2 { color: #fff !important; font-size: 38px; font-weight: 800; margin: 0 0 10px; }
.bti-inc-tagline { color: var(--bti-gold); font-size: 19px; font-style: italic; margin-bottom: 26px; }

/* About */
.bti-inc-about { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.bti-inc-about h3 { color: var(--bti-maroon); font-size: 26px; margin-bottom: 14px; }
.bti-inc-about p { color: var(--bti-body); font-size: 17px; line-height: 1.8; }

/* Vision & Mission */
.bti-inc-vm { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 50px; }
.bti-inc-vm__card { padding: 32px; border-radius: 14px; position: relative; overflow: hidden; }
.bti-inc-vm__card--vision { background: var(--bti-section-alt); border: 1px solid #e8ecef; }
.bti-inc-vm__card--mission { background: #20282E; }
.bti-inc-vm__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--bti-gold); color: var(--bti-maroon-deep); font-size: 24px; margin-bottom: 16px; }
.bti-inc-vm__card h4 { font-size: 22px; color: var(--bti-heading); margin-bottom: 10px; }
.bti-inc-vm__card p { color: var(--bti-body); line-height: 1.75; margin: 0; }
/* Mission card on dark panel — beat .inner-blog .pages-content p */
.bti-incubation .bti-inc-vm__card--mission h4,
.inner-blog .pages-content .bti-incubation .bti-inc-vm__card--mission h4 {
	color: var(--bti-gold) !important;
}
.bti-incubation .bti-inc-vm__card--mission p,
.inner-blog .pages-content .bti-incubation .bti-inc-vm__card--mission p {
	color: #fff !important;
}

/* Section title */
.bti-inc-section-title { text-align: center; font-size: 28px; color: var(--bti-heading); margin-bottom: 34px; position: relative; padding-bottom: 14px; }
.bti-inc-section-title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 60px; height: 3px; background: var(--bti-gold); }

/* Services grid */
.bti-inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 50px; }
.bti-inc-card { background: #fff; border: 1px solid #ececec; border-radius: 14px; padding: 30px 24px; text-align: center; transition: all .25s ease; }
.bti-inc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(139,61,50,0.15); border-color: var(--bti-gold); }
.bti-inc-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--bti-maroon), var(--bti-maroon-deep)); color: var(--bti-gold); font-size: 26px; margin-bottom: 18px; }
.bti-inc-card h5 { font-size: 18px; color: var(--bti-heading); margin-bottom: 8px; }
.bti-inc-card p { color: var(--bti-body); font-size: 14px; line-height: 1.65; margin: 0; }

/* Focus tags */
.bti-inc-focus { margin-bottom: 50px; }
.bti-inc-tags { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.bti-inc-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--bti-section-alt); border: 1px solid #e8ecef; color: var(--bti-maroon); font-weight: 600; padding: 12px 22px; border-radius: 30px; font-size: 15px; transition: all .2s; }
.bti-inc-tag:hover { background: var(--bti-maroon); color: #fff; }
.bti-inc-tag i { color: var(--bti-gold-deep); }
.bti-inc-tag:hover i { color: var(--bti-gold); }

/* CTA */
.bti-inc-cta { background: linear-gradient(135deg, var(--bti-gold) 0%, #e8920f 100%); border-radius: 16px; padding: 44px; text-align: center; }
.bti-inc-cta h3 { color: var(--bti-maroon-deep); font-size: 26px; margin-bottom: 8px; }
.bti-inc-cta p { color: #5a2a18; margin-bottom: 22px; }
.bti-inc-cta .btn.ss-btn { background: var(--bti-maroon-deep) !important; border-color: var(--bti-maroon-deep) !important; color: #fff !important; }
.bti-inc-cta .btn.ss-btn:hover { background: #20282E !important; border-color: #20282E !important; }

@media (max-width: 767px) {
	.bti-inc-vm { grid-template-columns: 1fr; }
	.bti-inc-grid { grid-template-columns: 1fr; }
	.bti-inc-hero { padding: 40px 24px; }
	.bti-inc-hero h2 { font-size: 28px; }
}

/* Incubation — about split, why-choose, programs, gallery */
.bti-inc-about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.bti-inc-about-split .bti-inc-about-text h3 { color: var(--bti-maroon); font-size: 26px; margin-bottom: 14px; }
.bti-inc-about-split .bti-inc-about-text p { color: var(--bti-body); line-height: 1.8; }
.bti-inc-about-img img, .bti-inc-why-img img { width: 100%; border-radius: 14px; box-shadow: 0 14px 36px rgba(32,40,46,0.16); display: block; }

.bti-inc-why { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.bti-inc-why-text h3 { color: var(--bti-maroon); font-size: 26px; margin-bottom: 18px; }
.bti-inc-checklist { list-style: none; padding: 0; margin: 0; }
.bti-inc-checklist li { padding: 10px 0; color: var(--bti-heading); font-weight: 500; font-size: 16px; border-bottom: 1px dashed #ececec; }
.bti-inc-checklist li:last-child { border-bottom: 0; }
.bti-inc-checklist i { color: var(--bti-gold-deep); margin-right: 10px; }

.bti-inc-programs { margin-bottom: 50px; }
.bti-inc-prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bti-inc-prog { display: flex; align-items: center; gap: 12px; background: var(--bti-section-alt); border: 1px solid #e8ecef; border-radius: 10px; padding: 18px 20px; font-weight: 600; color: var(--bti-heading); font-size: 15px; transition: all .2s; }
.bti-inc-prog:hover { background: #fff; border-color: var(--bti-gold); box-shadow: 0 8px 22px rgba(139,61,50,0.1); }
.bti-inc-prog i { color: var(--bti-maroon); font-size: 20px; }

.bti-inc-gallery { margin-bottom: 50px; }
.bti-inc-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bti-inc-gallery-item { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.bti-inc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bti-inc-gallery-item:hover img { transform: scale(1.08); }
.bti-inc-gallery-zoom { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(110,46,37,0); color: transparent; font-size: 26px; transition: all .3s ease; }
.bti-inc-gallery-item:hover .bti-inc-gallery-zoom { background: rgba(110,46,37,0.55); color: #fff; }

@media (max-width: 767px) {
	.bti-inc-about-split, .bti-inc-why { grid-template-columns: 1fr; gap: 24px; }
	.bti-inc-prog-grid, .bti-inc-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .bti-inc-gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Placements — Training & Placement Cell
   ============================================================ */
.bti-placements { margin: 0; }
.bti-placements-hero .bti-placements-badge i { margin-right: 6px; }

.bti-placements-hero-slider {
	position: relative;
	width: 100%;
	min-height: 340px;
	border-radius: 14px;
	overflow: hidden;
}
.bti-placements-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.bti-placements-hero-slide.is-active { opacity: 1; z-index: 1; }
.bti-placements-hero-slider .bti-dept-hero-img,
.bti-placements-hero-fallback .bti-dept-hero-img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	display: block;
}
.bti-placements-hero-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 16px;
	z-index: 2;
	display: flex;
	gap: 8px;
}
.bti-placements-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,0.45);
	cursor: pointer;
	padding: 0;
}
.bti-placements-hero-dot.is-active,
.bti-placements-hero-dot:hover { background: var(--bti-gold); }

.bti-placements-section-title {
	text-align: center;
	font-size: 28px;
	color: var(--bti-heading);
	margin-bottom: 34px;
	position: relative;
	padding-bottom: 14px;
}
.bti-placements-section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 60px;
	height: 3px;
	background: var(--bti-gold);
}

.bti-placements-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.bti-placements-split__text h3 {
	color: var(--bti-maroon);
	font-size: 26px;
	margin-bottom: 14px;
}
.bti-placements-split__text p {
	color: var(--bti-body);
	line-height: 1.8;
	margin-bottom: 14px;
}
.bti-placements-split__media {
	border-radius: 14px;
	overflow: hidden;
	min-height: 280px;
	background: var(--bti-cream);
}
.bti-placements__img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}
.bti-placements__media-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 24px;
	text-align: center;
	color: var(--bti-body);
	background: var(--bti-section-alt);
	border: 2px dashed #d8cfc4;
	border-radius: 14px;
}
.bti-placements__media-placeholder i {
	font-size: 36px;
	color: var(--bti-maroon);
	opacity: 0.5;
	margin-bottom: 10px;
}
.bti-placements__media-hint {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	color: #888;
	word-break: break-all;
}

.bti-placements-programs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.bti-placements-program {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bti-placements-program:hover {
	box-shadow: 0 14px 32px rgba(32,40,46,0.12);
	transform: translateY(-4px);
}
.bti-placements-program__media {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--bti-cream);
}
.bti-placements-program__media .bti-placements__img {
	min-height: 0;
	height: 100%;
}
.bti-placements-program__media .bti-placements__media-placeholder {
	min-height: 0;
	height: 100%;
	aspect-ratio: 16/10;
	border-radius: 0;
	border: 0;
	border-bottom: 2px dashed #d8cfc4;
}
.bti-placements-program__body {
	padding: 22px 20px 24px;
}
.bti-placements-program__body h4 {
	font-size: 18px;
	color: var(--bti-heading);
	margin-bottom: 10px;
}
.bti-placements-program__body h4 i {
	color: var(--bti-maroon);
	margin-right: 8px;
}
.bti-placements-program__body p {
	color: var(--bti-body);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.bti-placements-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: none;
}
.bti-placements-step {
	position: relative;
	background: var(--bti-cream);
	border: 1px solid #e8ecef;
	border-radius: 14px;
	padding: 24px 16px 20px;
	text-align: center;
}
.bti-placements-step__num {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 12px;
	font-weight: 700;
	color: var(--bti-gold-deep);
	background: #fff;
	border-radius: 20px;
	padding: 2px 8px;
}
.bti-placements-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bti-maroon), var(--bti-maroon-deep));
	color: var(--bti-gold);
	font-size: 20px;
	margin-bottom: 12px;
}
.bti-placements-step h4 {
	font-size: 15px;
	color: var(--bti-heading);
	margin-bottom: 8px;
}
.bti-placements-step p {
	font-size: 13px;
	color: var(--bti-body);
	line-height: 1.55;
	margin: 0;
}

.bti-placements-recruiters__intro {
	text-align: center;
	max-width: 720px;
	margin: -18px auto 28px;
	color: var(--bti-body);
	line-height: 1.7;
}
.bti-placements-logos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 28px;
}
.bti-placements-logo-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 16px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
}
.bti-placements-logo-slot img {
	max-width: 100%;
	max-height: 56px;
	object-fit: contain;
}
.bti-placements-logo-slot .bti-placements__media-placeholder {
	min-height: 88px;
	width: 100%;
	padding: 12px;
	border: 1px dashed #ddd;
}
.bti-placements-logo-slot .bti-placements__media-hint { font-size: 9px; }
.bti-placements-companies {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.bti-placements-company {
	display: inline-block;
	background: var(--bti-cream);
	border: 1px solid #e8ecef;
	color: var(--bti-maroon);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 16px;
	border-radius: 30px;
}

.bti-placements-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.bti-placements-gallery-item {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--bti-cream);
}
.bti-placements-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bti-placements-gallery-placeholder {
	height: 100%;
}
.bti-placements-gallery-placeholder .bti-placements__media-placeholder {
	min-height: 100%;
	height: 100%;
	border-radius: 0;
}

.bti-placements-cta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.bti-placements-cta-card {
	border-radius: 14px;
	padding: 36px 32px;
}
.bti-placements-cta-card--students {
	background: linear-gradient(135deg, var(--bti-maroon) 0%, var(--bti-maroon-deep) 100%);
	color: #fff;
}
.bti-placements-cta-card--students h3,
.bti-placements-cta-card--students p { color: #fff !important; }
.bti-placements-cta-card--recruiters {
	background: var(--bti-cream);
	border: 1px solid #e8ecef;
}
.bti-placements-cta-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
}
.bti-placements-cta-card p {
	line-height: 1.7;
	margin-bottom: 18px;
}

@media (max-width: 991px) {
	.bti-placements-programs { grid-template-columns: repeat(2, 1fr); }
	.bti-placements-steps { grid-template-columns: repeat(2, 1fr); }
	.bti-placements-logos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
	.bti-placements-split,
	.bti-placements-cta-grid { grid-template-columns: 1fr; }
	.bti-placements-programs,
	.bti-placements-gallery-grid { grid-template-columns: 1fr; }
	.bti-placements-steps { grid-template-columns: 1fr; }
	.bti-placements-hero-slider,
	.bti-placements-hero-slider .bti-dept-hero-img { min-height: 260px; }
}

/* Incubation — hero slider */
.bti-incubation-hero-slider {
	position: relative;
	width: 100%;
	min-height: 340px;
	border-radius: 14px;
	overflow: hidden;
}
.bti-incubation-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.bti-incubation-hero-slide.is-active { opacity: 1; z-index: 1; }
.bti-incubation-hero-slider .bti-dept-hero-img,
.bti-incubation-hero-fallback .bti-dept-hero-img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	display: block;
}
.bti-incubation-hero-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 16px;
	z-index: 2;
	display: flex;
	gap: 8px;
}
.bti-incubation-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,0.45);
	cursor: pointer;
	padding: 0;
}
.bti-incubation-hero-dot.is-active,
.bti-incubation-hero-dot:hover { background: var(--bti-gold); }

/* Incubation — centered title + tagline in breadcrumb */
.bti-breadcrumb-area--incubation .breadcrumb-wrap {
	text-align: center;
}
.bti-breadcrumb-area--incubation .breadcrumb-title h2 {
	text-align: center;
}
.bti-breadcrumb-area--incubation .breadcrumb-title .bti-breadcrumb-tagline {
	margin: -8px auto 20px;
	max-width: 900px;
	text-align: center;
	font-size: 19px;
	font-style: italic;
	line-height: 1.5;
	color: var(--bti-gold) !important;
	font-weight: 500;
}
/* .breadcrumb-wrap2 is position:absolute with a fixed bottom:-25px (style.css) —
   tuned for a single-line h2 title. The tagline above adds a second line, so
   push the breadcrumb pill down further to clear it instead of overlapping. */
.bti-breadcrumb-area--incubation .breadcrumb-wrap2 {
	bottom: -60px;
}

.bti-incubation { margin: 0; }
.bti-incubation-intro { background: transparent; }

/* Breadcrumb-area rotating photo background — dark tint keeps the white
   title/breadcrumb text legible over a busy photo. Only affects layout
   painting (::before), never the section's own min-height/background-size
   sizing rules in style.css. */
.breadcrumb-area { position: relative; }
.breadcrumb-area::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient( 100deg, rgba(32,40,46,0.75) 0%, rgba(139,61,50,0.55) 100% );
	pointer-events: none;
}
.breadcrumb-area > .container { position: relative; z-index: 1; }
.bti-incubation-related {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}
.bti-incubation-related__btn {
	font-size: 14px;
	padding: 10px 18px;
}

/* Service cards with image slots */
.bti-inc-grid--media {
	align-items: stretch;
}
.bti-inc-card--has-media {
	padding: 0;
	text-align: left;
	overflow: hidden;
}
.bti-inc-card__media {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--bti-cream);
}
.bti-inc-card__media .bti-placements__img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}
.bti-inc-card__media .bti-placements__media-placeholder {
	min-height: 0;
	height: 100%;
	border-radius: 0;
	border: 0;
	border-bottom: 2px dashed #d8cfc4;
}
.bti-inc-card__body {
	padding: 22px 20px 24px;
	text-align: center;
}
.bti-inc-card--has-media .bti-inc-card__icon {
	margin-bottom: 12px;
}
.bti-inc-gallery-placeholder {
	height: 100%;
	width: 100%;
}
.bti-inc-gallery-placeholder .bti-placements__media-placeholder {
	min-height: 100%;
	height: 100%;
	border-radius: 0;
}
.bti-inc-cta__email {
	margin: 16px 0 0;
	font-size: 15px;
}
.bti-inc-cta__email a {
	color: var(--bti-maroon-deep);
	font-weight: 600;
}

@media (max-width: 767px) {
	.bti-incubation-hero-slider,
	.bti-incubation-hero-slider .bti-dept-hero-img { min-height: 260px; }
}

/* Document download list (VTU, AICTE, NAAC pages) */
.bti-doc-page { max-width: 800px; margin: 0 auto; }
.bti-doc-page__title { font-size: 28px; font-weight: 700; margin-bottom: 10px; color: var(--bti-maroon-deep, #7b1d1d); }
.bti-doc-page__subtitle { color: #555; margin-bottom: 30px; line-height: 1.7; }
.bti-doc-list { list-style: none; padding: 0; margin: 0; }
.bti-doc-list__item { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border: 1px solid #e5e5e5; border-radius: 6px; margin-bottom: 12px; background: #fff; transition: box-shadow .2s; }
.bti-doc-list__item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.bti-doc-list__item .fa-file-pdf { color: #c0392b; font-size: 22px; flex-shrink: 0; }
.bti-doc-list__item a { flex: 1; font-weight: 600; color: #222; text-decoration: none; }
.bti-doc-list__item a:hover { color: var(--bti-maroon-deep, #7b1d1d); }
.bti-doc-list__badge { font-size: 11px; font-weight: 700; background: #f5e6e6; color: #c0392b; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; flex-shrink: 0; }

/* NAAC criterion grouping */
.bti-naac-criterion-title { font-size: 17px; font-weight: 700; color: #333; margin: 30px 0 12px; padding-bottom: 6px; border-bottom: 2px solid #f0e6e6; }

/* ==================== Faculty Profile Cards + Modal ==================== */
.bti-faculty-section { padding: 60px 0; background: var(--bti-cream); }
.bti-faculty-section__title { text-align: center; font-size: 32px; font-weight: 800; color: var(--bti-maroon-deep); margin-bottom: 6px; }
.bti-faculty-section__dept { text-align: center; font-size: 16px; color: #666; margin-bottom: 40px; letter-spacing: .5px; }

.bti-faculty-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }

.bti-faculty-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	cursor: pointer;
	transition: transform .2s, box-shadow .2s;
	text-align: center;
}
.bti-faculty-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(139,61,50,.15); }

.bti-faculty-card__photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top;
	background: #e8e0dc;
}
.bti-faculty-card__photo-placeholder {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, var(--bti-maroon) 0%, var(--bti-maroon-deep) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
	color: rgba(255,255,255,.35);
}
.bti-faculty-card__body { padding: 16px 14px 20px; }
.bti-faculty-card__name { font-size: 15px; font-weight: 700; color: var(--bti-heading); margin-bottom: 4px; line-height: 1.3; }
.bti-faculty-card__desig { font-size: 12px; color: var(--bti-maroon); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.bti-faculty-card__qual { font-size: 12px; color: #777; }
.bti-faculty-card__view { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--bti-maroon); border: 1px solid var(--bti-maroon); border-radius: 20px; padding: 4px 16px; transition: background .2s, color .2s; }
.bti-faculty-card:hover .bti-faculty-card__view { background: var(--bti-maroon); color: #fff; }

/* Modal overlay */
.bti-faculty-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.bti-faculty-modal-overlay.is-open { display: flex; }

.bti-faculty-modal {
	background: #fff;
	border-radius: 14px;
	max-width: 680px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 24px 80px rgba(0,0,0,.25);
	position: relative;
}

.bti-fmod-header {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 28px 20px;
	border-bottom: 1px solid #f0eded;
	background: linear-gradient(135deg, var(--bti-maroon) 0%, var(--bti-maroon-deep) 100%);
	border-radius: 14px 14px 0 0;
}
.bti-fmod-header__photo {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	border: 3px solid rgba(255,255,255,.4);
	flex-shrink: 0;
	background: rgba(255,255,255,.12);
}
.bti-fmod-header__placeholder {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: rgba(255,255,255,.5);
	flex-shrink: 0;
	border: 3px solid rgba(255,255,255,.3);
}
.bti-fmod-header__info { flex: 1; }
.bti-fmod-header__name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; line-height: 1.2; }
.bti-fmod-header__desig { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: 2px; }
.bti-fmod-header__dept { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .5px; }

.bti-fmod-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: rgba(255,255,255,.18);
	border: none;
	color: #fff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}
.bti-fmod-close:hover { background: rgba(255,255,255,.3); }

.bti-fmod-body { padding: 24px 28px 28px; }

.bti-fmod-section { margin-bottom: 20px; }
.bti-fmod-section:last-child { margin-bottom: 0; }

.bti-fmod-section__label {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--bti-maroon);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.bti-fmod-section__label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #f0eded;
}

.bti-fmod-row { display: flex; gap: 24px; margin-bottom: 20px; }
.bti-fmod-col { flex: 1; background: var(--bti-cream); border-radius: 8px; padding: 14px 16px; }
.bti-fmod-col__lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .8px; color: #999; margin-bottom: 4px; }
.bti-fmod-col__val { font-size: 14px; font-weight: 700; color: var(--bti-heading); }

.bti-fmod-text { font-size: 14px; color: #4a4a4a; line-height: 1.6; }

.bti-fmod-edu-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.bti-fmod-edu-table th { background: var(--bti-cream); color: #888; font-size: 10px; text-transform: uppercase; letter-spacing: .6px; padding: 8px 12px; text-align: left; border-bottom: 1px solid #ede9e9; }
.bti-fmod-edu-table td { padding: 9px 12px; border-bottom: 1px solid #f5f2f2; color: #333; }
.bti-fmod-edu-table tr:last-child td { border-bottom: none; }

.bti-fmod-exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bti-fmod-exp-item { background: var(--bti-cream); border-radius: 8px; padding: 12px 8px; text-align: center; }
.bti-fmod-exp-item__num { font-size: 22px; font-weight: 800; color: var(--bti-maroon); line-height: 1; }
.bti-fmod-exp-item__lbl { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

.bti-fmod-pub-item { background: var(--bti-cream); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; font-size: 13px; }
.bti-fmod-pub-item__title { font-weight: 600; color: #222; margin-bottom: 4px; }
.bti-fmod-pub-item__meta { color: #888; font-size: 12px; }

.bti-fmod-tag { display: inline-block; background: #f0e6e6; color: var(--bti-maroon-deep); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 4px; margin: 2px; }

@media (max-width: 600px) {
	.bti-fmod-row { flex-direction: column; }
	.bti-fmod-exp-grid { grid-template-columns: repeat(2, 1fr); }
	.bti-fmod-header { flex-direction: column; text-align: center; }
	.bti-faculty-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
	.bti-fmod-body { padding: 16px; }
}

/* ============================================================
   BTI Announcement Popup
   ============================================================ */
.bti-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.6);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.bti-popup-overlay.is-open { display: flex; }
.bti-popup-modal {
	position: relative;
	background: #fff;
	border-radius: 14px;
	max-width: 560px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
	animation: btiPopupIn .25s ease;
}
@keyframes btiPopupIn {
	from { opacity: 0; transform: translateY(24px) scale(.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bti-popup-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	color: #888;
	cursor: pointer;
	z-index: 2;
	padding: 0 4px;
	transition: color .2s;
}
.bti-popup-close:hover { color: #b71c1c; }
.bti-popup-thumb img.bti-popup-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 14px 14px 0 0;
	display: block;
}
.bti-popup-body { padding: 28px 28px 32px; }
.bti-popup-title {
	font-size: 22px;
	font-weight: 700;
	color: #b71c1c;
	margin: 0 0 14px;
	padding-right: 24px;
}
.bti-popup-content { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 20px; }
.bti-popup-content p:last-child { margin-bottom: 0; }
.bti-popup-cta { display: inline-block; margin-top: 8px; }
@media (max-width: 576px) {
	.bti-popup-modal { max-width: 94vw; border-radius: 10px; }
	.bti-popup-body { padding: 20px; }
	.bti-popup-title { font-size: 18px; }
	.bti-popup-thumb img.bti-popup-img { height: 160px; }
}

/* ── HOD Message Section ────────────────────────────────────────────── */
.bti-hod-message-section { background: var(--bti-section-alt); }
.bti-hod-message-section .section-title h2 { font-size: 28px; color: #20282E; }
.bti-hod-photo-wrap { display: flex; justify-content: center; align-items: center; width: 100%; }
.bti-hod-sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
}
.bti-hod-photo {
	width: 180px;
	height: 220px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.12);
	border: 4px solid #fff;
	outline: 3px solid #8B3D32;
}
.bti-hod-photo-placeholder {
	width: 180px;
	height: 220px;
	border-radius: 10px;
	background: #e8e0df;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	color: #8B3D32;
}
.bti-hod-message-body { padding-left: 20px; }
.bti-hod-quote {
	border-left: 4px solid #8B3D32;
	padding: 18px 20px;
	background: #fff;
	border-radius: 0 8px 8px 0;
	margin: 0 0 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.bti-hod-quote p {
	font-size: 16px;
	line-height: 1.75;
	color: #4A4A4A;
	margin: 0;
	font-style: italic;
}
.bti-hod-identity {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
	align-items: center;
	width: 100%;
	max-width: 220px;
}
.bti-hod-name { font-size: 18px; font-weight: 700; color: #20282E; }
.bti-hod-role { font-size: 14px; color: #8B3D32; font-weight: 600; }
.bti-hod-qual { font-size: 13px; color: #666; }
.bti-hod-exp { font-size: 13px; color: #555; }
.bti-hod-exp i { color: #8B3D32; margin-right: 4px; }
@media (max-width: 767px) {
	.bti-hod-message-body { padding-left: 0; margin-top: 24px; }
	.bti-hod-photo, .bti-hod-photo-placeholder { width: 140px; height: 170px; }
}

/* ── Clubs & Activities tab ──────────────────────────────────────── */
.bti-club-card { background: #fff; border: 1px solid #ececec; border-radius: 12px; padding: 24px; height: 100%; transition: box-shadow .2s; }
.bti-club-card:hover { box-shadow: 0 10px 28px rgba(32,40,46,0.1); }
.bti-club-card__header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.bti-club-logo { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; border-radius: 8px; border: 1px solid #f0f0f0; padding: 4px; background: #fafafa; }
.bti-club-card__title h4 { font-size: 16px; font-weight: 700; color: #20282E; margin: 0 0 8px; line-height: 1.3; }
.bti-club-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.bti-club-stats span { font-size: 12px; background: #f2f5f9; color: #3a4a5c; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.bti-club-stats span i { color: #8B3D32; margin-right: 4px; }
.bti-club-desc { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 16px; }
.bti-club-photo-wrap { border-radius: 8px; overflow: hidden; }
.bti-club-photo { width: 100%; max-height: 220px; object-fit: cover; display: block; }

/* NSS section within Clubs tab */
.bti-nss-section { background: #f4f9f4; border-left: 4px solid #2e7d32; border-radius: 8px; padding: 20px 24px; }
.bti-nss-heading { font-size: 16px; font-weight: 700; color: #2e7d32; margin-bottom: 10px; }
.bti-nss-heading i { margin-right: 8px; }
.bti-nss-desc { font-size: 14px; color: #444; line-height: 1.75; margin: 0; }

/* ── Books Published section ─────────────────────────────────────── */
.bti-publications-section { background: var(--bti-section-alt); }
.bti-pub-card { background: #fff; border: 1px solid #ececec; border-radius: 12px; overflow: hidden; height: 100%; transition: box-shadow .2s; }
.bti-pub-card:hover { box-shadow: 0 10px 28px rgba(32,40,46,0.1); }
.bti-pub-cover { overflow: hidden; max-height: 260px; background: #f8f8f8; }
.bti-pub-cover img { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; transition: transform .3s ease; }
.bti-pub-card:hover .bti-pub-cover img { transform: scale(1.03); }
.bti-pub-info { padding: 18px; }
.bti-pub-title { font-size: 15px; font-weight: 700; color: #20282E; margin: 0 0 6px; line-height: 1.4; }
.bti-pub-authors { font-size: 13px; color: #666; margin: 0 0 8px; }
.bti-pub-year { display: inline-block; font-size: 12px; background: #8B3D32; color: #fff; padding: 2px 10px; border-radius: 20px; }

/* ── Vision & Mission section ────────────────────────────────────── */
.bti-vm-section { background: var(--bti-section-alt); }
.bti-vm-card { background: #fff; border-radius: 12px; padding: 30px; height: 100%; border: 1px solid #ececec; }
.bti-vm-card h4 { font-size: 17px; font-weight: 700; color: #20282E; margin-bottom: 14px; }
.bti-vm-card h4 i { color: #8B3D32; margin-right: 8px; }
.bti-vm-card--vision p { font-size: 15px; color: #444; line-height: 1.8; margin: 0; font-style: italic; text-align: justify; text-justify: inter-word; }
.bti-mission-list { padding-left: 20px; margin: 0; }
.bti-mission-list li { font-size: 14px; color: #444; line-height: 1.75; margin-bottom: 10px; text-align: justify; text-justify: inter-word; }
.bti-mission-list li:last-child { margin-bottom: 0; }

/* ── Programme Outcomes (department pages) ───────────────────────── */
.bti-po-section { background: var(--bti-section-alt); }
.bti-po-card {
	background: #fff; border: 1px solid #ece6df; border-radius: 14px;
	border-top: 3px solid var(--bti-maroon);
	padding: 40px 44px; text-align: center;
	box-shadow: 0 10px 30px rgba(32,40,46,0.06);
}
.bti-po-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; margin-bottom: 20px; border-radius: 50%;
	background: rgba(139,61,50,0.08); color: var(--bti-maroon); font-size: 24px;
}
.bti-po-card__body, .bti-po-card__body p {
	color: var(--bti-body); font-size: 16.5px; line-height: 1.9; margin: 0;
	text-align: justify; text-justify: inter-word;
}
@media (max-width: 767px) { .bti-po-card { padding: 28px 22px; } }

/* ── Department page: consistent vertical rhythm ─────────────────── */
.bti-hod-message-section { padding: 72px 0; }        /* previously had no vertical padding at all */
.bti-dept-tabs-area { padding-top: 72px; }           /* previously pb-90 only, zero top padding */
.bti-dept-stats { padding: 54px 0; }                 /* previously 42px — too short vs neighboring sections */
.bti-dept-quickfacts li { padding: 11px 0; }         /* previously 8px 0 — cramped rows */
.bti-dept-cta { margin-top: 14px; }                  /* previously 4px — button hugged the quickfacts card */
.bti-dept-details { margin-top: 56px; }              /* previously 48px — more air above the overview card grid */

/* ── MOU section ─────────────────────────────────────────────────── */
.bti-mou-section { background: #fff; }
.bti-mou-card { background: var(--bti-section-alt); border-radius: 12px; padding: 28px 24px; height: 100%; text-align: center; border: 1px solid #ececec; transition: box-shadow .2s; }
.bti-mou-card:hover { box-shadow: 0 8px 24px rgba(32,40,46,0.1); }
.bti-mou-card__icon { font-size: 32px; color: #8B3D32; margin-bottom: 14px; }
.bti-mou-company { font-size: 16px; font-weight: 700; color: #20282E; margin-bottom: 8px; }
.bti-mou-purpose { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.bti-mou-year { display: inline-block; font-size: 12px; background: #8B3D32; color: #fff; padding: 3px 12px; border-radius: 20px; }

/* ── Faculty grid ─────────────────────────────────────────────────── */
.bti-faculty-card { background: #fff; border: 1px solid #ececec; border-radius: 12px; padding: 20px; height: 100%; text-align: center; transition: box-shadow .2s; }
.bti-faculty-card:hover { box-shadow: 0 8px 24px rgba(32,40,46,0.1); }
.bti-faculty-photo { width: 120px; height: 140px; object-fit: cover; border-radius: 8px; margin: 0 auto 14px; display: block; }
.bti-faculty-photo-placeholder { width: 120px; height: 140px; border-radius: 8px; background: #e8e0df; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #8B3D32; margin: 0 auto 14px; }
.bti-faculty-name { font-size: 15px; font-weight: 700; color: #20282E; margin: 0 0 4px; }
.bti-faculty-role, .bti-faculty-qual, .bti-faculty-exp { display: block; font-size: 12px; color: #666; margin-bottom: 3px; }
.bti-faculty-exp i { color: #8B3D32; margin-right: 3px; }
.bti-faculty-bio { font-size: 12px; color: #777; line-height: 1.6; margin-top: 10px; text-align: left; }
.bti-faculty-bio a { color: #8B3D32; }

/* ── Dept events photo strip (Clubs tab) ─────────────────────────── */
.bti-dept-events-wrap { border-top: 1px solid #eee; padding-top: 30px; }
.bti-section-subhead { font-size: 16px; font-weight: 700; color: #20282E; margin-bottom: 20px; }
.bti-section-subhead i { color: #8B3D32; margin-right: 8px; }
.bti-dept-event-block { background: var(--bti-section-alt); border-radius: 10px; padding: 20px; border: 1px solid #e8ecef; }
.bti-dept-event-title { font-size: 15px; font-weight: 700; color: #20282E; margin-bottom: 6px; }
.bti-dept-event-desc { font-size: 13px; color: #666; margin-bottom: 14px; line-height: 1.65; }
.bti-event-photos-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.bti-event-photo-thumb { width: calc(16.666% - 7px); min-width: 100px; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; flex-grow: 1; }
@media (max-width: 767px) { .bti-event-photo-thumb { width: calc(50% - 4px); } }

/* ── Club gallery photo strip ────────────────────────────────────── */
.bti-club-gallery-strip { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; border-top: 1px solid #f0f0f0; padding-top: 14px; }
.bti-club-gallery-thumb { width: calc(33.333% - 4px); aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; flex-grow: 1; }
@media (max-width: 480px) { .bti-club-gallery-thumb { width: calc(50% - 3px); } }

/* ── Subjects Offered tab (Basic Sciences) ───────────────────────── */
.bti-tab-intro { font-size: 14px; color: #666; margin-bottom: 24px; }
.bti-subjects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.bti-subject-card { background: #fff; border: 1px solid #ececec; border-radius: 10px; padding: 16px 20px; display: flex; flex-direction: column; gap: 6px; transition: box-shadow .2s; }
.bti-subject-card:hover { box-shadow: 0 6px 20px rgba(32,40,46,0.09); }
.bti-subject-sem { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #8B3D32; background: #fdf0ee; padding: 3px 10px; border-radius: 20px; width: fit-content; }
.bti-subject-name { font-size: 14px; font-weight: 600; color: #20282E; line-height: 1.4; }

/* MOU photo */
.bti-mou-photo { width: 100%; height: 160px; object-fit: cover; border-radius: 8px 8px 0 0; margin-bottom: 14px; }

/* ── Course card thumbnail placeholder (when no featured image) ───── */
.bti-course-thumb-placeholder {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bti-maroon);
}
.bti-course-thumb-placeholder span {
	font-size: 28px;
	font-weight: 800;
	color: rgba(255,255,255,0.92);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ── Department logo thumbnails on course cards ───────────────────── */
.courses-item .thumb a img.bti-dept-logo-thumb {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: contain;
	background: linear-gradient(135deg, #f5f0ee 0%, #ede4e0 100%);
	padding: 30px 40px;
	box-sizing: border-box;
}

/* ── Equal-height event cards ─────────────────────────────────────── */
.event .row {
	display: flex;
	flex-wrap: wrap;
}
.event .row > [class*="col-"] {
	display: flex;
	flex-direction: column;
}
.event-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 30px;
}
.event-item .event-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.event-item .event-content h3 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.event-item .event-content > p {
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0;
}
.event-item .event-content .time {
	margin-top: auto;
	padding-top: 10px;
}

/* ── WhatsApp floating widget ─────────────────────────────────────── */
.bti-wa-widget {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9999;
	width: 58px;
	height: 58px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bti-wa-widget i {
	font-size: 28px;
	color: #fff;
	line-height: 1;
}
.bti-wa-widget:hover,
.bti-wa-widget:focus {
	transform: scale(1.1);
	box-shadow: 0 6px 22px rgba(37, 211, 102, 0.65);
	color: #fff;
}
.bti-wa-tooltip {
	position: absolute;
	right: 68px;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
	background: #fff;
	color: #333;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.bti-wa-tooltip::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	border-width: 5px 0 5px 7px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
}
.bti-wa-widget:hover .bti-wa-tooltip,
.bti-wa-widget:focus .bti-wa-tooltip {
	opacity: 1;
}
.bti-wa-widget::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.5);
	animation: bti-wa-pulse 2.4s ease-out infinite;
	z-index: -1;
}
@keyframes bti-wa-pulse {
	0%   { transform: scale(1);   opacity: 0.7; }
	100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 480px) {
	.bti-wa-widget {
		bottom: 18px;
		right: 18px;
		width: 50px;
		height: 50px;
	}
	.bti-wa-widget i { font-size: 24px; }
	.bti-wa-tooltip { display: none; }
}

/* ── Department logo in hero (single department page) ─────────────── */
.bti-dept-logo-hero {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #fff;
	border: 1px solid #e8e0d8;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 24px;
	box-sizing: border-box;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bti-dept-logo-hero img {
	max-width: 100%;
	max-height: 260px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* ==========================================================================
   Campus pages — Facilities, Sports, Hostel
   ========================================================================== */

.bti-campus-hero {
	background: linear-gradient(135deg, #1a0a0a 0%, #3a1a1a 100%);
	color: #fff;
	text-align: center;
}
.bti-campus-hero .bti-section-heading {
	color: #fff;
}
.bti-campus-hero .bti-section-heading span {
	color: #c9a84c;
}
.bti-campus-hero .bti-section-sub {
	color: rgba(255,255,255,0.8);
	max-width: 680px;
	margin: 0 auto;
}

/* Building photo grid */
.bti-photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}
.bti-photo-grid__item {
	overflow: hidden;
	background: #111;
	aspect-ratio: 4/3;
}
.bti-photo-grid__item--wide {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: auto;
}
.bti-photo-grid__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.bti-photo-grid__item:hover .bti-photo-grid__img {
	transform: scale(1.04);
}
@media (max-width: 768px) {
	.bti-photo-grid { grid-template-columns: repeat(2, 1fr); }
	.bti-photo-grid__item--wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
	.bti-photo-grid { grid-template-columns: 1fr; gap: 4px; }
}

/* Facility cards */
.bti-facility-card {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 10px;
	padding: 32px 24px;
	height: 100%;
	transition: box-shadow 0.25s, transform 0.25s;
}
.bti-facility-card:hover {
	box-shadow: 0 8px 32px rgba(90,30,30,0.12);
	transform: translateY(-4px);
}
.bti-facility-card__icon {
	width: 56px;
	height: 56px;
	background: var(--bti-section-alt);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.bti-facility-card__icon i {
	font-size: 22px;
	color: #8b1a1a;
}
.bti-facility-card__title {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 10px;
}
.bti-facility-card__desc {
	font-size: 14px;
	color: #555;
	line-height: 1.65;
	margin: 0;
}

/* Campus photo cards (sports/hostel galleries) */
.bti-campus-photo-card {
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: #111;
}
.bti-campus-photo-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.bti-campus-photo-card:hover .bti-campus-photo-card__img {
	transform: scale(1.04);
}

/* Sports badges */
.bti-sport-badge {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 10px;
	padding: 20px 16px;
	text-align: center;
	transition: box-shadow 0.25s, transform 0.25s;
}
.bti-sport-badge:hover {
	box-shadow: 0 6px 20px rgba(90,30,30,0.1);
	transform: translateY(-3px);
}
.bti-sport-badge i {
	font-size: 28px;
	color: #8b1a1a;
	display: block;
	margin-bottom: 10px;
}
.bti-sport-badge span {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.bti-sport-stat {
	background: #8b1a1a;
	color: #fff;
	border-radius: 12px;
	padding: 28px 20px;
	display: inline-block;
	text-align: center;
}
.bti-sport-stat__number {
	font-size: 48px;
	font-weight: 700;
	display: block;
	line-height: 1;
	color: #c9a84c;
}
.bti-sport-stat__label {
	font-size: 14px;
	margin-top: 6px;
	display: block;
}
.bti-sports-note {
	background: var(--bti-section-alt);
	border-radius: 12px;
	padding: 36px 32px;
}
.bti-sports-note h3 {
	color: #8b1a1a;
	margin-bottom: 14px;
}

/* Amenity badges (hostel) */
.bti-amenity-badge {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 10px;
	padding: 20px 16px;
	text-align: center;
	transition: box-shadow 0.25s;
}
.bti-amenity-badge:hover {
	box-shadow: 0 6px 20px rgba(90,30,30,0.1);
}
.bti-amenity-badge i {
	font-size: 26px;
	color: #8b1a1a;
	display: block;
	margin-bottom: 10px;
}
.bti-amenity-badge span {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.bti-hostel-info-card {
	background: var(--bti-section-alt);
	border-radius: 10px;
	padding: 28px 24px;
	height: 100%;
}
.bti-hostel-info-card h3 {
	color: #8b1a1a;
	margin-bottom: 16px;
}
.bti-hostel-info-card h3 i {
	margin-right: 8px;
}
.bti-hostel-info-card ul {
	padding-left: 18px;
	margin: 0;
}
.bti-hostel-info-card li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #444;
}
.bti-hostel-contact {
	font-size: 14px;
	color: #555;
}
.bti-hostel-contact a {
	color: #8b1a1a;
}

/* ==========================================================================
   Library / Admissions / NSS page components
   ========================================================================== */

.bti-section-heading-sm {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	line-height: 1.3;
}
.bti-section-heading-sm span {
	color: #8b1a1a;
}

/* Stat cards (library, NSS) */
.bti-lib-stat-card {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 10px;
	padding: 20px 12px;
	text-align: center;
}
.bti-lib-stat-card i {
	font-size: 24px;
	color: #8b1a1a;
	display: block;
	margin-bottom: 10px;
}
.bti-lib-stat-card__number {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	display: block;
	line-height: 1;
}
.bti-lib-stat-card__label {
	font-size: 12px;
	color: #777;
	margin-top: 4px;
	display: block;
}

/* Library feature list */
.bti-lib-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
}
.bti-lib-list li {
	padding: 8px 0;
	border-bottom: 1px solid #f0ebe0;
	font-size: 14px;
	color: #444;
}
.bti-lib-list li:last-child { border-bottom: none; }
.bti-lib-list li i {
	color: #8b1a1a;
	margin-right: 8px;
}

/* Admissions PPT slide */
.bti-ppt-slide {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ede5d8;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.bti-ppt-slide__img {
	width: 100%;
	display: block;
}

/* Admissions info card */
.bti-admission-info-card {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 10px;
	padding: 28px 24px;
	height: 100%;
}
.bti-admission-info-card h3 {
	color: #8b1a1a;
	margin-bottom: 16px;
	font-size: 17px;
}
.bti-admission-info-card h3 i {
	margin-right: 8px;
}
.bti-admission-info-card ul {
	padding-left: 18px;
	margin: 0;
}
.bti-admission-info-card li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #444;
}
.bti-admission-info-card--dark li {
	color: #fff;
}

/* NSS photo mosaic */
.bti-nss-photo-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.bti-nss-photo-mosaic__item {
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1;
	background: #111;
}
.bti-nss-photo-mosaic__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.bti-nss-photo-mosaic__item:hover .bti-nss-photo-mosaic__img {
	transform: scale(1.05);
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.bti-contact-card {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 10px;
	padding: 32px 24px;
	text-align: center;
	height: 100%;
	transition: box-shadow 0.25s, transform 0.25s;
}
.bti-contact-card:hover {
	box-shadow: 0 8px 28px rgba(90,30,30,0.1);
	transform: translateY(-4px);
}
.bti-contact-card__icon {
	width: 60px;
	height: 60px;
	background: var(--bti-section-alt);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}
.bti-contact-card__icon i {
	font-size: 24px;
	color: #8b1a1a;
}
.bti-contact-card__title {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 10px;
}
.bti-contact-card__text {
	font-size: 14px;
	color: #555;
	margin-bottom: 6px;
}
.bti-contact-card__text a {
	color: #8b1a1a;
	word-break: break-all;
}
.bti-contact-dept-heading {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	border-bottom: 2px solid #f0ebe0;
	padding-bottom: 12px;
}
.bti-dept-contact-card {
	background: #fff;
	border: 1px solid #ede5d8;
	border-radius: 8px;
	padding: 20px 18px;
	height: 100%;
}
.bti-dept-contact-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: #8b1a1a;
	margin-bottom: 6px;
}
.bti-dept-contact-card p {
	font-size: 13px;
	color: #555;
	margin-bottom: 6px;
}
.bti-dept-contact-card a {
	font-size: 12px;
	color: #8b1a1a;
	word-break: break-all;
}
.bti-contact-map {
	line-height: 0;
}

/* ============================================================
   MoU / Collaborations page
   ============================================================ */
.bti-mou-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 16px rgba(0,0,0,.08);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.bti-mou-card__photo {
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.bti-mou-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.bti-mou-card:hover .bti-mou-card__img {
	transform: scale(1.04);
}
.bti-mou-card__body {
	padding: 20px 22px;
	flex: 1;
}
.bti-mou-card__badge {
	display: inline-block;
	background: #f0ebe0;
	color: #8b1a1a;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 3px 10px;
	border-radius: 30px;
	margin-bottom: 10px;
}
.bti-mou-card__company {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 6px;
	line-height: 1.3;
}
.bti-mou-card__dept {
	font-size: 13px;
	color: #8b1a1a;
	margin-bottom: 10px;
}
.bti-mou-card__dept i {
	margin-right: 5px;
}
.bti-mou-card__purpose {
	font-size: 13.5px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 12px;
}
.bti-mou-card__year {
	font-size: 12px;
	color: #888;
	font-weight: 600;
}
.bti-mou-card__year i {
	margin-right: 4px;
}
.bti-mou-card__extra {
	border-top: 1px solid #f0ebe0;
}
.bti-mou-card__extra-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

/* Department MoU list cards */
.bti-mou-dept-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0,0,0,.07);
	overflow: hidden;
	height: 100%;
}
.bti-mou-dept-card__header {
	background: #8b1a1a;
	color: #fff;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.bti-mou-dept-card__header i {
	font-size: 20px;
	opacity: .9;
}
.bti-mou-dept-card__header h3 {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.bti-mou-dept-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.bti-mou-dept-table thead tr {
	background: var(--bti-section-alt);
}
.bti-mou-dept-table th {
	padding: 10px 14px;
	color: #8b1a1a;
	font-weight: 700;
	text-align: left;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.bti-mou-dept-table td {
	padding: 10px 14px;
	border-bottom: 1px solid #f0ebe0;
	color: #444;
	vertical-align: top;
}
.bti-mou-dept-table tbody tr:last-child td {
	border-bottom: none;
}
.bti-mou-dept-table tbody tr:hover {
	background: #faf7f2;
}

/* Lab photo gallery strip (departments with extra photos) */
.bti-lab-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px;
}
.bti-lab-gallery__item {
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 4/3;
}
.bti-lab-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.bti-lab-gallery__item:hover .bti-lab-gallery__img {
	transform: scale(1.06);
}

/* ── btibangalore.org-style top quick-links bar ────────────────────── */
.bti-quicklinks-bar {
	background: #3A1212;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	z-index: 200;
	position: relative;
}
.bti-ql-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	gap: 10px;
	flex-wrap: wrap;
}
.bti-ql-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}
.bti-ql-links li a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Mada', 'Jost', sans-serif;
	letter-spacing: 0.03em;
	padding: 4px 10px;
	border-radius: 3px;
	transition: background 0.15s;
}
.bti-ql-links li a:hover {
	background: rgba(255, 255, 255, 0.12);
}
.bti-ql-center {
	flex: 0 0 auto;
}
.bti-ql-incubation {
	display: inline-block;
	background: #F7FF00;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Mada', 'Jost', sans-serif;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 5px 14px;
	border-radius: 3px;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
}
.bti-ql-incubation:hover {
	background: #e0e800;
	color: #1a1a1a;
}
.bti-ql-codes {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.bti-ql-code {
	display: inline-block;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Mada', 'Jost', sans-serif;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
}
@media (max-width: 767px) {
	.bti-ql-center { order: -1; width: 100%; text-align: center; }
	.bti-ql-links { justify-content: center; }
	.bti-ql-codes { justify-content: center; width: 100%; }
}

/* ── Accreditation badge images in logo row (not the header strip) ── */
.bti-logo-badges {
	gap: 8px;
}
.bti-logo-badges .bti-acc-badge-img {
	height: 44px;
	width: auto;
	border-radius: 5px;
	display: block;
	transition: opacity 0.15s, transform 0.15s;
}
.bti-logo-badges a:hover .bti-acc-badge-img {
	opacity: 0.85;
	transform: translateY(-1px);
}
@media (max-width: 1199px) {
	.bti-logo-badges { display: none !important; }
}

/* ── External CTA buttons in header (campus.uno + Campus Connector) ── */
.bti-header-ext-ctas {
	flex-shrink: 0;
}
.bti-ext-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Mada', 'Jost', sans-serif;
	letter-spacing: 0.03em;
	text-decoration: none;
	padding: 7px 16px;
	border-radius: 4px;
	white-space: nowrap;
	transition: opacity 0.15s, transform 0.15s;
}
.bti-ext-btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}
.bti-ext-btn--green {
	background: #03A71A;
	color: #fff !important;
}
.bti-ext-btn--navy {
	background: #092C57;
	color: #fff !important;
}
@media (max-width: 991px) {
	.bti-header-ext-ctas { display: none !important; }
}

/* ── Mada font for headings (matches btibangalore.org) ─────────────── */
h1, h2, h3, h4, h5, h6,
.bti-section-heading,
.section-title h2,
.about-title h2,
.bti-heading-lg {
	font-family: 'Mada', 'Jost', sans-serif;
}

/* ── Hamburger bars — hide MeanMenu spans, draw 3 clean lines via gradient ──── */
.bti-header .mean-container a.meanmenu-reveal span {
	display: none !important;
}
.bti-header .mean-container a.meanmenu-reveal {
	background-image: linear-gradient(
		to bottom,
		var(--bti-maroon) 0px,  var(--bti-maroon) 3px,
		transparent      3px,  transparent      10px,
		var(--bti-maroon) 10px, var(--bti-maroon) 13px,
		transparent      13px, transparent      20px,
		var(--bti-maroon) 20px, var(--bti-maroon) 23px
	) !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 22px 23px !important;
	background-color: #fff !important;
}

/* ── Hide scroll-to-top button ──────────────────────────────────────── */
#scrollUp { display: none !important; }

/* ── Admissions page ─────────────────────────────────────────────────── */
.bti-adm-list { list-style: none; padding: 0; margin: 0; }
.bti-adm-list li { padding: 6px 0; line-height: 1.6; }

/* Step-by-step process */
.bti-adm-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}
.bti-adm-step {
	background: #fff;
	border-radius: 12px;
	padding: 28px 22px 24px;
	text-align: center;
	box-shadow: 0 2px 14px rgba(0,0,0,.07);
	position: relative;
}
.bti-adm-step__num {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: #8B3D32;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	padding: 3px 10px;
	border-radius: 999px;
}
.bti-adm-step__icon {
	font-size: 28px;
	color: #8B3D32;
	margin: 10px 0 12px;
}
.bti-adm-step__title {
	font-size: 15px;
	font-weight: 700;
	color: #20282E;
	margin-bottom: 10px;
}
.bti-adm-step__desc {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 767px) {
	.bti-adm-steps { grid-template-columns: 1fr 1fr; }
	.bti-adm-hero { padding-top: 60px !important; padding-bottom: 50px !important; }
}

/* Accreditation strip — final override (wins over stale theme/cache rules on live hosts) */
header.bti-header.bti-header .bti-accreditation-bar .bti-acc-badge-icon {
	flex: 0 0 48px !important;
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	min-height: 48px !important;
	overflow: hidden !important;
}
header.bti-header.bti-header .bti-accreditation-bar img.bti-acc-badge-img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: contain !important;
	object-position: center !important;
}
/* Gallery page — categorized photo grid + lightbox zoom hint */
.bti-gallery-item {
	display: block;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.bti-gallery-item img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.bti-gallery-item__zoom {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 22px;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.bti-gallery-item:hover img {
	transform: scale(1.06);
}
.bti-gallery-item:hover .bti-gallery-item__zoom {
	opacity: 1;
}
.bti-gallery-cat:nth-of-type(even) {
	background: #f9f4ec;
}
