﻿
:root {
	/*   --maroon: #800000;
            --dark-maroon: #5a0000; */
	--maroon: #42618f;
	--dark-maroon: #1a3a6b;
	--gold: #c8a951;
	--light-gold: #f5e6b0;
	--text-dark: #1a1a1a;
	--bg-light: #f5f5f0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', sans-serif;
	font-size: 13.5px;
	color: var(--text-dark);
	background: #fff;
}

/* TOP UTILITY BAR */
.utility-bar {
	background: #222;
	color: #ccc;
	font-size: 12px;
	padding: 4px 0;
}

	.utility-bar a {
		color: #ddd;
		text-decoration: none;
		margin: 0 6px;
	}

		.utility-bar a:hover {
			color: #fff;
		}

.font-size-btns span {
	cursor: pointer;
	margin: 0 3px;
	padding: 1px 6px;
	border: 1px solid #555;
	border-radius: 3px;
	color: #ddd;
	font-weight: bold;
}

	.font-size-btns span:hover {
		background: #555;
	}

/* HEADER */
.site-header {
	/* //background: linear-gradient(135deg, var(--maroon) 0%, #a00000 60%, var(--dark-maroon) 100%); */
	background: white;
	padding: 10px 0 0 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px 10px;
}

/*.logo-area {
	display: flex;
	align-items: center;
	gap: 15px;
}*/

	/*.logo-area img.main-logo {
		height: 90px;
	}*/

.univ-name-block {
	color: #42618f;
}

	.univ-name-block h1 {
		font-size: 42px;
		font-weight: 800;
		letter-spacing: 1px;
		text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
		font-family: 'Georgia', serif;
	}

	.univ-name-block p {
		font-size: 13px;
		color: #f04042;
		margin: 0;
		font-weight: bold;
		/* letter-spacing: 0.5px; */
	}

.naac-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

	.naac-badge .badge-box {
		background: var(--gold);
		color: #fff;
		padding: 8px 14px;
		border-radius: 6px;
		font-size: 22px;
		font-weight: 900;
		text-align: center;
		line-height: 1;
		box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	}

	.naac-badge span {
		color: var(--light-gold);
		font-size: 11px;
	}

/* MAIN NAVBAR */
.main-nav {
	background: var(--dark-maroon);
}

	.main-nav .navbar {
		padding: 0;
	}

	.main-nav .nav-link {
		color: #fff !important;
		font-size: 13px;
		font-weight: 600;
		padding: 12px 14px !important;
		border-right: 1px solid rgba(255,255,255,0.12);
		text-transform: uppercase;
		letter-spacing: 0.3px;
	}

		.main-nav .nav-link:hover,
		.main-nav .nav-link:focus {
			background: var(--maroon);
			color: var(--light-gold) !important;
		}

	.main-nav .dropdown-menu {
		background: #fff;
		border: none;
		border-radius: 0 0 6px 6px;
		box-shadow: 0 6px 20px rgba(0,0,0,0.15);
		min-width: 220px;
		padding: 5px 0;
		margin-top: 0;
	}

	.main-nav .dropdown-item {
		font-size: 12.5px;
		padding: 7px 18px;
		color: #333;
		border-bottom: 1px solid #f0f0f0;
	}

		.main-nav .dropdown-item:hover {
			background: var(--light-gold);
			color: var(--maroon);
		}

	.main-nav .dropdown-submenu {
		position: relative;
	}

		.main-nav .dropdown-submenu > .dropdown-menu {
			left: 100%;
			top: 0;
			border-radius: 0 6px 6px 6px;
		}

.navbar-toggler {
	border: 1px solid rgba(255,255,255,0.4);
}

.navbar-toggler-icon {
	filter: invert(1);
}

/* TICKER */
.ticker-wrap {
	background: var(--light-gold);
	border-top: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
	padding: 6px 0;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.ticker-label {
	background: var(--maroon);
	color: #fff;
	padding: 2px 14px;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
	letter-spacing: 1px;
}

.ticker-track {
	display: flex;
	white-space: nowrap;
	animation: ticker 30s linear infinite;
}

	.ticker-track span {
		font-size: 12.5px;
		color: var(--dark-maroon);
		padding: 0 30px;
		font-weight: 500;
	}

		.ticker-track span::after {
			content: '|';
			padding-left: 30px;
			color: var(--gold);
		}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* HERO CAROUSEL */
.hero-carousel {
	position: relative;
}

	.hero-carousel .carousel-item {
		height: 420px;
		overflow: hidden;
	}

.carousel-slide {
	width: 100%;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	position: relative;
}



	.carousel-slide .slide-content {
		text-align: center;
		z-index: 2;
		padding: 30px;
	}

		.carousel-slide .slide-content h2 {
			font-size: 30px;
			font-family: 'Georgia', serif;
			margin-bottom: 12px;
			text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
		}

		.carousel-slide .slide-content p {
			font-size: 15px;
			color: rgba(255,255,255,0.85);
			max-width: 600px;
			margin: 0 auto 18px;
		}

		.carousel-slide .slide-content .btn {
			background: var(--gold);
			color: #fff;
			border: none;
			font-weight: 600;
			padding: 8px 24px;
			border-radius: 20px;
		}

	.carousel-slide::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="70" r="25" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="90" r="20" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat;
		background-size: cover;
	}

.carousel-control-prev-icon, .carousel-control-next-icon {
	filter: drop-shadow(0 0 4px rgba(0,0,0,0.8));
}

/* QUICK LINKS CARDS */
.quick-links-section {
	background: var(--bg-light);
	padding: 18px 0;
	border-bottom: 2px solid #e0d8c8;
}

.quick-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e0d0b0;
	border-top: 3px solid var(--maroon);
	border-radius: 6px;
	padding: 14px 10px;
	text-decoration: none;
	color: var(--maroon);
	font-weight: 600;
	font-size: 12.5px;
	text-align: center;
	transition: all 0.2s;
	gap: 8px;
	height: 100%;
}

	.quick-card i {
		font-size: 22px;
		color: var(--gold);
	}

	.quick-card:hover {
		background: var(--maroon);
		color: #fff;
		transform: translateY(-3px);
		box-shadow: 0 6px 18px rgba(128,0,0,0.18);
	}

		.quick-card:hover i {
			color: #fff;
		}

/* MAIN CONTENT AREA */
.main-section {
	padding: 24px 0;
}

.section-title {
	font-family: 'Georgia', serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--maroon);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 7px;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

	.section-title i {
		color: var(--gold);
	}

/* NEWS PANEL */
.news-panel {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

	.news-panel .panel-header {
		background: var(--maroon);
		color: #fff;
		padding: 8px 15px;
		font-weight: 700;
		font-size: 13px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		.news-panel .panel-header a {
			color: var(--light-gold);
			font-size: 11px;
			text-decoration: none;
		}

.news-scroll {
	height: 260px;
	overflow-y: auto;
}

	.news-scroll::-webkit-scrollbar {
		width: 4px;
	}

	.news-scroll::-webkit-scrollbar-thumb {
		background: var(--gold);
		border-radius: 2px;
	}

.news-item {
	display: flex;
	gap: 10px;
	padding: 9px 14px;
	border-bottom: 1px solid #f0f0f0;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

	.news-item:hover {
		background: #fdf8ee;
	}

	.news-item .news-date {
		min-width: 50px;
		background: var(--maroon);
		color: #fff;
		border-radius: 4px;
		text-align: center;
		padding: 3px 6px;
		font-size: 11px;
		font-weight: 700;
		line-height: 1.3;
	}

	.news-item p {
		font-size: 12.5px;
		margin: 0;
		color: #333;
		line-height: 1.5;
	}

.new-tag {
	display: inline-block;
	background: #e00;
	color: #fff;
	font-size: 10px;
	padding: 1px 5px;
	border-radius: 3px;
	font-weight: 700;
	margin-left: 5px;
	animation: blink 1s step-end infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

/* NOTICE PANEL */
.notice-panel {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

	.notice-panel .panel-header {
		background: #1a3a6b;
		color: #fff;
		padding: 8px 15px;
		font-weight: 700;
		font-size: 13px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		.notice-panel .panel-header a {
			color: #aac4f0;
			font-size: 11px;
			text-decoration: none;
		}

.notice-item {
	padding: 8px 14px;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	gap: 8px;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

	.notice-item:hover {
		background: #f0f5ff;
	}

	.notice-item i {
		color: #1a3a6b;
		margin-top: 2px;
		font-size: 12px;
		flex-shrink: 0;
	}

	.notice-item p {
		font-size: 12.5px;
		margin: 0;
		color: #333;
	}

/* EVENTS */
.event-card {
	background: #fff;
	border: 1px solid #e0d8c8;
	border-left: 4px solid var(--gold);
	border-radius: 4px;
	padding: 10px 14px;
	margin-bottom: 10px;
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s;
}

	.event-card:hover {
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		transform: translateX(3px);
	}

.event-date-box {
	min-width: 50px;
	background: var(--maroon);
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 6px 4px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
}

	.event-date-box .day {
		font-size: 22px;
		line-height: 1;
	}

.event-info h6 {
	font-size: 13px;
	font-weight: 600;
	color: var(--maroon);
	margin: 0 0 3px;
}

.event-info p {
	font-size: 12px;
	color: #666;
	margin: 0;
}

/* STATS COUNTER */
.stats-section {
	background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
	padding: 28px 0;
	color: #fff;
}

.stat-item {
	text-align: center;
	padding: 10px;
}

.stat-num {
	font-size: 36px;
	font-weight: 800;
	color: var(--gold);
	font-family: 'Georgia', serif;
}

.stat-label {
	font-size: 13px;
	color: rgba(255,255,255,0.85);
	margin-top: 4px;
}

/* ============================================
                           GALLERY SLIDER — NEW
 ============================================ */
.gallery-section {
	background: #ffffff;
	padding: 28px 0;
}

.gallery-slider-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.gallery-slides-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Each slide shows 4 items on desktop, 2 on mobile */
.gallery-slide-item {
	flex: 0 0 25%;
	padding: 0 5px;
	box-sizing: border-box;
}

@media(max - width: 768px) {
	.gallery-slide-item {
		flex: 0 0 50%;
	}
}

@media(max - width: 480px) {
	.gallery-slide-item {
		flex: 0 0 50%;
	}
}

.gallery-item {
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	box-shadow: 0 3px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

	.gallery-item:hover {
		transform: scale(1.03);
	}

	.gallery-item .gallery-placeholder {
		width: 100%;
		height: 160px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		font-size: 13px;
		font-weight: 600;
		color: #fff;
		position: relative;
		padding-bottom: 30px;
	}

@media(max - width: 576px) {
	.gallery-item .gallery-placeholder {
		height: 120px;
		font-size: 11px;
	}
}

.gallery-placeholder .gal-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.65));
	padding: 20px 10px 8px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

.gallery-placeholder .gal-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-60%);
	opacity: 0.35;
}

.gp1 {
	background: linear-gradient(135deg, #800000, #c00);
}

.gp2 {
	background: linear-gradient(135deg, #1a3a6b, #2a5ab0);
}

.gp3 {
	background: linear-gradient(135deg, #1a5a2a, #2a9a40);
}

.gp4 {
	background: linear-gradient(135deg, #6b3a1a, #b06a30);
}

.gp5 {
	background: linear-gradient(135deg, #3a1a6b, #7030c0);
}

.gp6 {
	background: linear-gradient(135deg, #1a5a4a, #30a080);
}

.gp7 {
	background: linear-gradient(135deg, #6b6b1a, #b0b030);
}

.gp8 {
	background: linear-gradient(135deg, #6b1a1a, #c03030);
}

.gallery-item .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
	opacity: 1;
}

.gallery-item .overlay i {
	color: #fff;
	font-size: 28px;
}

/* Gallery Nav Buttons */
.gal-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--maroon);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	font-size: 15px;
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 12px rgba(0,0,0,0.3);
	transition: all 0.2s;
}

	.gal-nav-btn:hover {
		background: var(--dark-maroon);
		transform: translateY(-50%) scale(1.1);
	}

.gal-prev {
	left: 4px;
}

.gal-next {
	right: 4px;
}

/* Gallery Dots */
.gal-dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 14px;
}

.gal-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}

	.gal-dot.active {
		background: var(--maroon);
		width: 24px;
		border-radius: 5px;
	}

/* FOOTER TOP */
.footer-links-section {
	background: #1a1a1a;
	color: #ccc;
	padding: 30px 0 20px;
}

.footer-col h5 {
	color: var(--gold);
	font-size: 13px;
	font-weight: 700;
	border-bottom: 1px solid #333;
	padding-bottom: 8px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

	.footer-col ul li {
		margin-bottom: 5px;
	}

		.footer-col ul li a {
			color: #bbb;
			text-decoration: none;
			font-size: 12px;
			display: flex;
			align-items: center;
			gap: 5px;
			transition: color 0.2s;
		}

			.footer-col ul li a::before {
				content: '›';
				color: var(--gold);
				font-weight: bold;
			}

			.footer-col ul li a:hover {
				color: var(--gold);
				padding-left: 4px;
			}

/* FOOTER BOTTOM */
.footer-bottom {
	background: #111;
	color: #888;
	padding: 12px 0;
	font-size: 12px;
	text-align: center;
}

	.footer-bottom a {
		color: var(--gold);
		text-decoration: none;
	}

/* SOCIAL ICONS */
.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.social-icons1 {
	display: flex;
	/*gap: 10px;*/
	/*margin-top: 15px;*/
}

	.social-icons1 a {
		width: 34px;
		height: 34px;
		background: #1a3a6b;
		color: #ccc;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		text-decoration: none;
		transition: all 0.2s;
	}

	.social-icons1 a:hover {
		background: var(--maroon);
		color: #fff;
	}

	.social-icons a {
		width: 34px;
		height: 34px;
		background: #333;
		color: #ccc;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		text-decoration: none;
		transition: all 0.2s;
	}

		.social-icons a:hover {
			background: var(--maroon);
			color: #fff;
		}

/* IMPORTANT LINKS SIDEBAR */
.imp-links-box {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

	.imp-links-box .box-header {
		background: #c8a951;
		color: #fff;
		padding: 8px 14px;
		font-weight: 700;
		font-size: 13px;
	}

.imp-link-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-bottom: 1px solid #f0f0f0;
	text-decoration: none;
	color: #333;
	font-size: 12.5px;
	transition: background 0.15s;
}

	.imp-link-item i {
		color: var(--maroon);
		font-size: 13px;
	}

	.imp-link-item:hover {
		background: var(--light-gold);
		color: var(--maroon);
	}

/* FLASH ALERT */
.flash-alert {
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 8px 16px;
	font-size: 12.5px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #664d03;
}

/* Admission badge */
.adm-section {
	background: #fff;
	border: 1px solid #e0d8c8;
	border-radius: 6px;
	overflow: hidden;
	margin-top: 14px;
}

	.adm-section .adm-header {
		background: #1a5a2a;
		color: #fff;
		padding: 8px 14px;
		font-weight: 700;
		font-size: 13px;
	}

.adm-item {
	padding: 8px 14px;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
}

	.adm-item i {
		color: #1a5a2a;
	}

	.adm-item a {
		color: #1a3a6b;
		text-decoration: none;
	}

		.adm-item a:hover {
			text-decoration: underline;
			color: var(--maroon);
		}

/* Responsive */
@media (max-width: 768px) {
	.header-inner {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.univ-name-block h1 {
		font-size: 20px;
	}

	.carousel-slide {
		height: 280px;
	}

	.hero-carousel .carousel-item {
		height: 280px;
	}

	.stat-num {
		font-size: 26px;
	}
}

/* Preloader */
#preloader {
	position: fixed;
	inset: 0;
	background: var(--maroon);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	flex-direction: column;
	gap: 16px;
	transition: opacity 0.5s;
}

	#preloader .spinner-border {
		color: white;
		width: 48px;
		height: 48px;
		border-width: 4px;
	}

	#preloader p {
		color: #fff;
		font-size: 14px;
		letter-spacing: 2px;
	}

/* Back to top */
#backTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--maroon);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	font-size: 16px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 12px rgba(0,0,0,0.3);
	z-index: 999;
	transition: all 0.2s;
}

	#backTop:hover {
		background: var(--dark-maroon);
		transform: translateY(-3px);
	}

#whatsappBtn {
	position: fixed;
	bottom: 80px;
	right: 30px;
	background: #25D366;
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	/* Glow */
	box-shadow: 0 0 10px #25D366, 0 0 20px #25D366;
	/* Animation */
	animation: whatsappGlow 1.5s infinite;
}

/* Glow Animation */
@keyframes whatsappGlow {
	0% {
		box-shadow: 0 0 5px #25D366, 0 0 10px #25D366;
		transform: scale(1);
	}

	50% {
		box-shadow: 0 0 20px #25D366, 0 0 40px #25D366;
		transform: scale(1.08);
	}

	100% {
		box-shadow: 0 0 5px #25D366, 0 0 10px #25D366;
		transform: scale(1);
	}
}

/* Hover aur strong karne ke liye */
#whatsappBtn:hover {
	background: #1ebe5d;
	transform: scale(1.1);
}
/* ============================================
                           HAPPY CLIENTS / TESTIMONIALS — NEW
                           ============================================ */
.clients-section {
	background: #fff;
	padding: 40px 0;
	border-top: 3px solid var(--light-gold);
}

	.clients-section .sec-head {
		text-align: center;
		margin-bottom: 28px;
	}

		.clients-section .sec-head h3 {
			font-family: 'Georgia', serif;
			font-size: 24px;
			font-weight: 700;
			color: var(--maroon);
			margin-bottom: 6px;
		}

		.clients-section .sec-head p {
			font-size: 13px;
			color: #888;
		}

		.clients-section .sec-head .divider {
			width: 60px;
			height: 3px;
			background: linear-gradient(90deg, var(--maroon), var(--gold));
			margin: 10px auto 0;
			border-radius: 2px;
		}

/* Testimonial slider */
.testi-slider-wrap {
	position: relative;
	overflow: hidden;
}

.testi-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.testi-item {
	flex: 0 0 33.333%;
	padding: 0 10px;
	box-sizing: border-box;
}

@media(max - width: 768px) {
	.testi-item {
		flex: 0 0 100%;
	}
}

@media(min - width: 769px) and (max-width: 1024px) {
	.testi-item {
		flex: 0 0 50%;
	}
}

.testi-card {
	background: #fff;
	border-radius: 12px;
	padding: 22px 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border-top: 4px solid var(--gold);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.3s, box-shadow 0.3s;
}

	.testi-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	}

.testi-stars {
	color: var(--gold);
	font-size: 14px;
}

.testi-text {
	font-size: 13px;
	color: #444;
	line-height: 1.75;
	font-style: italic;
	flex: 1;
	position: relative;
	padding-left: 20px;
}

	.testi-text::before {
		content: '\201C';
		position: absolute;
		left: 0;
		top: -6px;
		font-size: 36px;
		color: var(--gold);
		line-height: 1;
		font-family: Georgia, serif;
	}

.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	flex-shrink: 0;
	font-family: Georgia, serif;
}

.testi-info h6 {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--dark-maroon);
	margin: 0 0 2px;
}

.testi-info span {
	font-size: 11.5px;
	color: #999;
}

.testi-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 1px 8px;
	border-radius: 10px;
	margin-top: 3px;
	background: var(--light-gold);
	color: var(--maroon);
}

/* Testi nav */
.testi-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
}

.testi-nav-btn {
	background: var(--maroon);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

	.testi-nav-btn:hover {
		background: var(--dark-maroon);
		transform: scale(1.1);
	}

.testi-dots {
	display: flex;
	gap: 6px;
}

.testi-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}

	.testi-dot.active {
		background: var(--maroon);
		width: 22px;
		border-radius: 4px;
	}


.ticker-track a {
	font-size: 12.5px;
	color: var(--dark-maroon);
	padding: 0 30px;
	font-weight: 500;
	text-decoration: none
}

 