:root {
	--primary: #1d7e3a;
	--secondary: #f9b233;
	--dark: #343a40;
	--light: #f8f9fa;
	--white: #ffffff;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--dark);
	background-color: var(--light);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header Styles */
header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 50px;
	margin-right: 10px;
}

.logo h1 {
	font-size: 24px;
	color: var(--primary);
	font-weight: 700;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 25px;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary);
}

.auth-buttons {
	display: flex;
	align-items: center;
}

.btn {
	padding: 8px 20px;
	border-radius: 5px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
}

.btn-outline {
	border: 1px solid var(--primary);
	color: var(--primary);
	background: transparent;
	margin-right: 10px;
}

.btn-outline:hover {
	background-color: var(--primary);
	color: var(--white);
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	border: 1px solid var(--primary);
}

.btn-primary:hover {
	background-color: #156e2f;
	border-color: #156e2f;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('main_bg.jpg') center/cover;
	color: var(--white);
	text-align: center;
	padding: 100px 0;
}

.hero h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.hero p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 30px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.btn-large {
	padding: 12px 30px;
	font-size: 16px;
}

.btn-secondary {
	background-color: var(--secondary);
	color: var(--dark);
	border: 1px solid var(--secondary);
}

.btn-secondary:hover {
	background-color: #e0a030;
	border-color: #e0a030;
}

/* Features Section */
.features {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h3 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
}

.section-title p {
	font-size: 18px;
	color: var(--dark);
	max-width: 700px;
	margin: 0 auto;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-img {
	height: 200px;
	overflow: hidden;
}

.feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-content {
	padding: 25px;
}

.feature-content h4 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
}

.feature-content p {
	margin-bottom: 20px;
	color: var(--dark);
}

/* Services Section */
.services {
	background-color: #f0f3f5;
	padding: 80px 0;
}

.service-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	border-bottom: 1px solid #ddd;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 25px;
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	position: relative;
	transition: color 0.3s;
	margin: 0 5px;
}

.tab-btn.active {
	color: var(--primary);
}

.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--primary);
}

.service-content {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.service-img {
	flex: 1;
}

.service-img img {
	width: 100%;
	border-radius: 10px;
}

.service-details {
	flex: 1;
}

.service-details h4 {
	font-size: 28px;
	margin-bottom: 20px;
	color: var(--primary);
}

.service-details ul {
	list-style-type: none;
	margin-bottom: 25px;
}

.service-details li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
}

.service-details li:before {
	content: '✓';
	color: var(--success);
	margin-right: 10px;
	font-weight: bold;
}

/* Products Section */
.products {
	padding: 80px 0;
}

.product-categories {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	gap: 15px;
	flex-wrap: wrap;
}

.category-btn {
	padding: 8px 20px;
	background-color: var(--light);
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
}

.product-card {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-img {
	height: 180px;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-info {
	padding: 20px;
}

.product-info h4 {
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--dark);
}

.product-info .price {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 15px;
}

.product-info .actions {
	display: flex;
	justify-content: space-between;
}

.btn-sm {
	padding: 5px 15px;
	font-size: 13px;
}

/* Support Section */
.support {
	background-color: #f0f3f5;
	padding: 80px 0;
}

.support-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.support-img {
	flex: 1;
}

.support-img img {
	width: 100%;
	border-radius: 10px;
}

.support-details {
	flex: 1;
}

.support-details h4 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--primary);
}

.support-channels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.support-channel {
	background-color: var(--white);
	border-radius: 10px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.support-channel h5 {
	font-size: 18px;
	margin: 15px 0 10px;
}

.channel-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(29, 126, 58, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.channel-icon img {
	width: 30px;
	height: 30px;
}

/* Testimonials Section */
.testimonials {
	padding: 80px 0;
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 40px;
	text-align: center;
}

.testimonial-content p {
	font-size: 18px;
	font-style: italic;
	margin-bottom: 25px;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.author-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 15px;
}

.author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.author-role {
	font-size: 14px;
	color: #777;
}

/* Government Schemes Section */
.govt-schemes {
	background-color: #f0f3f5;
	padding: 80px 0;
}

.schemes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.scheme-card {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.scheme-header {
	background-color: var(--primary);
	color: var(--white);
	padding: 15px 20px;
}

.scheme-header h4 {
	font-size: 20px;
}

.scheme-body {
	padding: 20px;
}

.scheme-body p {
	margin-bottom: 15px;
}

.eligibility {
	margin-top: 15px;
}

.eligibility h5 {
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--primary);
}

.eligibility ul {
	list-style-type: none;
}

.eligibility li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 20px;
}

.eligibility li:before {
	content: "•";
	color: var(--primary);
	position: absolute;
	left: 0;
	top: 0;
}

/* App Preview Section */
.app-preview {
	padding: 80px 0;
	background: linear-gradient(135deg, #1d7e3a 0%, #156e2f 100%);
	color: var(--white);
}

.app-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.app-details {
	flex: 1;
}

.app-details h3 {
	font-size: 36px;
	margin-bottom: 20px;
}

.app-details p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.app-features {
	margin-bottom: 30px;
}

.app-feature {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.app-feature-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.app-store-buttons {
	display: flex;
	gap: 15px;
}

.app-store-btn {
	display: flex;
	align-items: center;
	background-color: var(--white);
	color: var(--dark);
	padding: 12px 20px;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.3s;
}

.app-store-btn:hover {
	background-color: var(--secondary);
	color: var(--white);
}

.app-store-btn img {
	width: 24px;
	margin-right: 10px;
}

.app-mockup {
	flex: 1;
	text-align: center;
}

.app-mockup img {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
footer {
	background-color: var(--dark);
	color: var(--light);
	padding: 70px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	height: 50px;
}

.footer-about p {
	margin-bottom: 20px;
	line-height: 1.8;
	opacity: 0.8;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-link:hover {
	background-color: var(--primary);
}

.social-link img {
	width: 20px;
	height: 20px;
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	color: var(--white);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--light);
	opacity: 0.8;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer-links a:hover {
	opacity: 1;
}

.contact-info {
	list-style: none;
}

.contact-info li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.contact-icon {
	margin-right: 15px;
	opacity: 0.8;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	font-size: 14px;
	opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.navbar {
		flex-direction: column;
		padding: 20px 0;
	}
	
	.nav-links {
		margin: 20px 0;
	}
	
	.hero h2 {
		font-size: 36px;
	}
	
	.service-content,
	.support-content,
	.app-content {
		flex-direction: column;
	}
	
	.service-img,
	.service-details,
	.support-img,
	.support-details,
	.app-details,
	.app-mockup {
		flex: auto;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-large {
		width: 100%;
		max-width: 300px;
		margin-bottom: 10px;
	}
	
	.section-title h3 {
		font-size: 28px;
	}
	
	.feature-grid,
	.schemes-grid {
		grid-template-columns: 1fr;
	}
	
	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
	
	.support-channels {
		grid-template-columns: 1fr;
	}
}