/* :root {
	--primary-color: #000000;
	--secondary-color: #333333;
	--text-color: #333333;
	--bg-color: #ffffff;
	--card-bg: #f5f5f5;
	--header-bg: rgba(255, 255, 255, 0.95);
	--footer-bg: #1a1a1a;
	--footer-text: #f5f5f5;
} */
/* :root {
	--primary-color: #2c3e50;
	--secondary-color: #27ae60;
	--text-color: #333333;
	--bg-color: #ffffff;
	--card-bg: #f5f5f5;
	--header-bg: rgba(255, 255, 255, 0.95);
	--footer-bg: #2c3e50;
	--footer-text: #ecf0f1;
} */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Section CSS */
header {
	position: fixed;
	width: 100%;
	z-index: 1000;
	transition: background-color 0.3s ease;
	background-color: #e67817;
	background-image: linear-gradient(to right, #e67817, #c1e2c3, #27ae60);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	justify-content: center;
}

.logo img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.logo:hover {
	color: #27ae60;
}

.nav-links {
	display: flex;
	gap: 2rem;
	/* background-color: #ffffff; */
}

.nav-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
	font-size: 1.1rem;
	transition: 0.2s linear;
}

.nav-links a:hover {
	color: #d6f8e9;
	border-bottom: 3px solid #d6f8e9;
}

.btn {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	background-color: #2c3e50;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn:hover {
	background-color: #27ae60;
	transform: translateY(-2px);
}

header nav .btn {
	/* padding: 0.8rem 1.5rem; */
	height: 3rem;
	background-color: #2c3e50;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

header nav .btn:hover {
	background-color: #27ae60;
	transform: translateY(-2px);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #2c3e50;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* Hero(Main) Section CSS */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	/* background-color: #000; */
	background-image: url("../img/hero_bg.jpg");
}

.hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	background-color: rgb(14, 7, 0);
	/* background: linear-gradient(
		130deg,
		rgba(230, 120, 23, 0.7) 10%,
		rgba(39, 174, 96, 0.5) 100%
	); */
	/* background: linear-gradient(z
		135deg,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0.3) 100%
	); */
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.hero-content .btn {
	background-color: #e67817;
}

.hero-content .btn:hover {
	background-color: #27ae60;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 2rem;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-30px);
	}
	60% {
		transform: translateY(-15px);
	}
}

section {
	padding: 5rem 0;
}

section:nth-child(even) {
	background-color: #f0f0f0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

/* About Section CSS */
#about {
	/* background-color: #ffdfc370; */
}
.about-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px;
	gap: 30px;
}

.about-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	width: 400px;
}

.about-text {
	max-width: 600px;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #e67817;
	font-weight: 800;
}

.about-text p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #01180b;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-section {
		flex-direction: column;
		text-align: center;
	}

	.about-image img {
		width: 100%;
	}

	.about-text {
		max-width: 100%;
	}
}

/* Product Section CSS */
.products-carousel {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.product-slide {
	display: none;
}

.product-slide.active {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.product-image {
	width: 100%;
	max-width: 500px;
	height: 350px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #2c3e50;
	color: white;
	border: none;
	font-size: 1.5rem;
	padding: 0.5rem;
	cursor: pointer;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.carousel-btn:hover {
	background-color: #27ae60;
}

.carousel-btn.prev {
	left: -60px;
}

.carousel-btn.next {
	right: -60px;
}

/* Why Patel Agri Section CSS */

#whypatelagri {
	/* background-color: #c5fcdc70; */
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background-color: #f5f5f5;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

/* Contact (Get in touch) Section CSS */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.8rem;
	margin-bottom: 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #2c3e50;
}

.contact-form textarea {
	height: 150px;
}

.map-container {
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
	/* background-color: #e67817; */
	background-image: linear-gradient(to right, #e67817, #27ae60);

	color: #ecf0f1;
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 0.5rem;
}

.footer-column a {
	color: #ecf0f1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: #fff;
	border-bottom: 1px solid white;
}

.newsletter-form {
	display: flex;
}

.newsletter-form input {
	flex-grow: 1;
	padding: 0.8rem;
	border: none;
	border-radius: 4px 0 0 4px;
}

.newsletter-form button {
	padding: 0.8rem 1.5rem;
	background-color: #27ae60;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
	background-color: #2c3e50;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 2px solid #333;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		background-image: linear-gradient(to bottom, #e67817, #abdfaf, #27ae60);
	}

	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;

		padding: 1rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.timeline::after {
		left: 31px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.timeline-item::before {
		left: 60px;
		border: medium solid white;
		border-width: 10px 10px 10px 0;
		border-color: transparent white transparent transparent;
	}

	.timeline-item::after {
		left: 15px;
	}

	.timeline-item:nth-child(even) {
		left: 0%;
	}

	.timeline-content {
		padding: 15px 20px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.carousel-btn.prev {
		left: 10px;
	}

	.carousel-btn.next {
		right: 10px;
	}
}

@media (min-width: 1024px) {
	.hero h1 {
		font-size: 4rem;
	}

	.hero p {
		font-size: 1.5rem;
	}

	.section-header h2 {
		font-size: 3rem;
	}

	.section-header p {
		font-size: 1.25rem;
	}

	.timeline-content {
		padding: 30px 40px;
	}

	header {
		height: 80px;
		background-color: #e67817;
	}

	nav {
		height: 100%;
	}

	.nav-links {
		height: 100%;
		align-items: center;
		/* background-color: #e67817; */
	}

	.nav-links a {
		height: 100%;
		display: flex;
		align-items: center;
	}

	.product-image {
		max-width: 600px;
		height: 400px;
	}
}
