@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.review-container {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	justify-content: center;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.review-container::-webkit-scrollbar {
	display: none; /* Hide scrollbar for Chrome/Safari */
}

/* Individual Review Card */
.review-card {
	flex: 0 0 auto;
	width: 90%;
	max-width: 800px;
	min-width: 300px;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
	text-align: left;
	scroll-snap-align: start;
}

/* Profile Section */
.profile {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.profile img {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin-right: 12px;
}

.profile-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.twitter-icon {
	color: #1DA1F2;
	font-size: 18px;
	margin-left: auto;
}

/* Responsive Styling */
@media (max-width: 768px) {
	.review-card {
		width: 90%;
		min-width: 280px;
	}
}




.container-images {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 30px;
}

/* Image Wrapper */
.img-container {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	max-width: 1400px; /* Ensuring layout doesn't break on ultra-wide screens */
}

/* Left Images */
.left-images {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Image Styling */
.img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

/* Default Sizes for Large Screens */
.img1, .img2 {
	width: 300px;
	height: 300px;
}

.img3 {
	width: 900px;
	height: 600px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
	.img1, .img2 {
		width: 250px;
		height: 250px;
	}
	.img3 {
		width: 750px;
		height: 500px;
	}
}

@media (max-width: 992px) {
	.img-container {
		flex-direction: column;
		align-items: center;
	}
	.left-images {
		flex-direction: row;
	}
	.img1, .img2 {
		width: 200px;
		height: 200px;
	}
	.img3 {
		width: 600px;
		height: 400px;
	}
}

@media (max-width: 768px) {
	.img1, .img2 {
		width: 150px;
		height: 150px;
	}
	.img3 {
		width: 500px;
		height: 350px;
	}
}

@media (max-width: 480px) {
	.img1, .img2 {
		width: 120px;
		height: 120px;
	}
	.img3 {
		width: 100%;
		height: auto;
	}
}





.custom-container-footer {
    max-width: 1170px;
    margin: auto;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.custom-footer {
    background-color: #4a8a4c;
    padding: 70px 0;
}

.custom-footer-col {
    width: 25%;
    padding: 0 15px;
}

.custom-footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.custom-footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.custom-footer-col ul {
    list-style: none;
    padding: 0;
}

.custom-footer-col ul li {
    margin-bottom: 10px;
}

.custom-footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.custom-footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.custom-footer-social a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.custom-footer-social a:hover {
    color: #fafafa;
    background-color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
    .custom-footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 574px) {
    .custom-footer-col {
        width: 100%;
    }
}




