@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}
#login-form {
	margin:5% auto;
	max-width:500px;
}
/* home page */
#wrapper{
	padding-top:50px;
}






/* sou blog post page */
.para {
	margin-top: 20px;
	font-weight: 200px !important;
	font-size: 19px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: justify;
}
/* sou blog post page end */

/* sou our blogs page code start */

:root {
	--main-red-color: #da251c;
	--blue-color: rgb(0 150 253);
	--table-text-greenish: #4f6228;
	--table-text-blue: #205968;
}

.font {
	/* background: #f5f5f5; */
	font-family: Arial, sans-serif;
}

/* BLOG CARD */
.blog-card {
	position: relative;
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: 0.4s;
}

/* 4 SIDE COLOR BORDER */
.blog-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 3px solid transparent;
	border-radius: 15px;
	pointer-events: none;
	border-top-color: red;
	border-right-color: green;
	border-bottom-color: blue;
	border-left-color: orange;
}

/* IMAGE WRAPPER */
.blog-img-box {
	position: relative;
	overflow: hidden;
}

/* IMAGE */
.blog-img-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: 0.5s;
}

/* IMAGE HOVER EFFECT */
.blog-img-box:hover img {
	transform: scale(1.12);
	filter: brightness(0.6);
}

/* OVERLAY ONLY ON IMAGE */
.blog-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	opacity: 0;
	transition: 0.4s ease;
}

/* SHOW OVERLAY */
.blog-img-box:hover .blog-overlay {
	opacity: 1;
}

/* OVERLAY TEXT */
.blog-overlay h2 {
	font-size: 20px;
	line-height: 1.3;
	max-width: 90%;
}

/* READ MORE BUTTON */
.blog-overlay a {
	margin-top: 12px;
	padding: 8px 22px;
	background: #c21111;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 14px;
	transition: 0.3s;
}

.blog-overlay a:hover {
	background: #fff;
	color: #c21111;
	transform: scale(1.1);
}

/* STATIC CONTENT */
.blog-static-content {
	padding: 15px;
}

.blog-static-content h5 {
	font-size: 18px;
	font-weight: bold;
}

.blog-static-content p {
	font-size: 14px;
	color: #555;
}

/* STATIC READ MORE */
.blog-static-content a {
	display: inline-block;
	margin-top: 8px;
	color: #c21111;
	text-decoration: none;
	font-weight: bold;
}

.blog-static-content a:hover {
	text-decoration: underline;
}


/* Static Content Center Align */
.blog-static-content {
	text-align: center;
	/* Read More center me aayega */
}

/* Static Read More Style */
.blog-static-content a {
	display: inline-block;
	margin-top: 10px;
	padding: 6px 18px;
	background: #c21111;
	color: #fff;
	text-decoration: none;
	border-radius: 20px;
	font-weight: bold;
	font-size: 14px;
	transition: 0.3s;
}

/* Hover Animation */
.blog-static-content a:hover {
	background: #fff;
	color: #c21111;
	transform: scale(1.1);
}

/* sou our blogs page ka code end */

