/* @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Varela+Round&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
	font-family: 'Masina Sans';
	src: url('path-to-font/MasinaSans-Regular.woff2') format('woff2'),
		url('path-to-font/MasinaSans-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
} */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Varela+Round&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: 'Masina Sans';
  src: url('path-to-font/MasinaSans-Regular.woff2') format('woff2'),
       url('path-to-font/MasinaSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.hero-section {
	background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

/* .container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.header.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 20px;
	position: relative;
	z-index: 1;
  display: block;
}

.header.container.siddipet {
	max-width: 100%;
}

h1 {
	font-size: 3.5em;
	margin-bottom: 20px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tagline {
	font-size: 1.5em;
	margin-bottom: 40px;
	opacity: 0.95;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease 0.2s both;
}

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

.stat-card {
	background: white;
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #2e7d32, #43a047);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:hover::before {
	transform: scaleX(1);
}

.stat-icon {
	font-size: 3em;
	margin-bottom: 20px;
	color: #43a047;
}

.stat-number {
	font-size: 2.8em;
	font-weight: bold;
	color: #2e7d32;
	margin-bottom: 10px;
}

.stat-label {
	color: #666;
	font-size: 1.1em;
	font-weight: 500;
}

.content-section {
	background: white;
	padding: 80px 20px;
	margin: 40px auto;
	max-width: 1200px;
	border-radius: 30px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

h2 {
	color: #2e7d32;
	font-size: 2.8em;
	margin-bottom: 30px;
	text-align: center;
}

.intro-text {
	font-size: 1.2em;
	line-height: 1.8;
	color: #555;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 50px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.feature-card {
	padding: 30px;
	background: #f8f9fa;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	background: #e8f5e9;
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 2.5em;
	color: #43a047;
	margin-bottom: 20px;
}

.feature-title {
	font-size: 1.4em;
	font-weight: 600;
	color: #2e7d32;
	margin-bottom: 15px;
}

.feature-description {
	color: #666;
	line-height: 1.7;
}

.technology-section {
	background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
	padding: 80px 20px;
	margin-top: 60px;
}

.tech-content {
	max-width: 1200px;
	margin: 0 auto;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.process-step {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.process-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
	width: 60px;
	height: 60px;
	background: #43a047;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step-title {
	font-size: 1.2em;
	font-weight: 600;
	color: #2e7d32;
	margin-bottom: 10px;
}

.partners-section {
	padding: 80px 20px;
	background: white;
	text-align: center;
}

.partner-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.partner-info {
	max-width: 400px;
	text-align: center;
}

.partner-name {
	font-size: 1.8em;
	font-weight: 600;
	color: #2e7d32;
	margin-bottom: 15px;
}

.partner-description {
	color: #666;
	line-height: 1.6;
}

.cta-section {
	background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
	margin-top: 60px;
}

.cta-content h3 {
	font-size: 2.5em;
	margin-bottom: 20px;
}

.cta-text {
	font-size: 1.3em;
	margin-bottom: 30px;
	opacity: 0.95;
}

.badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 20px;
	border-radius: 25px;
	margin: 5px;
	font-size: 0.95em;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5em;
	}

	.tagline {
		font-size: 1.2em;
	}

	.stat-number {
		font-size: 2.2em;
	}

	h2 {
		font-size: 2em;
	}
}