#switcher {
	background: #fff;
	position: fixed;
	display: none;
	top: 100px;
	left: 0;
	direction: ltr;
	z-index: 11111;
	width: 220px;
	margin-left: 0;
	border-radius: 0 5px 5px 0;
	font-family: 'Open Sans', Arial, sans-serif;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);
	box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);

}

#switcher label {
	padding-right: 20px;
	padding-left: 20px;
	font-weight: normal;
	cursor: pointer;
	color: #333;
	position: relative;
}

#switcher hr {
	border: 0;
	border-bottom: #ccc 1px solid;
	margin: 10px 0;
}

#switcher h4 {
	padding: 5px 0;
	border-bottom: #ccc 1px solid;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin: 0 0 10px 0;
}

#switcher ul {
	padding: 0 !important;
	margin: 20px 0 !important;
}

#switcher ul li {
	text-transform: uppercase;
	margin-bottom: 0;
	font-size: 12px;
	display: inline-block;
}

#switcher ul li a img {
	width: 30px;
}

#showSwitcher {
	z-index: 11111;
	margin-left: 0px;
	position: fixed;
	left: 0;
	top: 210px;
	background: #fff;
	box-shadow: #ccc 0 0 2px;
	border-left: 0;
	font-size: 18px;
	display: block;

	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-topright: 4px;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 4px;

	padding: 10px 16px 10px 14px;
	cursor: pointer;
}

#hideSwitcher {
	cursor: pointer;
	line-height: 43px;
	font-size: 38px;
	margin-bottom: 0px;
	color: #999;
	position: absolute;
	background-color: #fff;
	width: 40px;
	height: 40px;
	top: 7px;
	right: 16px;
	text-align: right;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-topright: 4px;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 4px;
}


#switcher .content-switcher {
	padding: 16px;
	overflow: hidden;
}

#switcher a.color {
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	margin: 4px 2px;
	width: 30px;
	height: 30px;
}

#switcher p small {
	font-size: 10px;
}

#switcher p {
	margin: 15px 0 10px 0;
	font-size: 12px;
	font-weight: 400;
	color: #2E363F;
}

#showSwitcher i {
	font-size: 25px;
	color: #222;
}

#switcher .styled-select select {
	background: #f5f5f5;
	width: 100%;
	font-size: 13px;
	line-height: 13px;
	outline: none;

	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

#switcher p.separator {
	margin-bottom: 0;
}

#switcher span.hot {
	background: #ff0000;
	color: #fff;
	padding: 4px;
	border-radius: 6px;
	margin-left: 4px;
	font-weight: 700;
}

#switcher span.info {
	font-size: 11px;
	display: block;
	color: #118ce7;
	font-style: italic
}

/** ============ **/
#switcher .switcher_thumb {
	display: inline-block;
	margin: 4px 3px;
}

#switcher .switcher_thumb.selected {
	box-shadow: #666 0 0 5px;
	;
}

#switcher .purchase {
	background-color: #82b440;
	text-transform: capitalize;
	font-size: 14px;
	border-radius: 4px;
	font-weight: 500;
	display: block;
	text-align: center;
	margin-top: 25px;
}

@media only screen and (max-width: 991px) {
	#switcher {
		top: 40px;
	}

	#showSwitcher {
		top: 15px;
		display: none;
	}
}

#switcher .dark_switch {
	margin-top: 5px;
	opacity: 1;
	left: 0;
}

#switcher .purchase {
	text-transform: uppercase;
	transform: none !important;
	color: #fff;
	padding: 12px 26px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
}

#switcher .purchase i {
	padding-right: 10px;

}

/* Custom Blog Card Styles - Updated */
.row {
	display: flex !important;
	flex-wrap: wrap !important;
	margin-right: -15px;
	margin-left: -15px;
}

 /* blog card container */
.post-container {
	background: #252525;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	border: 1px solid #333;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.post-container:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	border-color: #ffb400;
}

.post-thumb {
	overflow: hidden;
	position: relative;
}

.post-thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.post-container:hover .post-thumb img {
	transform: scale(1.1);
}

.post-content {
	padding: 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.post-content h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 600;
}

.post-content h3 a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s;
}

.post-content h3 a:hover {
	color: #ffb400;
}

.post-content p {
	color: #bbbbbb;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* Blog Button - Yellow Hover Effect */
.blog-btn {
	background-color: transparent;
	color: #ffffff !important;
	border: 2px solid #ffb400;
	border-radius: 30px;
	padding: 10px 25px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	display: inline-block;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	text-align: center;
	width: fit-content;
}

.blog-btn:hover {
	background-color: #ffb400 !important;
	color: #000000 !important;
	box-shadow: 0 5px 15px rgba(255, 180, 0, 0.4);
	transform: translateY(-3px);
}

.blog-btn i {
	margin-left: 8px;
	font-size: 14px;
}

/* mobile responsive */
@media (max-width: 768px) {
	.post-thumb img {
		height: 200px;
	}
}