/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	background-repeat: no-repeat;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #141414;
	background: #f9f8f8;
}

.nav-logo img {
	width: 100px;
}

.adress {
	background-color: #fff;
}

.adress p {
	text-align: center;
	font-size: 24px;
}
.adress .address_t {
	text-align: center;
	font-size: 18px;
}

hero {
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background: #141414;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 20px 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	color: white;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	text-decoration: none;
	transition: color 0.3s;
}

.nav-logo:hover {
	color: #75abb1;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
	letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #75abb1;
}

/* Mobile Navigation */
.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background: white;
	margin: 3px 0;
	transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
	margin-top: 70px;
	height: 600px;
	background-image: url("./images/ABUIABAEGAAg8ce1pAYo8q-enwQwgQs49QQ.png");
	background-size: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: white;
	background-repeat: no-repeat;
}

.hero-content {
	text-align: center;
}

.hero h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.2;
}

.btn-primary {
	display: inline-block;
	padding: 12px 40px;
	background: #75abb1;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s;
}

.btn-primary:hover {
	background: #1b9a9d;
	transform: translateY(-2px);
}

.hero-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.hero-indicators span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
}

.hero-indicators span.active {
	background: white;
}

.hero-side-banner {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 300px;
	background: linear-gradient(135deg, #1b9a9d 0%, #75abb1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.side-banner-content {
	text-align: center;
	color: white;
}

.side-banner-content h2 {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.side-banner-content h3 {
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 20px;
}

.side-banner-content p {
	font-size: 18px;
	margin-bottom: 20px;
}

.btn-banner {
	display: inline-block;
	padding: 10px 30px;
	background: white;
	color: #1b9a9d;
	text-decoration: none;
	border-radius: 20px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-banner:hover {
	background: #141414;
	color: white;
}

/* Revolutionize Section */
.revolutionize {
	padding: 80px 0;
	background: linear-gradient(to right, #75abb1 50%, white 50%);
}

.revolutionize-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.revolutionize-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.image-card {
	border-radius: 15px;
	background: #ccc;
	height: 250px;
	background-size: cover;
	background-position: center;
}

.img-1 {
	background-image: url("./images/ABUIABAEGAAg75bLpAYolJy_oAMwygU4mgc.png");
	grid-row: span 2;
	height: 520px;
}

.img-2 {
	background-image: url("./images/ABUIABAEGAAg3prLpAYohcec4wEwywU4hQU.png");
}

.img-3 {
	background-image: url("./images/ABUIABACGAAgwZvLpAYoutD_jQEw8C44oB8.jpg");
}

.revolutionize-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: 700;
}

.revolutionize-content p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
	color: #333;
}

.features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.feature {
	padding: 15px;
	border: 2px solid #141414;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
	background: white;
}

/* Products Section */
.products {
	padding: 80px 0;
	background: white;
}

.products h2 {
	text-align: center;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}

.products .subtitle {
	text-align: center;
	font-size: 18px;
	color: #666;
	margin-bottom: 50px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.product-card {
	border-radius: 20px;
	overflow: hidden;
}

.product-bg {
	background: #1a1a1a;
	height: 400px;
	padding: 40px;
	display: flex;
	align-items: flex-end;
	position: relative;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
}

.product-bg.charger {
	background-image: url("./images/ABUIABAEGAAg6trFpAYoyJ7xlAIw2ig48iA.png");
	background-size: 100%;
}

.product-bg.watch {
	background-image: url("./images/ABUIABAEGAAg6trFpAYo8sWG3QMw2Sg48iA.png");
	background-size: 100%;
}

.product-bg.appliance {
	background-image: url("./images/ABUIABAEGAAg6trFpAYokK68kwUw2Sg48SA.png");
	background-size: 100%;
}

.product-bg.living {
	background-image: url("./images/ABUIABAEGAAg6trFpAYoiuTPzgIw2ig48SA.png");
	background-size: 100%;
}

.product-content {
	color: white;
	z-index: 1;
}

.product-content h3 {
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 700;
}

.product-content p {
	font-size: 14px;
	margin-bottom: 20px;
	opacity: 0.9;
}

.btn-secondary {
	display: inline-block;
	padding: 10px 30px;
	border: 2px solid #75abb1;
	color: white;
	text-decoration: none;
	border-radius: 20px;
	font-weight: 500;
	transition: all 0.3s;
}

.btn-secondary:hover {
	background: #75abb1;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: #f9f8f8;
}

.services h2 {
	text-align: center;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 60px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.service-item {
	text-align: center;
}

.service-icon {
	font-size: 48px;
	margin-bottom: 20px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon img {
	height: 50px;
	width: auto;
}

.service-item h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 600;
}

.service-item p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
	padding: 80px 0;
	background: white;
}

.testimonials h2 {
	text-align: center;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 50px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.testimonial-card {
	text-align: center;
}

.phone-mockup {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	margin-bottom: 15px;
	position: relative;
	border: 8px solid #333;
}

.phone-mockup::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #555;
	border-radius: 2px;
}

.username {
	font-size: 12px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.username::before {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url("https://ext.same-assets.com/4212564274/284885940.png");
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
}

/* Social Section */
.social {
	padding: 80px 0;
	background: linear-gradient(135deg, #75abb1 0%, #f4a460 100%);
	color: white;
	text-align: center;
}

.social h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
}

.social > .container > p {
	font-size: 16px;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 80px;
}

.social-item {
	text-align: center;
}

.social-link {
	text-decoration: none;
	color: white;
	display: block;
	transition: transform 0.3s;
}

.social-link:hover {
	transform: translateY(-5px);
}

.social-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 15px;
	border-radius: 10px;
	background: #444;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.social-links.about {
	margin-top: 20px;
}
.social-links.about p {
	color: #000;
}

.social-icon.line {
	background-color: white;
	background-image: url("./images/ABUIABAEGAAguIfRyAYoyN2RpAMw9gQ49gQ.png");
	border-radius: 20px;
}

.social-icon.instagram {
	background-color: white;
	background-image: url("./images/ABUIABAEGAAgzPbcowYo2PjDswUwyAE4yAE.png");
}

.social-icon.facebook {
	background-color: white;
	background-image: url("./images/ABUIABAEGAAgzfbcowYoop_7xwYwyAE4yAE.png");
}

/* Footer */
.footer {
	background: #141414;
	color: white;
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-about p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 30px;
	opacity: 0.8;
}

.footer-social p {
	font-size: 14px;
	margin-bottom: 10px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icon-link {
	width: 40px;
	height: 40px;
	display: block;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s;
}

.social-icon-link:hover {
	transform: scale(1.1);
}

.social-icon-link.facebook {
	background-image: url("./images/ABUIABAEGAAgw-DQyAYoyI70sgYw8AQ48AQ.png");
}

.social-icon-link.instagram {
	background-image: url("./images/ABUIABACGAAg9d_boAYoqKmCzgUw_wE4_wE.jpg");
}

.footer-links {
	display: flex;
	gap: 60px;
}

.footer-column h4 {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-column ul {
	list-style: none;
}

.footer-column a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.8;
	transition: opacity 0.3s;
	line-height: 2;
}

.footer-column a:hover {
	opacity: 1;
	color: #75abb1;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.revolutionize-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.social-links {
		flex-direction: column;
		gap: 40px;
	}

	.hero-side-banner {
		display: none;
	}
}

@media (max-width: 768px) {
	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: #141414;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 20px 0;
		gap: 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 15px 0;
	}

	.nav-menu a {
		font-size: 16px;
		display: block;
		padding: 10px 0;
	}

	.hero h1 {
		font-size: 32px;
	}

	.hero {
		background-size: auto 100%;
	}

	.revolutionize,
	.products,
	.services,
	.testimonials,
	.social {
		padding: 50px 0;
	}

	h2 {
		font-size: 28px !important;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero {
		background-size: auto 100%;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* Page Header (for product pages) */
.page-header {
	margin-top: 70px;
	padding: 80px 0;
	background: #e8e8e8;
	text-align: center;
}

.page-header h1 {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	letter-spacing: 2px;
}

/* Product Detail Section */
.product-detail-section {
	padding: 60px 0;
	background: #e8e8e8;
}

.product-detail-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
	padding: 60px;
	background: #f9f9f9;
	border-radius: 15px;
}

.product-detail-card.reverse {
	direction: rtl;
}

.product-detail-card.reverse > * {
	direction: ltr;
}

.product-category {
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.product-detail-card h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #141414;
}

.product-description {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 30px;
}

.product-buttons {
	display: flex;
	/* flex-direction: column; */
	gap: 15px;
}

.btn-shop {
	display: inline-block;
	padding: 12px 30px;
	background: #000;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid #000;
}

.btn-shop:hover {
	background: #75abb1;
	border-color: #75abb1;
	transform: translateY(-2px);
}

.product-detail-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-detail-card.p1 {
	background-image: url("./images/ABUIABAEGAAgqb-6owYoiJChywIw-So49xA.png");
	background-size: 100%;
	background-repeat: no-repeat;
}
.product-detail-card.p2 {
	background-image: url("./images/ABUIABAEGAAgqb-6owYo9L6oogUw-So49xA.png");
	background-size: 100%;
	background-repeat: no-repeat;
}
.product-detail-card.p3 {
	background-image: url("./images/ABUIABAEGAAgqb-6owYooPuEiwcw-So49xA.png");
	background-size: 100%;
	background-repeat: no-repeat;
}

.product-detail-card.p4 {
	background-image: url("./images/ABUIABAEGAAg-YibpAYoqMGH-wQw-So4_BA.png");
	background-size: 100%;
	background-repeat: no-repeat;
}

.product-detail-card.p5 {
	background-image: url("./images/ABUIABAEGAAgqr-6owYopqzuQjD9Kjj4EA.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.product-detail-card.p6 {
	background-image: url("./images/ABUIABAEGAAgqr-6owYo0I2towMw-So49xA.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.product-detail-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

/* About Page Styles */
.about-hero {
	margin-top: 70px;
	height: 500px;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url("./images/ABUIABACGAAgqt-KpAYowrCRRDC4FziYDQ.jpg") center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: white;
}

.about-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
}

.about-hero h1 {
	font-size: 48px;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 0 20px;
}

.about-content {
	background: white;
	padding: 80px 0;
}

.about-text-block {
	max-width: 900px;
	margin: 0 auto 60px;
	text-align: center;
}

.about-text-block h2 {
	font-size: 28px;
	line-height: 1.6;
	font-weight: 500;
	color: #333;
}

.about-image-large {
	margin: 60px 0;
	border-radius: 15px;
	overflow: hidden;
}

.about-image-large img {
	width: 100%;
	height: auto;
	display: block;
}

.about-features {
	margin-top: 80px;
}

.about-feature-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-bottom: 60px;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-card.reverse {
	direction: rtl;
}

.about-feature-card.reverse > * {
	direction: ltr;
}

.about-feature-content {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-feature-content.dark {
	background: #2c2c2c;
	color: white;
}

.about-feature-content.light {
	background: #75abb1;
	color: white;
}

.about-feature-content.gray {
	background: #b0b0b0;
	color: white;
}

.about-feature-content h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
}

.about-feature-content p {
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.95;
}

.about-feature-image {
	overflow: hidden;
}

.about-feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Responsive Design for Product Details and About Pages */
@media (max-width: 1024px) {
	.product-detail-card {
		grid-template-columns: 1fr;
		padding: 40px;
	}
	.product-buttons {
		display: flex;
		flex-direction: column;
	}

	.product-detail-card.reverse {
		direction: ltr;
	}

	.about-feature-card {
		grid-template-columns: 1fr;
	}

	.about-feature-card.reverse {
		direction: ltr;
	}

	.about-feature-content {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 32px;
	}
	.product-buttons {
		display: flex;
		flex-direction: column;
	}

	.product-detail-card {
		padding: 30px;
		margin-bottom: 40px;
	}

	.product-detail-card h2 {
		font-size: 24px;
	}

	.product-buttons {
		gap: 10px;
	}

	.about-hero h1 {
		font-size: 32px;
	}

	.about-text-block h2 {
		font-size: 20px;
	}

	.about-feature-content {
		padding: 30px;
	}

	.about-feature-content h3 {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.product-detail-card {
		padding: 20px;
	}
	.product-buttons {
		display: flex;
		flex-direction: column;
	}

	.about-feature-content {
		padding: 20px;
	}
}
