/*importing Google fonts  */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
* {
	font-family: "Roboto", sans-serif;
}
:root {
	--brand-purple: #6b215c; /* Adjust this to match your exact logo/theme */
	--text-muted: #4a4a4a;
}
body::-webkit-scrollbar {
	display: none;
}
/*footer color*/
.footerClass {
	background-color: rgba(234, 234, 234, 255);
}
/*register modal animation*/
/* Modal Background */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1080;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgba(0, 0, 0, 0.7);
	/* Black w/ opacity */
}
/* Modal Dialog */
.modal-dialog {
	position: relative;
	margin: 2.75rem auto;
	/* Center modal */
	transform: translateY(-50%);
}
/* Modal Content */
.modal-content {
	z-index: 1050;
	position: relative;
	background-color: #fff;
	/* White background */
	border-radius: 0.5rem;
	/* Rounded corners */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	/* Soft shadow */
	animation: blowUpModal .5s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
	/* Animation for modal */
}
/* Modal Header */
.modal-header {
	display: flex;
	justify-content: space-between;
	/* Space between header items */
	align-items: center;
	/* Center items vertically */
	padding: 1rem;
	/* Padding around header */
}
/* Responsive Styles */
@media (max-width: 576px) {
	.modal-dialog {
		margin: 0.5rem;
		/* Adjust margin for smaller screens */
	}
}
/* Animation Keyframes */
@keyframes blowUpModal {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.navbar .nav-link {
	color: rgb(98, 93, 93) !important;
	text-decoration: none;
	font-weight: 500;
}
.rcsloginbtn{
	background-color: #74164d;
}
.rcsloginbtn:hover{
	background-color: #5a1c3f;
}
@media (max-width: 767px){
	.rcs_coursecards{
		margin-left: 35px;
	}
}

.livewebinarbtndesign {
	/*font-size: .675rem;*/
	/*line-height: 1;*/
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
	0% {
		background-color: #B20000;
		-webkit-box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000 !important;
		-webkit-box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000 !important;
		-webkit-box-shadow: 0 0 3px #B20000;
	}
}

@-moz-keyframes glowing {
	0% {
		background-color: #B20000;
		-moz-box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000;
		-moz-box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000;
		-moz-box-shadow: 0 0 3px #B20000;
	}
}

@-o-keyframes glowing {
	0% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000;
		box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
}

@keyframes glowing {
	0% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000;
		box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
}
@media (max-width: 576px) {
	.courseLandingCard {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
}
@media (max-width: 576px) {
	.program-faculty-card {
		width: 255px;
		margin-left: 47px;
	}
}

.marquee {
	width: 100%;
	background-color: rgb(76 21 70);
	overflow: hidden;
}
/* NAVBAR */
/* BASE STYLES (Desktop) */
.custom-navbar {
	position: absolute;
	width: 100%;
	top: 30px; /* Reduced top spacing slightly for a tighter look */
	display: flex;
	justify-content: center;
	z-index: 10;
}

.nav-container {
	background: rgba(248, 249, 250, 0.95);
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border-radius: 50px;
	padding: 10px 25px;
	width: 80%;
	max-width: 1200px; /* Prevents it from getting too wide on huge monitors */
	display: flex;
	justify-content: space-between;
	align-items: center;
	backdrop-filter: blur(10px);
}

.nav-links a {
	margin: 0 15px;
	text-decoration: none;
	color: #4a4a4a;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.login-btn {
	background: linear-gradient(135deg, #7a1c55 0%, #5a153f 100%);
	color: white;
	border: none;
	padding: 10px 22px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(122, 28, 85, 0.3);
	transition: all 0.3s ease;
	white-space: nowrap; /* Keeps text on one line */
}

/* RESPONSIVE BREAKPOINT (Tablets and Mobile) */
@media (max-width: 768px) {
	.custom-navbar {
		top: 15px;
	}

	.nav-container {
		width: 95%;
		padding: 8px 15px;
	}

	.nav-links a {
		margin: 0 8px;
		font-size: 0.8rem;
	}

	.login-btn {
		padding: 8px 15px;
		font-size: 0.8rem;
	}
}

/* SMALL MOBILE BREAKPOINT */
@media (max-width: 480px) {
	.nav-links {
		display: none; /* Usually, you'd swap this for a hamburger menu icon here */
	}

	.nav-container {
		justify-content: center; /* Centers the button or logo on tiny screens */
	}
}

.login-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(122, 28, 85, 0.4);
}

/*course section*/
.course-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.text-primary-brand {
	color: var(--brand-purple);
}

.text-secondary-brand {
	color: #333;
	font-weight: 600;
}

/* Image Styling */
.course-img {
	border-radius: 25px; /* Creates that smooth medical-card look */
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	width: 100%;
	object-fit: cover;
}

.course-img:hover {
	transform: translateY(-5px);
}

/* Text & Button Styling */
.course-text {
	color: var(--text-muted);
	line-height: 1.6;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.course-btn {
	background-color: var(--brand-purple);
	color: #ffffff;
	border: none;
	padding: 10px 30px;
	border-radius: 50px; /* Capsule shape */
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-transform: none;
}

.course-btn:hover:not(.disabled) {
	background-color: #4e1843;
	box-shadow: 0 5px 15px rgba(107, 33, 92, 0.3);
}

.course-btn.disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

/* Divider Styling */
.course-divider-wrapper {
	margin-top: 2.5rem;
}

.course-divider {
	border: 0;
	border-top: 2px solid #000000;
	opacity: 1;
	width: 100%; /* Default for mobile */
}

@media (min-width: 768px) {
	.course-divider {
		width: 80%; /* Matches the "short line" look in your image on desktop */
	}
}

/* Spacing Adjustments */
.course-row {
	border-bottom: none;
}
