*, *::before, *::after{
	box-sizing: border-box;    
}
.mf-social-side-list {
	position: fixed;
	top: 30vh;
	right: 10px;
	z-index: 100;
}

.mf-social-side-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: #000; /* overall black background */
	border-radius: 12px; /* rounded corners for entire block */
	overflow: hidden; /* clip the inner icons to fit rounded corners */
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* optional shadow */
}

.mf-social-side-list ul li {
	margin: 0;
	border-bottom: 1px solid #333; /* subtle divider */
}

.mf-social-side-list ul li:last-child {
	border-bottom: none; /* no divider after last icon */
}

.mf-social-side-list ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: #000; /* black icon background */
	color: #fff; /* white icon color */
	text-decoration: none;
	transition: background-color 0.3s ease-in-out;
}

.mf-social-side-list ul li a:hover {
	background-color: #222; /* darker on hover */
}




.custom-font {
	font-family: 'Monsterat', sans-serif; /* Example: Google Font */
}

.slideshowContainer {
	position: relative;
	overflow: hidden;
	margin: 50px auto 75px;  /* <-- center horizontally */
	width: 90%;
	height: 300px;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5), -10px -10px 20px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	overflow: hidden;
	transform-style: preserve-3d;
}


/* Base image slide styling */
.imageSlides {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}

/* Only visible slide */
.imageSlides.visible {
	opacity: 1;
	z-index: 2;
}

.slideshowCircles {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.circle {
	width: 12px;
	height: 12px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.dot {
	background-color: #333; /* Darker when active */
}

.imageSlides {
	position: absolute; /* previously absolute */
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
	display: none;
}

.imageSlides.visible {
	opacity: 1;
	z-index: 2;
	display: block;
}

.circle {
	height: 12px;
	width: 12px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.3s;
}
.circle.dot {
	background-color: #444;
}



.rounded-left-custom {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}




.shadow-effect {
	background: #fff;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	border:1px solid #ECECEC;
	box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#customers-testimonials .shadow-effect p {
	font-family: inherit;
	font-size: 17px;
	line-height: 1.5;
	margin: 0 0 17px 0;
	font-weight: 300;
}
.testimonial-name {
	margin: -17px auto 0;
	display: table;
	width: auto;
	background: #3190E7;
	padding: 9px 35px;
	border-radius: 12px;
	text-align: center;
	color: #fff;
	box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
	text-align: center;
	padding: 50px;
	margin-bottom:80px;
	opacity: .2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
	transform-style: preserve-3d;
	max-width: 80px;
	margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
	background: #3190E7;
	transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: #3190E7;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
}

