.our-services-module {
	--ge-green: #004D43;
	--ge-accent: #2ECC71;
	--ge-text: #333;
	padding: 0 0 80px;
}

.our-services-module__inner {
	width: calc(100% - 40px);
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
}

.our-services-module__title {
	font-family: 'Inter', sans-serif;
	color: var(--Black-text, #000);
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 35px; 
	margin: 0;
	margin-bottom: 20px;
}

.our-services-module__description {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: var(--Black-text, #000);
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	max-width: 632px;
	text-align: center;
	margin: 0 auto 32px;
	margin-bottom: 30px;
}

.our-services-module__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 30px;
}

.our-services-module__card {
	display: block;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.our-services-module__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.our-services-module__card-image {
	width: 100%;
	padding-bottom: 65%;
	background-size: cover;
	background-position: center;
	background-color: #e8e8e8;
}

.our-services-module__card-title {
	display: block;
	padding: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--ge-text);
	background: #fff;
}

.our-services-module__actions {
	display: flex;
	justify-content: center;
}

.our-services-module__btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--ge-green);
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.our-services-module__btn:hover {
	background: var(--ge-accent);
	color: #fff;
}

@media (max-width: 768px) {
	.our-services-module__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.our-services-module__title {
		font-size: 22px;
	}
}

.our-services-module__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card-item {
    height: auto;
    max-height: 545px;
    min-height: 545px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.8) 100%); */
    transition: 0.1s ease;
}

.service-card-item:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(0, 23, 14, 0.3) 0%, rgba(17, 189, 87, 0.5) 100%);
}

.service-card-arrow {
    width: 45px;
    height: 45px;
    background: #25B461;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden; 
    margin-left: auto;
}

.service-card-arrow svg {
    width: 22px;
    height: 22px;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-arrow svg:first-child {
    transform: translate(0, 0);
}

.service-card-arrow svg:nth-child(2) {
    transform: translate(-40px, 40px); 
}

.service-card-item:hover .service-card-arrow svg:first-child {
    transform: translate(40px, -40px); 
}

.service-card-item:hover .service-card-arrow svg:nth-child(2) {
    transform: translate(0, 0); 
}
.service-card-content {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-end;
    width: 100%;
}

.service-card-title {
    color: var(--White-text, #F6F7F9);
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    margin: 0;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-item:hover .service-card-title {
    transform: translateY(0px);
}

.service-card-desc {
    color: #F6F7F9;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card-item:hover .service-card-content {
    grid-template-rows: auto 1fr;
}

.service-card-item:hover .service-card-desc {
    opacity: 1;
    transform: translateY(0);
    margin-top: 5px;
}



@media (max-width: 1680px) {
    .our-services-module__inner {
        width: calc(100% - 50px);
    }
}

@media (min-width: 1280px) and (max-width: 1520px) {
    .our-services-module__inner {
        width: calc(100% - 130px);
    }
}
@media (min-width: 1280px) and (max-width: 1300px) {
    .our-services-module__inner {
        width: calc(100% - 10px);
    }
}
@media (max-width: 1279px) {
    .our-services-module__inner {
        width: calc(100% - 10px);
        margin-bottom: 100px;
    }
	.our-services-module {
		padding: 0;
	}
}
@media (max-width: 1100px) {
	.our-services-module__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 850px) {
	.our-services-module__grid {
		grid-template-columns: 1fr;
	}
	.service-card-item {
		max-height: 700px;
		min-height: 650px;
	}
}


@media (max-width: 739px)  {
	.our-services-module__inner {
		width: calc(100% - 20px);
		margin-bottom: 50px;
	}
	.service-card-item {
		max-height: 700px;
		min-height: 512px;
	}
}
@media (max-width: 600px) {
	.service-card-item {
		max-height: 700px;
		min-height: 430px;
	}
}
@media (max-width: 500px) {
	.service-card-item {
		max-height: 700px;
		min-height: 345px;
	}
}


