:root {
	--bs-primary: #e41e35;
	--bs-primary-rgb: 228, 30, 53;
	--bs-primary-contrast: #FFFFFF;
	--bs-secondary: #000080;
	--bs-secondary-rgb: 0, 0, 128;
	--bs-secondary-contrast: #FFFFFF;
	--bs-dark: #444;
	--bs-light: #F0F0F0;
	--bs-white: #FFFFFF;
	--bs-black: #000000;
	--bs-success: #8BC34A;
	--bs-info: #009688;
	--bs-warning: #FFC107;
	--bs-danger: #FF5722;
	--bs-background-primary: #e41e35;
	--bs-background-secondary: #000080;
	--bs-text-primary: #FFFFFF;
	--bs-text-secondary: #000000;
	--bs-text-success: #8BC34A;
	--bs-text-info: #009688;
	--bs-text-warning: #FFC107;
	--bs-text-danger: #FF5722;
	--bs-btn-primary-bg: #e41e35;
	--bs-btn-primary-border: #e41e35;
	--bs-btn-secondary-bg: #000080;
	--bs-btn-secondary-border: #000080;
	--bs-btn-success-bg: #8BC34A;
	--bs-btn-success-border: #8BC34A;
	--bs-btn-info-bg: #009688;
	--bs-btn-info-border: #009688;
	--bs-btn-warning-bg: #FFC107;
	--bs-btn-warning-border: #FFC107;
	--bs-btn-danger-bg: #FF5722;
	--bs-btn-danger-border: #FF5722;
	--bs-primary-bg-subtle: #7a3fe4;
	--bs-primary-text-emphasis: #FFFFFF;
}

ul li {
	font-size: 16px;
}

.btn {
	border-radius: 0;
}

.btn-secondary {
	background-color: rgb(0 0 128 / 90%);
	border-color: rgb(0 0 128 / 90%);
	color: #fff;
}

.btn-secondary:hover {
	background-color: #000080;
	border-color: #000080;
	color: #fff;
}

.btn-primary {
	background-color: rgb(228 30 52 / 90%);
	border-color: rgb(228 30 52 / 90%);
	color: #FFFFFF;
}

.btn-primary:hover {
	background-color: #e41e34;
	border-color: #e41e34;
	color: #FFFFFF;
}

.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: #e41e34e6;
	--bs-btn-border-color: #e41e34e6;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #e41e34;
	--bs-btn-hover-border-color: #e41e34;
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #e41e34;
	--bs-btn-active-border-color: #e41e34;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #e41e34;
	--bs-btn-disabled-border-color: #e41e34;
}

.btn-close {
	font-size: 2.5rem;
	color: var(--bs-white);
	background: transparent;
	border: none;
	padding: 0;
}

.btn-close:hover {
	color: var(--bs-white);
	/* Change color on hover */
}

.accordion-button::after {
	content: '\2212';
	font-size: 1.25rem;
	color: #fff;
	margin-left: auto;
	background-image: none !important;
}

.accordion-button.collapsed::after {
	content: '\002B';
	color: #333;
}

body {
	/* font-family: "Quicksand", sans-serif; */
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: var(--bs-white);
	color: #000;
	line-height: 1.5;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	/* font-family: "Quicksand", sans-serif; */
	font-family: "Open Sans", sans-serif;
}

.form-control {
	padding: .65rem .75rem;
}

@media (min-width: 992px) {
	.container-wide {
		margin-left: 100px;
		margin-right: 100px;
		max-width: fill-available;
		max-width: -webkit-fill-available;
		max-width: -moz-fill-available;
	}
}

.logo {
	height: 54px;
}

banner#inner-page ::before {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-image: linear-gradient(180deg, #00000060, transparent);
}


.input-group .input-group-text {
	background: transparent;
	/* No background */
	border: none;
	/* Remove border */
	color: var(--bs-dark);
	/* Icon color */
	border-radius: 0;
	/* Remove border-radius for a seamless look */
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: transparent;
	/* Light background for the icon */
}

.input-group .input-group-text i {
	font-size: 1rem;
	/* Adjust icon size */
}

.form-control:focus {
	box-shadow: none;
	border-color: none;
}

.menu {
	position: sticky;
	z-index: 1;
}

.menu a {
	color: var(--bs-dark);
	text-decoration: none;
	padding: .5rem;
	font-weight: 600;
}

.menu a:hover {
	color: var(--bs-black);
}

.sidebar {
	position: fixed;
	top: 0;
	width: 250px;
	height: 100%;
	background: var(--bs-secondary);
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	z-index: 101;
}

.sidebar.sidebar-left {
	left: -250px;
	transition: left 0.3s;
}

.sidebar.sidebar-right {
	right: -250px;
	transition: right 0.3s;
}

.sidebar.sidebar-left.show {
	left: 0;
}

.sidebar.sidebar-right.show {
	right: 0;
}

.sidebar ul {
	list-style: none;
	padding: 0;
}

.sidebar ul li {
	margin: 1rem 0;
}

.sidebar ul li a {
	color: #fff;
	text-decoration: none;
	font-size: small;
	font-weight: 600;
}

.sidebar ul li a:hover {
	color: var(--bs-white);
	/* Change color on hover */
}

.search-bar-container {
	border-radius: 0;
}

.search-bar-container .form-control {
	padding: 1rem .75rem;
	border-radius: 0;
}

.search-bar-container button {
	border-radius: 0;
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: #ffffff;
	transition: box-shadow 0.3s ease;
}

.header.scrolled {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	/* Darker shadow when scrolled */
}

.navbar .form-control {
	border-radius: 0;
	border: 1px solid;
}

.dot-grid {
	display: grid;
	grid-template-columns: repeat(3, 4px);
	/* Adjust size as needed */
	grid-gap: 4px;
	/* Space between dots */
}

.dot {
	width: 4px;
	/* Size of each dot */
	height: 4px;
	background-color: #e41e34;
	/* Dot color */
	border-radius: 50%;
}

#carouselSliders .carousel-inner {
	position: relative;
}

#carouselSliders .carousel-inner::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
	background-image: linear-gradient(to top, #00000080, transparent 50%);
}

#carouselSliders .carousel-indicators {
	justify-content: flex-start;
	margin-right: auto;

}

#carouselSliders .carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
}

#carouselSliders .carousel-caption {
	bottom: 2.5rem;
	z-index: 2;

}

.categories-container {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 15px;
	/* Adds spacing between cards without needing margin on individual cards */
	padding-bottom: 15px;
}

.icon-large {
	font-size: 3rem;
	/* Adjust the size of the icon */
	color: #d51127;
	/* Primary color; change as needed */
	margin-right: 10px;
	/* Space between icon and text */
}

.category-card ul {
	list-style: none;
	padding: 0;
}

.category-card li {
	line-height: 32px;
	font-size: 14px;
	font-weight: 400;
}

/* Scrollbar Track */
.categories-container::-webkit-scrollbar {
	width: 8px;
	/* Adjust width for a narrower scrollbar */
	height: 8px;

}

.categories-container::-webkit-scrollbar-track {
	background: #f1f1f1;
	/* Light background for the track */
	border-radius: 4px;
}

/* Scrollbar Handle */
.categories-container::-webkit-scrollbar-thumb {
	background: rgb(228 30 52 / 30%);
	border-radius: 4px;
	/* Rounded corners for the handle */
	transition: .6 ease-in-out;

}

.categories-container::-webkit-scrollbar-thumb:hover {
	background: var(--bs-primary);
	;
}

.category-card {
	min-width: 250px;
	border: 1px solid #e3d7d9;
	border-radius: 0;
	background: #fff;
	flex-shrink: 0;
	/* Prevents cards from shrinking in the flex container */
	padding: 30px;
}

.category-card h4 {
	margin: 0 0 10px;
	/* Updated to h4 to match HTML structure */
	font-size: 18px;
	/* Adjusted for better hierarchy */
	font-weight: 600;
	/* Slightly bolder for emphasis */
}

.category-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	/* Ensure no extra margin around the list */
}

.category-card li {
	line-height: 32px;
	font-size: 14px;
	font-weight: 400;
}

.category-card li a {
	text-decoration: none;
	color: var(--bs-dark);
}

/* Styling for the filter and college list */
.filter-container {
	margin-bottom: 20px;
}

.filter-select {
	padding: 10px;
	font-size: 16px;
}

.college-list {
	display: flex;
	flex-direction: column;
}

.college-item {
	margin-bottom: 20px;
}

.college-item h4 {
	font-size: 1.5rem;
}

.college-item ul {
	list-style: none;
	padding: 0;
}

.college-item li {
	font-size: 14px;
	line-height: 24px;
}

.filter-buttons {
	display: flex;
	justify-content: start;
}

.filter-buttons button {
	border: 2px solid #dd2b3c;
	border-radius: 0;
	background-color: transparent;
	margin: 5px;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
	background-color: #dd2b3c;
	color: #fff;
}

#colleges-category a {
	text-decoration: none;
	transition: .6s ease-in-out;
}

#colleges-category a .card {
	position: relative;
	overflow: hidden;
	/* Ensures content stays within the card bounds */
	transition: padding 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
	border-radius: 0;
}

#colleges-category a:hover .card {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	/* Enhance box shadow */
}

.badge {
	background-color: #fff;
	color: #7a3fe4;
	padding: 10px;
	border-radius: 5px;
	font-size: 18px;
	width: fit-content;
}

.college-item {
	display: none;
}

.college-item .card img {
	height: 200px;
	object-fit: cover;
	border-radius: 0;
}

.course-header {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 30px;
}

.course-title {
	font-size: 2rem;
	font-weight: bold;
	color: #343a40;
}

.course-description {
	font-size: 1.125rem;
	color: #6c757d;
}

.course-section {
	margin-bottom: 30px;
}

.course-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	color: #495057;
	border-bottom: 2px solid #e9ecef;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.course-info {
	font-size: 1.125rem;
	color: #495057;
}

.course-info dt {
	font-weight: bold;
	font-size: medium;
}

.course-info dd {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 0.9rem;
}

.course-fee {
	font-size: 1.125rem;
	color: #007bff;
}

.accordion-button {
	font-size: 1.1rem;
}

.form {
	background: #fcfbff;
	border: 1px solid #e6e2eb;
}

.gallery-container {
	overflow-x: auto;
	white-space: nowrap;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

.gallery-item {
	display: inline-block;
	width: 360px;
	margin-right: 10px;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

.scroll-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 10;
}

.scroll-button.left {
	left: 5px;
	color: #333;
}

.scroll-button.right {
	right: 5px;
	color: #333;
}

.gallery-wrapper {
	position: relative;
}

/* Scrollbar Track */
.gallery-container::-webkit-scrollbar {
	width: 8px;
	/* Adjust width for a narrower scrollbar */
	height: 8px;

}

.gallery-container::-webkit-scrollbar-track {
	background: #f1f1f1;
	/* Light background for the track */
	border-radius: 4px;
}

/* Scrollbar Handle */
.gallery-container::-webkit-scrollbar-thumb {
	background: rgba(122, 63, 228, 0.3);
	/* Theme color for the scrollbar handle */
	border-radius: 4px;
	/* Rounded corners for the handle */
	transition: .6 ease-in-out;

}

.gallery-container::-webkit-scrollbar-thumb:hover {
	background: var(--bs-primary);
	;
	/* Theme color for the scrollbar handle */
}

.gallery-container img {
	height: 240px;
	object-fit: cover;
}

footer {
	color: var(--bs-dark);
	background: #f0f0ff;
	border-top: 1px solid #d1d1eb;
}

footer a {
	color: var(--bs-dark);
	text-decoration: none;
	font-size: small;
}