﻿body {
	margin: 0;
	padding: 0;
	font-family: 'Cairo', sans-serif;
	direction: rtl;
	text-align: right;
}

.services-section {
	padding: 60px 80px;
}

.services-title {
	color: #175BA7;
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 60px;
	text-align: right;
	padding-right: 100px;
}

.services-cards {
	display: flex;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.service-card {
	flex: 1 1 48%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.service-button {
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.5rem;
	border: none;
	cursor: pointer;
	margin-bottom: 20px;
	transition: 0.3s;
	text-decoration: none;
	display: inline-block;
}

.service-card a.service-button {
	display: block;
	width: 60%;
	text-align: center;
	margin: 0 auto 20px auto;
	font-size: 1.8rem;
	padding: 15px 0;
	font-weight: 700;
	border-radius: 50px;
	margin-top: -20px;
}


.service-button.btn-green {
	background-color: #C8D952;
	color: #175BA7;
}

	.service-button.btn-green:hover {
		background-color: #175BA7;
		color: #C8D952;
	}

.service-button.btn-blue {
	background-color: #175BA7;
	color: white;
}

	.service-button.btn-blue:hover {
		background-color: white;
		color: #175BA7;
		border: 1px solid #175BA7;
	}

.service-image {
	width: 100%;
	max-width: 600px;
	margin-bottom: 30px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-description {
	font-size: 1.4rem;
	color: #6c757d;
	line-height: 1.6;
	text-align: right;
	max-width: 600px;
}

.what-is-wrapper-full {
	width: 100vw;
	margin: 0;
	padding: 40px 0;
	background-color: #EDEDED;
	padding: 40px 0;
	margin-left: -80px;
	margin-right: -80px;
	text-align: center;
}



.what-is-content {
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: center;
	color: #175BA7;
	text-align: right;
	margin-left: 1px;
}



.what-title, .what-highlight {
	margin: 0;
	line-height: 1.1;
}

.what-title {
	font-size: 2.3rem;
	font-weight: 400;
}

.what-highlight {
	font-size: 2.5rem;
	margin-top: 10px;
	font-weight: 700;
}

.replacement-image {
	width: 100%;
	max-width: 1400px;
	height: auto;
	display: block;
	margin: 40px auto 0 auto;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
	object-fit: cover;
}

@media (max-width: 768px) {


	.replacement-image {
		max-width: 100%;
		margin: 20px auto 0 auto;
	}
}


