.stats {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-box {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 6rem 0rem;
}

	.services h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.services-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
	}

	.service-card {
		background-color: #f5f5f5;
		border-radius: 8px;
		overflow: hidden;
	}

	.service-card img {
		width: 100%;
		height: 400px;
		object-fit: cover;
	}

	.service-card-content {
		padding: 1.5rem;
	}

	.service-card h3 {
		margin-bottom: 1rem;
	}

  /* Enhanced service cards */
	.service-card {
		background-color: #fff;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		cursor: pointer;
	}

	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
	}

	.service-card img {
		width: 100%;
		height: 400px;
		object-fit: cover;
		transition: transform 0.3s ease;
	}

	.service-card:hover img {
		transform: scale(1.05);
	}

  /* Modal styles */
	.modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		z-index: 1000;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.modal.active {
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 1;
	}

	.modal-content {
		max-width: 90%;
		max-height: 90vh;
		position: relative;
		animation: zoomIn 0.3s ease;
	}

	.modal-image {
		max-width: 100%;
		max-height: 90vh;
		object-fit: contain;
	}

	.close-modal {
		position: absolute;
		top: -40px;
		right: 0;
		color: white;
		font-size: 30px;
		cursor: pointer;
		background: none;
		border: none;
		padding: 10px;
		transition: transform 0.3s ease;
	}

	.close-modal:hover {
		transform: scale(1.1);
	}

	.modal-nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		display: flex;
		justify-content: space-between;
		padding: 0 20px;
	}

	.modal-nav button {
		background: rgba(255, 255, 255, 0.2);
		border: none;
		color: white;
		padding: 15px;
		cursor: pointer;
		border-radius: 50%;
		transition: background-color 0.3s ease;
	}

	.modal-nav button:hover {
		background: rgba(255, 255, 255, 0.3);
	}

  .map-container {
		height: 100%;
		min-height: 400px;
		background-color: #f5f5f5;
		border-radius: 8px;
		overflow: hidden;
		margin-top: -450px;
	}

