/* Course title links styling */
.course-title-link {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.course-title-link:hover {
	color: var(--primary-dark);
	text-decoration: none;
}

/* Add underline animation on hover */
.course-title-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.course-title-link:hover::after {
	width: 100%;
}

/* Enhanced primary button for better visibility */
.primary-btn {
	background-color: var(--primary-color);
	color: white;
	box-shadow: 0 4px 6px rgba(26, 115, 232, 0.2);
	transition: all 0.3s ease;
	border: none;
	font-weight: 600;
}

.primary-btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(26, 115, 232, 0.3);
}

/* Make the CTA button more prominent */
.cta-button .btn {
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	border-radius: 50px;
	background: linear-gradient(135deg, var(--primary-color), #0d47a1);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 6px 15px rgba(13, 71, 161, 0.3);
}

.cta-button .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: all 0.5s ease;
	z-index: -1;
}

.cta-button .btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(13, 71, 161, 0.4);
}

.cta-button .btn:hover::before {
	left: 100%;
}

/* Pulse animation for the CTA button */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.6);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(26, 115, 232, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
	}
}

.cta-button .btn {
	animation: pulse 2s infinite;
}

/* Improve course card styles */
.course-card {
	transition: all 0.3s ease;
	border-radius: 10px;
	overflow: hidden;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}