* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Rubik", sans-serif;
}
:root {
	--primary: #1a237e;
	--secondary: #ffc107;
	--accent: #4caf50;
	--light-bg: #f8f9fa;
	--red: #dc3545;
}

/* Navbar Css */
.navbar-brand {
	width: auto;
	height: 30px;
}

.hero-section {
	background-image: url("banner/banner.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	height: 90vh;
}

@media (max-width: 768px) {
	.hero-section {
		height: 50vh;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
}
/* About Us Css */
.main-heading {
	font-size: 30px;
	font-weight: 600;
}
.sub-heading {
	font-size: 16px;
	text-align: justify;
}

/* Events Pages Css */
.page-banner {
	background-size: cover;
	background-position: center;
	height: 300px; /* Adjust height as needed */
	position: relative;
	z-index: 1; /* Ensures content is on top */
}
.page-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
	z-index: -1;
}
.page-banner .container {
	height: 100%;
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.news-card {
	transition: transform 0.3s;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
	background-color: var(--light-bg);
	border-radius: 10px;
	padding: 25px;
}

.testimonial-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--primary);
}

footer {
	background-color: var(--red);
	color: white;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-warning {
	background-color: var(--secondary);
	border-color: var(--secondary);
}


.card-img-top{
	height: 200px;
	object-fit: cover;
}