/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
	--primary: #2da16c;
	--secondary: #4CAF50;
	--accent: #154c9d;
	--light: #f8f9fa;
	--dark: #333;
	--gray: #6c757d;
}

body {
	line-height: 1.6;
	color: var(--dark);
	background-color: #fff;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	background-color: var(--accent);
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-accent {
	background-color: var(--accent);
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
}

.section-title p {
	color: var(--gray);
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
}

/* Header Styles */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

.logo span {
	color: var(--accent);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 600;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: var(--accent);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--primary);
	cursor: pointer;
}

/* Hero Section */
.hero {
	padding: 180px 0 100px;
	background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://mspost.idhubs.com/uploads/community/299/8fb52dc3bf225a8f6f302049d13e5f41.png');
	background-size: cover;
	background-position: center;
}

.hero-container {
	display: flex;
	align-items: center;
	gap: 50px;
}

.hero-content {
	flex: 1;
	max-width: 600px;
}

.hero-video {
	flex: 1;
	max-width: 560px;
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.youtube-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px;
	display: none; /* Hidden initially, shown when play button clicked */
}

.youtube-video.active {
	display: block;
}

.video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	padding: 20px;
	cursor: pointer;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.video-placeholder:hover {
	opacity: 0.9;
}

.video-placeholder.hidden {
	display: none;
}

.video-placeholder i {
	font-size: 4rem;
	margin-bottom: 20px;
	color: rgba(255,255,255,0.9);
}

.video-placeholder h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.play-btn {
	background-color: var(--accent);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 15px;
	transition: all 0.3s ease;
}

.play-btn:hover {
	background-color: #4CAF50;
	transform: scale(1.05);
}

.hero h1 {
	font-size: 3.5rem;
	color: var(--primary);
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 1.2rem;
	color: #171818;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* Products Section */
.products {
	padding: 100px 0;
	background-color: var(--light);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.product-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s;
}

.product-card:hover {
	transform: translateY(-10px);
}

.product-img {
	height: 550px;
	background-color: #eee;
	background-size: cover;
	background-position: center;
}

.product-content {
	padding: 25px;
}

.product-content h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--primary);
}

.product-content p {
	color: var(--gray);
	margin-bottom: 20px;
}

.price {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 15px;
}

/* About Section */
.about {
	padding: 100px 0;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-img {
	flex: 1;
	height: 400px;
	background-color: #eee;
	background-image: url('https://mspost.idhubs.com/uploads/community/299/d4fd6dbbc3acba02b83ef18f0f08971b.png');
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	color: var(--gray);
}

/* Customer Buttons Section */
.customer-buttons-section {
	padding: 0px 0;
	background-color: var(--light);
	text-align: center;
}

.customer-buttons-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.customer-buttons-title {
	margin-bottom: 50px;
}

.customer-buttons-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
}

.customer-buttons-title p {
	color: var(--gray);
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
}

.customer-buttons {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.customer-btn {
	display: inline-block;
	background-color: var(--accent);
	color: white;
	padding: 16px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	min-width: 250px;
}

.customer-btn:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.customer-btn-usa {
	background-color: var(--primary);
}

.customer-btn-international {
	background-color: var(--accent);
}

/* Testimonials Section */
.testimonials {
	padding: 100px 0;
	background-color: var(--light);
}

.testimonial-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	border-bottom: 2px solid #eaeaea;
}

.tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gray);
	cursor: pointer;
	position: relative;
	transition: all 0.3s;
}

.tab-btn:hover {
	color: var(--primary);
}

.tab-btn.active {
	color: var(--accent);
}

.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--primary);
}

.testimonials-content {
	max-width: 900px;
	margin: 0 auto;
}

.testimonial-tab-content {
	display: none;
	animation: fadeIn 0.5s ease;
}

.testimonial-tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.testimonial-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-img {
	height: 250px;
	background-color: #f5f5f5;
	background-size: cover;
	background-position: center;
	position: relative;
}

.testimonial-img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to top, white, transparent);
}

.testimonial-text {
	padding: 25px;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	font-size: 4rem;
	color: var(--primary);
	opacity: 0.2;
	position: absolute;
	top: -20px;
	left: 15px;
	font-family: Georgia, serif;
}

.testimonial-text p {
	font-style: italic;
	color: var(--gray);
	margin-bottom: 20px;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 3px solid var(--light);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	color: var(--primary);
	margin-bottom: 5px;
}

.author-info span {
	color: var(--accent);
	font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
	padding: 80px 0;
	background-color: var(--primary);
	color: white;
	text-align: center;
}

.newsletter h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.newsletter p {
	max-width: 600px;
	margin: 0 auto 30px;
	font-size: 1.1rem;
}

.newsletter-form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
}

.newsletter-form input {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 30px 0 0 30px;
	font-size: 1rem;
}

.newsletter-form button {
	border-radius: 0 30px 30px 0;
	padding: 15px 30px;
}

/* Footer */
footer {
	background-color: #222;
	color: white;
	padding: 70px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 25px;
	color: #4CAF50;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: white;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.social-icons a:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #bbb;
	font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.hero-container {
		flex-direction: column;
	}
	
	.hero-content, .hero-video {
		max-width: 100%;
	}
	
	.hero h1 {
		font-size: 2.8rem;
	}
	
	.about-content {
		flex-direction: column;
	}
	
	.about-img {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}
	
	nav {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		background-color: white;
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
		padding: 20px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
	}
	
	nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	
	nav ul {
		flex-direction: column;
	}
	
	nav ul li {
		margin: 10px 0;
	}
	
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.customer-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.testimonial-tabs {
		flex-direction: column;
		align-items: center;
	}
	
	.tab-btn {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #eaeaea;
	}
	
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
	
	.newsletter-form {
		flex-direction: column;
	}
	
	.newsletter-form input {
		border-radius: 30px;
		margin-bottom: 10px;
	}
	
	.newsletter-form button {
		border-radius: 30px;
		width: 100%;
	}
}

@media (max-width: 576px) {
	.hero {
		padding: 150px 0 70px;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.customer-buttons-title h2 {
		font-size: 2rem;
	}
	
	.products, .about, .testimonials, .customer-buttons-section {
		padding: 70px 0;
	}
	
	.customer-btn {
		min-width: 200px;
		padding: 14px 30px;
	}
	
	.testimonial-img {
		height: 200px;
	}
}