.blogs-hero-section {
	height: 200px;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.blogs-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.blogs-hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.blogs-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}
.blogs-hero-content p {
	text-align: center;
	font-size: 20px;
	color: white;
}
.blogs-hero-content button {
	background-color: red;
	color: white;
	padding: 8px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

/* Responsive  */
@media (max-width: 992px) {
	.blogs-hero-section {
		height: auto;
		background-size: cover;
	}

	.blogs-hero-content-title {
		font-size: 32px;
	}
	.blogs-hero-content {
		padding: 30px 21px;
	}

	.blogs-hero-content p {
		font-size: 18px;
		margin: 10px 0;
		text-align: center;
	}

	.blogs-hero-content button {
		font-size: 16px;
		padding: 10px 25px;
	}
}

@media (max-width: 576px) {
	.blogs-hero-content-title {
		font-size: 24px;
	}

	.blogs-hero-content p {
		font-size: 16px;
	}

	.blogs-hero-content button {
		width: 100%;
		max-width: 280px;
		padding: 10px;
	}
}

/* Responsive  */
/* -----------------------------------------------------------------  */

/* Bolg Cards  */
.blog-card {
	border: 1px solid #04245c;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-card img {
	height: 250px;
	object-fit: cover;
	width: 100%;
}

/* Bolg Cards  */
