/* Container holding the image and the text */
/*.image-container {
    position: relative;
    text-align: center;
    color: white;
	overflow: hidden;
    height: 300px;
    width: 100%;
}

.cropped-img {
    width: 100%;
    height: 30%;
    object-fit: cover; /* This will crop the image to fit the container 
    object-position: center; /* Center the image within the container 
}

/* Bottom left text 
.overlay-text {
    position: absolute;
	top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 3em;
	
	text-transform:uppercase;	
    color: white;
}*/
.image-container {
    position: relative;
    overflow: hidden;
    height: 300px; /* Adjust the height as needed */
}

.cropped-img {
    width: 100%;
    height: 100%; /* Use full height of the container */
    object-fit: cover;
    object-position: center;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	text-transform:uppercase;
    color: white;
    font-size: 3em; /* Adjust font size for mobile */
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-icon {
	font-size: 40px;
	color: #DAA520;
}
.service-item:hover {
	background-color: #f8f9fa;
	border-radius: 10px;
}
.service-item {
	padding: 20px;
	text-align: center;
	margin: 10px 0;
}

