.about-experience .text-start {
	width: 120px;
	line-height: normal;
}

/* ===================
34. curriculum css 
====================== */

.curriculum-area {
	position: relative;
}

.curriculum-item {
	position: relative;
	background: var(--color-white);
	border-radius: 50px 50px 50px 0;
	padding: 30px;
	margin-bottom: 25px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

:root {
  --theme-color2: #FDA31B; /* fixed theme color */
}

.curriculum-item {
    position: relative;
    overflow: hidden;
}

/* Orange ring - always visible */
.curriculum-item::before {
    content: "";
    position: absolute;
    right: -10px;
    top: -10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 10px solid var(--theme-color2);
    opacity: .8;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

/* Animate on hover (scale + rotate) */
.curriculum-item:hover::before {
    transform: scale(1.2) rotate(20deg);
    opacity: 1;
}

/* Headings always orange */
.curriculum-item h4,
.curriculum-item h3 {
    color: var(--theme-color2) !important;
}

/* "Know More" link always orange */
.curriculum-item a {
    color: var(--theme-color2) !important;
    font-weight: bold;
    text-decoration: none;
}

.curriculum-item a:hover {
    color: var(--theme-color2) !important;
    text-decoration: underline; /* optional */
}


.curriculum-item:hover::before {
	opacity: 1;
}

.curriculum-icon {
	margin-bottom: 20px;
}

.curriculum-icon img {
	width: 100% !important;
}

.curriculum-title {
	margin-bottom: 10px;
}

.curriculum-title:hover {
	color: var(--theme-color2);
}

.curriculum-btn {
	margin-top: 10px;
}

.curriculum-btn a {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.curriculum-btn a:hover {
	color: var(--theme-color2);
}

.curriculum-btn a i {
	margin-left: 5px;
}

.curriculum-items .curriculum-item {
	box-shadow: none;
	margin-bottom: 0;
}

/*==================
35. curriculum single
====================*/

.curriculum-single-list i {
	color: var(--theme-color2);
	margin-right: 10px;
}

.curriculum-download a {
	border: 2px solid var(--theme-color2);
	padding: 12px 20px;
	color: var(--color-dark);
	display: block;
	margin-bottom: 20px;
	border-radius: 30px 30px 30px 0;
	font-weight: 600;
	transition: var(--transition);
}

.curriculum-download a i {
	margin-right: 10px;
}

.curriculum-download a:hover {
	background-color: var(--theme-color2);
	color: var(--color-white);
}

.curriculum-details h3 {
	color: var(--color-dark);
}

.curriculum-details img {
	border-radius: 20px;
}



/* ===================
30. academics css 
====================== */

.academics-item {
	position: relative;
	background: var(--color-white);
	border-radius: 50px 50px 50px 0;
	padding: 20px 20px 20px 20px;
	margin-bottom: 25px;
	box-shadow: var(--box-shadow);
}

.academics-location {
	margin-bottom: 12px;
}

.academics-location i {
	color: var(--theme-color2);
}

.academics-img {
	position: relative;
	overflow: hidden;
	border-radius: 40px 40px 40px 0;
}

.academics-img img {
	border-radius: 40px 40px 40px 0;
	box-shadow: var(--box-shadow);
}

.academics-item:hover .academics-img img {
	transform: scale(1.1);
}

.academics-meta {
	display: flex;
	gap: 15px;
	margin: 14px 0;
}

.academics-meta i {
	color: var(--theme-color2);
	margin-right: 5px;
}

.academics-title {
	margin-bottom: 10px;
}

.academics-title:hover {
	color: var(--theme-color2);
}

.academics-btn {
	margin-top: 20px;
}

.academics-btn .theme-btn {
	padding: 11px 15px;
}

.academics-slider .academics-item {
	box-shadow: none;
	margin-bottom: 0;
}

.academics-slider .owl-dots {
	text-align: center;
	margin-top: 40px;
}

.academics-slider .owl-dots .owl-dot span {
	background: var(--theme-color2);
	border-radius: 50px;
	margin: 5px;
	width: 8px;
	height: 8px;
	display: inline-block;
	transition: var(--transition);
}

.academics-slider .owl-dots .owl-dot.active span {
	background-color: var(--theme-color2);
	width: 20px;
}

.academics-slider .owl-nav {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	margin: 0;
}

.academics-slider:hover .owl-nav {
	display: block;
	opacity: 1;
	visibility: visible;
}

.academics-slider .owl-nav button {
	height: 48px;
	width: 48px;
	line-height: 45px !important;
	top: 50%;
	background: var(--theme-color2) !important;
	color: var(--color-white) !important;
	font-size: 25px !important;
	position: absolute;
	border: none;
	margin: 0;
	padding: 0;
	transition: var(--transition);
	border-radius: 100%;
	margin-top: -24px;
}

.academics-slider .owl-nav button:hover {
	background: var(--theme-color) !important;
}

.academics-slider .owl-nav .owl-prev {
	left: -75px;
}

.academics-slider .owl-nav .owl-prev:hover {
	left: -65px;
}

.academics-slider .owl-nav .owl-next {
	right: -75px;
}

.academics-slider .owl-nav .owl-next:hover {
	right: -65px;
}



/* ===================
31. academics single css 
====================== */

.academics-details img {
	border-radius: 20px;
}

.academics-map {
	margin-bottom: 20px;
}

.academics-map iframe {
	border-radius: 20px;
	height: 400px;
	width: 100%;
}

.academics-content-single {
	margin-bottom: 20px;
}

.academics-content-single h5 {
	margin-bottom: 5px;
}

.academics-content-single i {
	color: var(--theme-color2);
	margin-right: 5px;
}

.academics-single-info p {
	margin-bottom: 20px;
}

.academics-author-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	margin-top: 50px;
}

.academics-author-info img {
	border-radius: 50%;
}

.academics-author-info h5 {
	margin-top: 5px;
}

.feature-item {
	border-radius: 15px 15px 15px 15px;
}

.academics-img {
	margin-bottom: 15px;
}

.header-top::before {
	display: none;
}

/* CSS to make all carousels equal height */
.awards-area .academics-item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.awards-area .academics-img {
	flex: 1;
	min-height: 250px;
	/* Set a minimum height or use a fixed height */
}

.awards-area .academics-img .carousel,
.awards-area .academics-img .carousel-inner,
.awards-area .academics-img .carousel-item {
	height: 100%;
}

.awards-area .academics-img img {
	width: auto;
	height: 250px;
	object-fit: contain;
	/* or 'cover' depending on your preference */
	background-color: #f8f9fa;
	/* optional: adds background if images have transparent areas */
	padding: 30px 20px 20px 20px;
}

.awards-area .academics-info {
	/* Optional: if you want consistent info box height */
	min-height: 150px;
	/* adjust as needed */
}

/* Mobile menu container */
#mobile-menu-container {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
}

/* Menu items */
#mobile-menu-container li {
	border-bottom: 1px solid #e5e5e5;
	background: #fff;
}

#mobile-menu-container li:last-child {
	border-bottom: none;
}

#mobile-menu-container li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-dark);
	transition: background 0.2s ease;
}

#mobile-menu-container li a:hover {
	color: var(--theme-color);
}

/* Dropdown icon styling */
.dropdown-icon {
	font-size: 14px;
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.dropdown-icon.rotate {
	transform: rotate(90deg);
	/* ⬇️ effect */
}

/* Submenu accordion style */
#mobile-menu-container .dropdown-menu {
	display: none;
	flex-direction: column;
	padding-left: 15px;
	transition: all 0.3s ease;
	border: none;
}

#mobile-menu-container .dropdown-menu.open {
	display: flex;
}

#mobile-menu-container .dropdown-menu li a {
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-dark);
}

#mobile-menu-container .dropdown-menu li a:hover {
	color: var(--theme-color);
}

/* Optional: Scrollbar for long menus */
.offcanvas-body::-webkit-scrollbar {
	width: 6px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 6px;
}

/* Only apply in offcanvas/mobile menu */
.offcanvas .dropdown-menu {
	position: static !important;
	/* Prevent absolute positioning */
	float: none;
	width: 100%;
	margin: 0;
	padding-left: 15px;
	background-color: #f8f9fa;
	box-shadow: none;
	display: none;
	/* Start hidden */
	transition: all 0.3s ease;
}

.offcanvas .dropdown-menu.open {
	display: block;
}

.offcanvas .dropdown-menu li a {
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 400;
	background-color: #f8f9fa;
}

/* Reset dropdown fade and animation in mobile */
.offcanvas .fade-down {
	animation: none !important;
	opacity: 1 !important;
}

/* Chevron icon styling */
.offcanvas .dropdown-icon {
	font-size: 14px;
	transition: transform 0.3s ease;
	margin-left: auto;
}

.offcanvas .dropdown-icon.rotate {
	transform: rotate(90deg);
	/* ▼ */
}

.dropdown-toggle::after {
	border: none;
}

.hero-img {
	position: relative;
	width: 80%;
	margin-left: auto;
}

.hero-img img {
	border-radius: 50% 30px 30px 30px;
	max-width: 400px;
}

.hero-img::before {
	content: "";
	position: absolute;
	left: -20px;
	top: -20px;
	width: 95%;
	height: 95%;
	z-index: -1;
	border-radius: 50% 30px 30px;
	border: 5px solid var(--theme-color2);
}

@media (max-width: 991px) {
	.hero-img {
		margin: 0 auto;
	}

	.hero-single {
		padding-bottom: 150px;
	}

	.owl-carousel .owl-item img {
		margin-bottom: 50px;
	}

	.hero-single .hero-img::before {
		height: 100%;
		width: 100%;
	}

	.hero-img img {
		max-width: 100%;
	}
}

.feature-icon {
	margin-top: -60px;
}

/*==================
35. Page Common single
====================*/

.page-common-single-list i {
	color: var(--theme-color2);
	margin-right: 10px;
}

.page-common-download a {
	border: 2px solid var(--theme-color2);
	padding: 12px 20px;
	color: var(--color-dark);
	display: block;
	margin-bottom: 20px;
	border-radius: 30px 30px 30px 0;
	font-weight: 600;
	transition: var(--transition);
}

.page-common-download a i {
	margin-right: 10px;
}

.page-common-download a:hover {
	background-color: var(--theme-color2);
	color: var(--color-white);
}

.page-common-details h3 {
	color: var(--color-dark);
}

.page-common-details img {
	border-radius: 20px;
}

.page-common-list i {
	color: var(--theme-color2);
	margin-right: 10px;
	margin-left: -29px;
}

.page-common-list {
	margin-left: 30px;
}

.route-header {
	background-color: #fffb00;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 5px;
	color: #000;
}

.nav-tabs .nav-link {
	font-weight: 500;
}

.table-responsive {
	margin-bottom: 20px;
}

.table th {
	background-color: #7ad9ff;
}

.tab-content {
	padding: 15px;
	border-left: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
	border-radius: 0 0 5px 5px;
	padding-top: 40px;
}

.custom-gallery-item {
	position: relative;
	width: 100%;
	margin-bottom: 25px;
}

.custom-gallery-img {
	height: 100%;
}

.custom-gallery-img img {
	width: 100%;
	border-radius: 50px 50px 50px 0;
}

.custom-gallery-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.custom-gallery-info {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: var(--color-white);
	border-radius: 50px 50px 50px 0;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s;
}

.custom-gallery-item:hover .custom-gallery-info {
	bottom: 30px;
}

.custom-gallery-subtitle {
	font-size: 14px;
	color: var(--theme-color);
	margin-bottom: 7px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.custom-gallery-subtitle span {
	color: var(--theme-color);
}

.custom-gallery-title {
	color: var(--color-dark);
	font-size: 24px;
}

.custom-gallery-btn {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: var(--theme-color);
	color: var(--color-white);
	text-align: center;
	font-size: 24px;
	border-radius: 50px;
}

.custom-gallery-btn:hover {
	background: var(--theme-color2);
	color: var(--color-white);
}



/* Square thumbnails */
.gallery-img1 {
	width: 100%;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	background-color: #f0f0f0;
}

.thumb-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-img1:hover .thumb-img {
	transform: scale(1.05);
}

/* Popup image with white border and max size */
.mfp-img {
	max-width: 90vw !important;
	max-height: 90vh !important;
	box-sizing: border-box;
}

.page-common-list-2 li {
	list-style: decimal;
	line-height: 35px;
}


.testimonial-2-item {
	background: var(--color-white);
	border-radius: 0;
	padding: 25px 25px;
	margin: 6px;
	position: relative;
	border-bottom: 5px solid var(--theme-color2);
}

.testimonial-2-content {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.testimonial-2-quote p {
	color: var(--body-text-color);
	font-style: italic;
	font-weight: 500;
}

.testimonial-2-author-info {
	margin: 15px 0 10px 0;
}

.testimonial-2-author-img {
	width: 75px;
	padding: 4px;
	border-radius: 50px;
	border: 2px dashed var(--theme-color2);
}

.testimonial-2-author-img img {
	border-radius: 50%;
}

.testimonial-2-author-info h4 {
	font-size: 20px;
	color: var(--color-dark);
	margin-bottom: 2px;
}

.testimonial-2-author-info p {
	color: var(--theme-color2);
	font-weight: 500;
}

.testimonial-2-quote-icon {
	position: absolute;
	right: 0px;
	top: 0px;
	color: var(--color-white);
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
	background: var(--theme-color2);
	border-radius: 50px 50px 50px 0;
}

.testimonial-2-rate {
	color: var(--theme-color2);
	margin-bottom: 15px;
}

.hover-text-primary:hover {
	color: #0d6efd !important;
}

.contact-icon {
	width: 56px;
	height: 56px;
	transition: all 0.3s ease;
}

.contact-icon:hover {
	transform: scale(1.1);
}

.shadow-sm {
	transition: box-shadow 0.3s ease;
}

.shadow-sm:hover {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.footer-contact a {
	color: #fff;
}

.footer-contact a:hover {
	color: #fffb00;
}

.floating-buttons {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	z-index: 999;
	font-family: Arial, sans-serif;
}

.floating-btn {
	min-width: 40px;
	height: 120px;
	margin: 2px 0;
	background-color: #e74c3c;
	/* Red color for ERP */
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	padding: 10px 5px;
	text-decoration: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.floating-btn:hover {
	width: 45px;
}

.floating-btn.erp {
	background-color: #e74c3c;
	/* Red */
}

.floating-btn.erp:hover {
	background-color: #c0392b;
	/* Darker red */
	color: #fff;
}

.floating-btn.enquiry {
	background-color: #3498db;
	/* Blue */
}

.floating-btn.enquiry:hover {
	background-color: #2980b9;
	/* Darker blue */
	color: #fff;
}

.custom-close {
	position: absolute;
	top: -10px;
	/* Adjust to your needs */
	right: -10px;
	/* Adjust to your needs */
	z-index: 1051;
	background-color: white;
	border-radius: 50%;
	padding: 6px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.page-common-details p {
	text-align: justify;
}


/* Responsive Tab Styles */
.responsive-tabs {
	margin-bottom: 30px;
}

.tab-header {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 1px;
}

.tab-button {
	padding: 15px 20px;
	background: #f8f9fa;
	border: none;
	border-radius: 5px 5px 0 0;
	border: 1px solid #116e6333;
	cursor: pointer;
	font-weight: 600;
	color: #333;
	transition: all 0.3s ease;
	text-align: center;
	flex: 1;
	min-width: 120px;
	border-bottom: 3px solid transparent;
	line-height: normal;
}

.tab-button:hover {
	background: #e9ecef;
}

.tab-button.active {
	background: var(--theme-color);
	color: #fff;
	border-bottom: 3px solid var(--theme-color);
}

.tab-content {
	display: none;
	background: #fff;
	border: none;
	border-top: 3px solid var(--theme-color);
}

.tab-content.active {
	display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.tab-header {
		flex-direction: row;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}

	.tab-button {
		min-width: 150px;
		padding: 10px 15px;
		font-size: 14px;
		flex: 0 0 auto;
		border-radius: 5px;
		margin-bottom: 0;
	}

	.tab-content {
		padding: 15px;
		border-radius: 0px;
	}
}

/* Content Styles */
.page-common-details h3 {
	color: #2c3e50;
	margin-bottom: 20px;
}

.page-common-details p {
	margin-bottom: 15px;
	line-height: 1.6;
}

.hero-slider::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: -0.5px;
	top: 0;
	background: rgb(11 28 57 / 55%);
	z-index: -1;
}

.pagetitle {
	margin-bottom: 30px;
	text-transform: uppercase;
}

.pagetitle {
	position: relative;
	/* Essential for positioning the pseudo-elements */
	text-align: center;
	font-family: Arial, sans-serif;
	color: #333;
}

.pagetitle::before {
	content: "";
	/* Required for pseudo-elements to display */
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	/* Space between the lines and the text */
	left: 0;
	top: 50%;
	width: 33px;
	height: 5px;
	transform: translateY(-50%);
	background: linear-gradient(to right, #3338a0 0 5px, transparent 5px), linear-gradient(to right, #3338a0 0 100%);
	background-repeat: no-repeat;
	background-size: 33px 5px, 33px 1px;
	background-position: 0 0, 0 51.5%;
}

.pagetitle::after {
	content: "";
	/* Required for pseudo-elements to display */
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	/* Space between the lines and the text */
	right: 0;
	top: 50%;
	width: 33px;
	height: 5px;
	transform: translateY(-50%);
	background: linear-gradient(to left, #3338a0 0 5px, transparent 5px), linear-gradient(to left, #3338a0 0 100%);
	background-repeat: no-repeat;
	background-size: 33px 5px, 33px 1px;
	background-position: 0 0, 0 51.5%;
}

.tab-content .tab-content {
	display: block;
}

.career-form {
	max-width: 600px;
	margin: 20px auto;
	background-color: #e9f1ff !important;
	/* light grey background */
	border-radius: 10px;
	padding: 50px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.career-form:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.career-form .form-label {
	font-weight: 500;
	color: #333;
}

.career-form .form-control {
	border-radius: 6px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	line-height: 40px;
	border-color: #d6e1f3 !important;
}

.career-form .form-control:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.career-form .btn-hover {
	background-color: #0d6efd;
	color: #fff;
	border-radius: 6px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	padding: 14px;
}

.career-form .btn-hover:hover {
	background-color: #0b5ed7;
	transform: translateY(-2px);
}

.feature-title {
	font-family: var(--body-font);
}

.card .route-card {
	border-radius: 10px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: none;
	margin-bottom: 20px;
}

.route-card .card-header {
	background: #3338a0;
	color: white !important;
	border-radius: 10px 10px 0 0 !important;
	padding: 15px 20px;
}

.route-card .card-header h2 {
	color: white !important;
}

.route-card .route-header {
	background-color: #fda31b;
	padding: 12px 15px;
	border-left: 4px solid #3338a0;
	margin: 20px 0;
	border-radius: 4px;
	font-weight: 600;
}

.route-card .dropdown-menu {
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
}

.route-card .dropdown-toggle {
	padding: 12px 20px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.route-card .school-row {
	background-color: #fff3cd;
}

.route-card .table th {
	background-color: #3338a0;
	color: white;
}

.route-card .highlight {
	background-color: #e8f4fd;
}

.route-card .dropdown-item:hover {
	background-color: #f0f7ff;
}

.route-card .last-updated {
	font-size: 0.85rem;
	color: #6c757d;
	text-align: right;
	margin-top: 10px;
}

.route-card .form-select {
	padding: 15px;
	font-size: 18px;
	border: 2px solid #3a6186;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(58, 97, 134, 0.2);
	transition: all 0.3s ease;
	font-weight: 600;
}

.route-card .form-select:focus {
	border-color: #fda31b;
	box-shadow: 0 0 0 0.25rem rgba(219, 161, 34, 0.25);
}

/* Enhanced dropdown option styling */
.route-card .form-select option {
	padding: 18px 15px !important;
	font-size: 16px;
	border-bottom: 1px solid #eaeaea;
	background-color: #fff;
	transition: all 0.2s ease;
}

.route-card .form-select option:hover {
	background-color: #e7eb0c !important;
	cursor: pointer;
}

.route-card .form-select option:checked {
	background: linear-gradient(135deg, #3a6186, #fda31b);
	color: #3338a0;
	font-weight: bold;
}

.route-card .form-select option:first-child {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.route-card .form-select option:last-child {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom: none;
}




.page-common-details p:first-of-type {
	/*padding-top: 20px;*/
}

.quote {
	background-color: #f8f9fa;
	border-left: 5px solid #1a2a6c;
	padding: 20px 30px;
	margin: 0;
	font-style: italic;
}

.sports-container {
	display: flex;
	flex-direction: row;
	min-height: 500px;
}

/* Tab styling */
.sports-tabs {
	width: 280px;
	background: #3338a0;
	color: white;
	padding: 20px 0;
}

.sport-tab {
	padding: 15px 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-left: 5px solid transparent;
	display: flex;
	align-items: center;
}

.sport-tab:hover {
	background: #C59560;
}

.sport-tab.active {
	background: #C59560;
	border-left: 5px solid #fdbb2d;
}

.sport-tab i {
	margin-right: 15px;
	font-size: 1.2rem;
	width: 25px;
	text-align: center;
}

.sports-content {
	flex: 1;
	padding: 25px 30px;
	background: white;
	overflow-y: auto;
}

.sport-detail {
	display: none;
}

.sport-detail.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sport-detail h4 {
	color: #1a2a6c;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}

.sport-detail p {
	margin-bottom: 15px;
}

.sport-detail ul {
	list-style-type: none;
	margin: 15px 0;
}

.sport-detail li {
	margin-bottom: 12px;
	padding-left: 30px;
	position: relative;
}

/* .sport-detail li:before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #b21f1f;
	position: absolute;
	left: 0;
	top: 5px;
} */

.program-highlight {
	background: linear-gradient(to right, #f8f9fa, #e9ecef);
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	border-left: 4px solid #1a2a6c;
}

/* Responsive design */
@media (max-width: 900px) {
	.sports-container {
		flex-direction: column;
	}

	.sports-tabs {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding: 0;
	}

	.sport-tab {
		flex: 1;
		min-width: 150px;
		justify-content: center;
		border-left: none;
		border-bottom: 3px solid transparent;
		padding: 15px 10px;
		text-align: center;
	}

	.sport-tab.active {
		border-left: none;
		border-bottom: 3px solid #fdbb2d;
	}

	.sport-tab i {
		margin-right: 8px;
	}
}

@media (max-width: 600px) {
	.page-common-details h3 {
		font-size: 24px;
		padding: 20px;
	}

	.sports-tabs {
		flex-direction: column;
	}

	.sport-tab {
		min-width: 100%;
		justify-content: flex-start;
		padding-left: 20px;
		border-bottom: none;
		border-left: 5px solid transparent;
	}

	.sport-tab.active {
		border-left: 5px solid #fdbb2d;
		border-bottom: none;
	}

	.page-common-details .mb-20,
	.quote {
		padding-left: 20px;
		padding-right: 20px;
	}

	.sports-content {
		padding: 20px;
	}
}

.list-unstyled {
	padding: 0 30px;
}

.list-unstyled li {
	margin-bottom: 15px;
}

@media (min-width: 992px) {
	.navbar .nav-item .nav-link {
		position: relative;
		/* needed for ::before */
		z-index: 1;
		/* keep text above bg */
		padding: 4px 0px 4px 0;
	}

	.navbar .nav-item .nav-link::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% + 12px);
		/* adjust padding around text */
		height: calc(100% + 6px);
		background: #f7cf5c;
		border-radius: 8px;
		/* rounded bg */
		opacity: 0;
		z-index: -1;
		transition: opacity 0.3s ease;
	}

	/* Show bg when active or hover */
	.navbar .nav-item .nav-link.active::before,
	.navbar .nav-item:hover .nav-link::before {
		opacity: 1;
	}

	/* Text color */
	.navbar .nav-item .nav-link.active,
	.navbar .nav-item:hover .nav-link {
		color: var(--theme-color);
	}
}

.pagetitle {
	font-family: var(--heading-font);
}

.feature-area-title {
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 83px;
}

.feature-area-title::before,
.feature-area-title::after {
	content: "";
	flex: 1;
	border-bottom: 2px solid #ccc;
	/* line color & thickness */
	margin: 0 12px;
	/* space between text & line */
	border-radius: 80px;
}

/* Remove margin-top below 1200px */
@media (max-width: 1200px) {
	.fa-negative {
		margin-top: 100px;
	}

	.feature-area-title {
		color: var(--theme-color);
		margin-bottom: 83px;
	}

	.feature-area-title::before,
	.feature-area-title::after {
		border-bottom: 2px solid var(--theme-color);
		/* line color & thickness */
	}
}

.mdphoto {
	max-width: 300px;
	text-align: center !important;
	background-color: aliceblue;
	padding: 17px;
}

.blog-item-img img {
	border-radius: 30px 30px 30px 0;
	width: 100%;
}

.py-120 {
	padding: 75px 0;
}

.navbar {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: normal;
}



/* Default desktop layout */
.tab-header {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	/* scroll when too many tabs */
}

/* Mobile – convert to grid */
@media (max-width: 768px) {
	.tab-header {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr);
		/* 3 buttons per row */
		gap: 10px;
		overflow-x: visible !important;
	}

	.tab-header .tab-button {
		width: 100%;
		padding: 10px;
		text-align: center;
		border: 1px solid #ccc;
		border-radius: 6px;
		background: #f8f8f8;
		cursor: pointer;
		white-space: normal !important;
		/* break long text */
	}

	.tab-header .tab-button.active {
		background: #3338a0;
		color: #fff;
	}
}

/* Extra small screens – 2 per row */
@media (max-width: 480px) {
	.tab-header {
		grid-template-columns: repeat(2, 1fr);
	}
}





.calendar-header {
	text-align: center;
	margin-bottom: 40px;
}

.calendar-header h2 {
	color: #1bb0ce;
	font-weight: 700;
	margin-bottom: 20px;
}

.calendar-header p {
	font-size: 18px;
	color: #555;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.calendar-subtitle {
	color: #E8B61A;
	font-weight: 600;
	margin: 40px 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #E8B61A;
}

.calendar-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 40px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.calendar-table th {
	background-color: #E8B61A;
	color: white;
	padding: 12px 15px;
	text-align: left;
}

.calendar-table tr:nth-child(even) {
	background-color: #f8f9fa;
}

.calendar-table tr:hover {
	background-color: #f1f3f5;
}

.calendar-table td {
	padding: 12px 15px;
	border-bottom: 1px solid #dee2e6;
}

.year-header {
	background-color: #1bb0ce !important;
	color: white;
	font-weight: bold;
	text-align: center !important;
}

.holiday-cell {
	color: #dc3545;
	font-weight: 500;
}

.event-cell {
	color: #198754;
	font-weight: 500;
}

.calendar-note {
	background-color: #e9ecef;
	padding: 15px;
	border-radius: 5px;
	margin-top: 30px;
	font-style: italic;
}

.calendar-container {
	background-color: white;
	border-radius: 10px;
}

@media (max-width: 768px) {
	.calendar-table {
		display: block;
		overflow-x: auto;
	}

	.calendar-header p {
		font-size: 16px;
	}
}
.header-top-contact {
    font-size: 13px;
}
.header-top-right {
	font-size: 13px;
}
.hero-slider {
    background: url("../img/slider/slider-1.jpg") center/cover no-repeat;
    animation: breathe 17s ease-in-out infinite;
}

@keyframes breathe {
    0% { background-size: 100% auto; }
    50% { background-size: 110% auto; }
    100% { background-size: 100% auto; }
}
.about-item-content h5 {
    text-transform:capitalize;
}
.copyright .copyright-wrapper {
    padding: 25px 0;
    border-top: 1px solid var(--theme-color2);
}
.site-title .far {
	font-weight: 300;
	color: var(--theme-color2);
}
.page-common-details h3,
.page-common-details h4,
.page-common-details h5 {
    margin-top: 30px; 
    margin-bottom: 10px;
}
.page-common-details h3:first-of-type,
.page-common-details h4:first-of-type,
.page-common-details h5:first-of-type {
    margin-top: 0;
}

.list-unstyled i {
    color: var(--theme-color2);
    /* margin-right: 10px; */
    margin-left: -29px;
}
.page-common-list-disc li {
	list-style: disc;
}
.page-common-list-decimal li {
    list-style: decimal;
}
.page-common-list-disc {
	margin-left: 30px;
}
.page-common-list-decimal {
	margin-left: 30px;
}
.custom-width {
	max-width: 1320px;
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    z-index: 1;
    /*background-color: red !important;*/
    aspect-ratio: 1920 / 800;
    width: 100%;
    margin-top: 0px;
}
@media (max-width: 991px) {
	.site-breadcrumb {
	    margin-top: 65px;
	}
}
.py-120 {
    padding: 60px 0;
}




/* General Body Styles (for demonstration) */
body {
    font-family: sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4,
.col-lg-6 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-4 {
    width: 33.33%;
}

.col-lg-6 {
    width: 50%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.site-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.site-title span {
    color: #ff9900;
}

/* 1. Gallery Item & Alignment */
.gallery-item-link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 50px 50px 50px 0;
    cursor: pointer;
}

.gallery-img {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    background-color: #f0f0f0;
}

.gallery-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures alignment without distortion */
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* NEW: Close Button Styling */
.close-zoom {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-zoom:hover,
.close-zoom:focus {
    color: #bbb;
    text-decoration: none;
}

/* Move the entire left image column upward */
.about-area .about-left {
  position: relative;
  top: -10px; /* try -60px, -80px, or -100px based on how high you want it */
}

/* Reduce top padding of the entire section for better alignment */
.about-area {
  padding-top: 40px !important; /* default py-120 = 120px; we cut it down */
}

/* Optional: reset on mobile for safety */
@media (max-width: 991px) {
  .about-area .about-left {
    top: 0;
  }
  .about-area {
    padding-top: 80px !important;
  }
}


.gallery-content .gallery-link {
    /* Remove old circle styles */
    width: auto;
    height: auto;
    line-height: 1.5; /* Use normal line height for text */
    border-radius: 30px; /* This makes the "pill" shape (though no background, still good for consistency) */
    
    /* Add padding so the text has space */
    padding: 8px 20px;
    
    /* --- CHANGES HERE --- */
    /* Remove the background-color or set it to transparent */
    background-color: transparent; /* This removes the yellow/orange background */
    color: white; /* Text color changed to white */

    /* Add a subtle text shadow for better readability */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
    /* --- END CHANGES --- */

    /* Text styling */
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

/* LEADS SECTION */
.leads-wrapper {
    margin: 40px 0;
}

.leads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.lead-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.lead-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.lead-letter {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #f5a623; /* brand accent */
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-word {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .leads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .leads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
