.gallery-slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	background: #f0f0f0;
	min-height: 200px;
	color: transparent;
	font-size: 0;
}
.gallery-container {
	position: relative;
	height: 300px;
	overflow: hidden;
	border-radius: 0;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-slider {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}
.gallery-slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

/* Services-specific styles */
.hero {
	margin-top: 80px;
	padding: 4rem 0;
	background: linear-gradient(135deg, rgba(26, 152, 228, 0.1), rgba(41, 211, 145, 0.1));
	text-align: center;
}
.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #333;
}
.hero .gradient-text {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto 2rem;
}
.services {
	padding: 4rem 0;
}
.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}
.featured-services {
	margin-bottom: 4rem;
}
.service-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	margin-bottom: 3rem;
	overflow: hidden;
	transition: transform 0.3s ease;
}
.service-card:hover {
	transform: translateY(-5px);
}
.service-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: center;
}
.service-content.reverse {
	grid-template-columns: 1fr 1fr;
}
.service-info {
	padding: 3rem;
}
.service-info h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #333;
}
.service-info p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}
.service-features {
	list-style: none;
	margin-bottom: 2rem;
}
.service-features li {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	color: #333;
}
.service-features li::before {
	content: '✓';
	background: var(--primary-green);
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 12px;
}
.apply-btn {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.apply-btn:hover {
	transform: translateY(-2px);
}
.gallery-container {
	position: relative;
	height: 300px;
	overflow: hidden;
	border-radius: 0;
	background: #f0f0f0;
}
.gallery-slider {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}
.gallery-slide {
	min-width: 100%;
	height: 100%;
}
.gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}
.gallery-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}
.gallery-dot.active {
	background: white;
}
.empty-gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #999;
	font-size: 1.2rem;
}
.additional-services {
	margin-top: 3rem;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.service-item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s ease;
}
.service-item:hover {
	transform: translateY(-5px);
}
.service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-blue)/10, var(--primary-green)/10);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
}
.service-item h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333;
}
.service-item p {
	color: #666;
	margin-bottom: 1.5rem;
}
.contact-section {
	background: white;
	padding: 4rem 0;
	margin-top: 4rem;
}
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--light-bg);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-blue);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.submit-btn {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: transform 0.3s ease;
}
.submit-btn:hover {
	transform: translateY(-2px);
}
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}
.modal.active {
	display: flex;
}
.modal-content {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.modal-close {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 2rem;
	cursor: pointer;
	color: #999;
}
.modal-close:hover {
	color: #333;
}
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
	margin-top: 4rem;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}
.footer-section h4 {
	margin-bottom: 1rem;
	color: var(--primary-blue);
}
.footer-section p,
.footer-section li {
	color: #ccc;
	margin-bottom: 0.5rem;
}
.footer-section ul {
	list-style: none;
}
.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #555;
	color: #999;
}
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}
	.service-content {
		grid-template-columns: 1fr;
	}
	.service-content.reverse {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
}
