/* Khedmatgar Elementor Widgets Complete CSS */

.khg-elementor-widget {
	font-family: 'Inter', 'Poppins', sans-serif;
	color: #333333;
}

.khg-btn-primary {
	background-color: #1b7a63;
	color: #ffffff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.khg-btn-primary:hover {
	background-color: #145c4a;
}

.khg-btn-outline {
	background-color: transparent;
	color: #1b7a63;
	border: 2px solid #1b7a63;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.khg-btn-outline:hover {
	background-color: #1b7a63;
	color: #fff;
}

/* Shared Headers */
.khg-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.khg-section-center-header {
	text-align: center;
	margin-bottom: 40px;
}

.khg-section-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}

.khg-section-subtitle {
	font-size: 1.1rem;
	color: #666;
	margin-top: 10px;
}

.khg-view-all {
	color: #1b7a63;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}

.khg-view-all:hover {
	text-decoration: underline;
}

/* 1. Hero Widget */
.khg-hero-section {
	display: flex;
	align-items: center;
	padding: 60px 40px;
	background-color: #f7f9fa;
	border-radius: 12px;
	margin-bottom: 50px;
}

.khg-hero-content {
	flex: 1;
	max-width: 600px;
}

.khg-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.khg-hero-title span {
	color: #1b7a63;
}

.khg-hero-subtitle {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 40px;
}

.khg-hero-search-box {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.khg-hero-search-form {
	display: flex;
	gap: 15px;
	align-items: flex-end;
}

.khg-search-field {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.khg-search-field label {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.khg-search-field input,
.khg-search-field select {
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
}

.khg-hero-features {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.khg-hero-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	background: #fff;
	padding: 8px 16px;
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.khg-hero-feature i {
	color: #1b7a63;
}

.khg-hero-image {
	flex: 1;
	text-align: center;
}

/* 2. Categories */
.khg-categories-section {
	margin-bottom: 50px;
}

.khg-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.khg-category-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 25px 15px;
	text-align: center;
	text-decoration: none;
	color: #333;
	transition: all 0.3s;
	display: block;
}

.khg-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	border-color: #1b7a63;
}

.khg-category-icon {
	font-size: 2rem;
	color: #1b7a63;
	margin-bottom: 15px;
}

.khg-category-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.khg-category-count {
	font-size: 0.85rem;
	color: #888;
}

/* 3. How It Works */
.khg-how-it-works-section {
	margin-bottom: 60px;
	padding: 40px 0;
}

.khg-steps-container {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.khg-step-item {
	text-align: center;
	flex: 1;
	position: relative;
	z-index: 2;
	padding: 0 10px;
}

.khg-step-icon {
	width: 80px;
	height: 80px;
	background: #1b7a63;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 20px;
	border: 6px solid #e5f1ee;
	box-shadow: 0 0 0 6px #fff;
}

.khg-step-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.khg-step-desc {
	font-size: 0.95rem;
	color: #666;
}

.khg-step-connector {
	position: absolute;
	top: 40px;
	right: -50%;
	width: 100%;
	border-top: 2px dashed #1b7a63;
	z-index: -1;
}

/* 4. Why Choose Us */
.khg-features-section {
	background: #f9f9f9;
	padding: 60px;
	border-radius: 12px;
	margin-bottom: 60px;
}

.khg-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.khg-feature-card {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	text-align: center;
	border-bottom: 3px solid transparent;
	transition: all 0.3s;
}

.khg-feature-card:hover {
	border-bottom-color: #1b7a63;
	transform: translateY(-5px);
}

.khg-feature-icon {
	font-size: 2.5rem;
	color: #1b7a63;
	margin-bottom: 20px;
}

.khg-feature-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.khg-feature-desc {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* 5. Providers */
.khg-providers-section {
	margin-bottom: 60px;
}

.khg-providers-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.khg-provider-card {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.3s;
}

.khg-provider-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.khg-provider-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.khg-provider-placeholder {
	width: 100%;
	height: 200px;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #ccc;
}

.khg-provider-content {
	padding: 20px;
}

.khg-provider-name {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.khg-provider-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 15px;
}

.khg-provider-rating {
	font-weight: 600;
	color: #ffb800;
}

.khg-provider-footer {
	text-align: center;
}

.khg-provider-footer .khg-btn-outline {
	width: 100%;
}

/* 6. Stats */
.khg-stats-section {
	background: #0c4335;
	color: #fff;
	padding: 40px 0;
	border-radius: 12px;
	margin-bottom: 60px;
}

.khg-stats-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.khg-stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.khg-stat-icon {
	font-size: 2.5rem;
	color: #62c3a5;
}

.khg-stat-number {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}

.khg-stat-title {
	margin: 5px 0 0;
	color: #d0e8e1;
}

/* 7. Cities */
.khg-cities-section {
	margin-bottom: 60px;
}

.khg-cities-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
	margin-bottom: 30px;
}

.khg-city-card {
	height: 160px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 15px;
	text-decoration: none;
}

.khg-city-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
	z-index: 1;
}

.khg-city-name {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

.khg-view-all-center {
	text-align: center;
}

.khg-view-all-link {
	color: #1b7a63;
	font-weight: 600;
	text-decoration: none;
}

/* 8. Testimonials */
.khg-testimonials-section {
	margin-bottom: 60px;
	background: #fafafa;
	padding: 60px;
	border-radius: 12px;
}

.khg-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.khg-testimonial-card {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
	position: relative;
}

.khg-testimonial-rating {
	color: #ffb800;
	margin-bottom: 15px;
}

.khg-testimonial-quote-icon {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 2rem;
	color: #f0f0f0;
}

.khg-testimonial-text {
	font-style: italic;
	color: #555;
	margin-bottom: 25px;
	line-height: 1.6;
}

.khg-testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.khg-testimonial-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.khg-avatar-placeholder {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
}

.khg-testimonial-name {
	margin: 0 0 5px 0;
	font-weight: 600;
}

.khg-testimonial-loc {
	font-size: 0.85rem;
	color: #888;
}

.khg-slider-dots {
	text-align: center;
	margin-top: 30px;
}

.khg-slider-dots span {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
	margin: 0 5px;
}

.khg-slider-dots span.active {
	background: #1b7a63;
}

/* 9. CTA */
.khg-cta-section {
	background: #e8f3ef;
	border-radius: 16px;
	display: flex;
	align-items: center;
	padding: 0 60px;
	position: relative;
	overflow: hidden;
	margin-bottom: 60px;
}

.khg-cta-content {
	flex: 1;
	padding: 60px 0;
	z-index: 2;
}

.khg-cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.khg-cta-subtitle {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 25px;
	max-width: 400px;
}

.khg-cta-benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.khg-cta-benefits li {
	margin-bottom: 10px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.khg-cta-benefits li i {
	color: #1b7a63;
}

.khg-cta-action {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	z-index: 2;
}

.khg-cta-action-text {
	margin-bottom: 15px;
	font-weight: 600;
}

.khg-cta-image {
	flex: 1;
	align-self: flex-end;
	z-index: 1;
	margin-bottom: -10px;
	padding: 0 20px;
}

/* 10. FAQ */
.khg-faq-section {
	max-width: 800px;
	margin: 0 auto 60px auto;
}

.khg-faq-item {
	border: 1px solid #eee;
	border-radius: 8px;
	margin-bottom: 15px;
	background: #fff;
}

.khg-faq-question {
	padding: 20px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.khg-faq-question.active {
	color: #1b7a63;
}

.khg-faq-answer {
	padding: 0 20px 20px 20px;
	color: #666;
	line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.khg-hero-section {
		flex-direction: column;
		text-align: center;
	}

	.khg-hero-search-form {
		flex-direction: column;
		align-items: stretch;
	}

	.khg-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.khg-providers-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.khg-stats-grid {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.khg-cities-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.khg-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.khg-cta-section {
		flex-direction: column;
		padding: 40px;
		text-align: center;
	}

	.khg-cta-benefits li {
		justify-content: center;
	}

	.khg-cta-image {
		margin-top: 30px;
	}

	.khg-step-connector {
		display: none;
	}

	.khg-steps-container {
		flex-direction: column;
		gap: 40px;
	}
}

@media (max-width: 767px) {

	.khg-features-grid,
	.khg-providers-grid,
	.khg-cities-grid {
		grid-template-columns: 1fr;
	}
}