﻿:root {
	--primary-color: #FF6B35;
	--secondary-color: #4A90E2;
	--accent-color: #F7931E;
	--text-color: #2C3E50;
	--bg-light: #F8F9FA;
	--bg-white: #FFFFFF;
	--border-color: #E0E0E0;
}

.saffron-indigo-theme {
	--primary-color: #FF6B35;
	--secondary-color: #4A90E2;
	--text-color: #2C3E50;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

html {
	background: var(--bg-white);
	overflow-x: hidden;
}

body {
	color: var(--text-color);
	font-family: "Noto Sans Devanagari", "Arial", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
}

html.no-scroll {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-color);
}

section {
	padding: 40px 0;
	border-bottom: 3px solid var(--border-color);
}

.container-wrapper {
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Header Styles */
.main-header {
	padding: 25px 0;
	border-bottom: 3px solid var(--primary-color);
	position: relative;
	z-index: 100;
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 100%);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.site-logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mobile-menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--primary-color);
	cursor: pointer;
	background: var(--bg-white);
	transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
	background: var(--primary-color);
	transform: scale(1.05);
}

.mobile-menu-btn svg rect {
	fill: var(--primary-color);
	transition: fill 0.3s ease;
}

.mobile-menu-btn:hover svg rect {
	fill: var(--bg-white);
}

nav {
	display: none;
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-white);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	width: 100%;
	z-index: 100;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

nav.active {
	display: flex;
}

nav a {
	padding: 25px 0;
	display: block;
	width: 100%;
	border-bottom: 2px solid var(--border-color);
	transition: background 0.3s ease;
}

nav a:hover {
	background: var(--bg-light);
	color: var(--primary-color);
}

.menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99;
}

.menu-overlay.active {
	display: block;
}

/* Hero Section */
.hero-section {
	text-align: center;
	padding: 60px 0;
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #4A90E2 100%);
	color: white;
	border-bottom: none;
}

.main-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 30px;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
	width: 60px;
	height: auto;
	display: block;
	margin: 30px auto;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.scroll-indicator circle {
	fill: var(--secondary-color);
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	max-width: 900px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.95);
}

/* Product Sections */
.product-section {
	padding: 50px 0;
	background: var(--bg-white);
}

.product-section.alternate {
	background: var(--bg-light);
}

.section-heading {
	font-size: 26px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--primary-color);
	line-height: 1.4;
}

.text-content {
	margin-bottom: 30px;
}

.text-content p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	text-align: justify;
}

.product-image {
	display: block;
	margin: 30px auto;
	width: 100%;
	max-width: 600px;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.product-image:hover {
	transform: scale(1.02);
}

.cta-button {
	width: 100%;
	max-width: 400px;
	height: 50px;
	display: flex;
	padding: 12px 40px;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	font-size: 18px;
	font-weight: 600;
	border: none;
	color: white;
	cursor: pointer;
	margin: 30px auto 0;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Contact Section */
.contact-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
	color: white;
	border-bottom: none;
}

.form-title {
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 40px;
	font-weight: 700;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

form {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	margin: 0 auto;
}

form label {
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: white;
}

form input + label {
	margin-top: 20px;
}

form input,
form textarea {
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.9);
	padding: 12px 16px;
	height: 50px;
	font-size: 16px;
	font-family: inherit;
	color: var(--text-color);
	transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
	border-color: white;
	background: white;
	outline: none;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

form textarea {
	height: 120px;
	margin-bottom: 25px;
	resize: vertical;
}

.submit-button {
	width: 100%;
	max-width: 400px;
	height: 50px;
	font-family: inherit;
	display: flex;
	padding: 12px 40px;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	background: white;
	font-size: 18px;
	font-weight: 600;
	border: none;
	color: var(--primary-color);
	cursor: pointer;
	margin: 0 auto;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	background: var(--bg-light);
}

/* Footer */
.main-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 40px 20px;
	gap: 15px;
	background: var(--text-color);
	color: white;
}

.main-footer a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.main-footer a:hover {
	color: var(--primary-color);
}

.main-footer p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice */
#hbgBDAgqmW-cookie {
	display: none;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	bottom: 20px;
	left: 50%;
	width: 100%;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 20px;
	background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	gap: 15px;
	z-index: 999999;
	font-size: 15px;
	color: white;
}

#hbgBDAgqmW-cookie.show {
	display: flex;
	flex-direction: column;
}

#hbgBDAgqmW-cookie div {
	display: inline-block;
	margin-bottom: 10px;
}

#hbgBDAgqmW-cookie a {
	color: var(--primary-color);
	text-decoration: underline;
}

.cookie-accept-btn {
	border-radius: 8px;
	background: var(--primary-color);
	color: white;
	font-family: inherit;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
	border: none;
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 600;
}

.cookie-accept-btn:hover {
	background: var(--accent-color);
	transform: scale(1.05);
}

/* Responsive Design */
@media (min-width: 1024px) {
	body {
		font-size: 18px;
		line-height: 1.7;
	}

	.container-wrapper {
		padding: 0;
	}

	.mobile-menu-btn {
		display: none;
	}

	section {
		padding: 80px 0;
	}

	.main-header {
		padding: 30px 0;
	}

	.main-header .container-wrapper {
		padding: 0;
	}

	.site-logo {
		font-size: 32px;
	}

	.main-title {
		font-size: 56px;
		line-height: 1.2;
		max-width: 1000px;
		margin: 0 auto 40px;
	}

	.scroll-indicator {
		width: 80px;
		margin: 40px auto;
	}

	.hero-description {
		font-size: 20px;
		max-width: 1000px;
	}

	.section-heading {
		font-size: 36px;
		margin-bottom: 40px;
	}

	.text-content p {
		font-size: 19px;
	}

	.product-image {
		max-width: 700px;
		margin: 40px auto;
	}

	.cta-button {
		max-width: 500px;
		height: 55px;
		font-size: 20px;
		margin: 40px auto 0;
	}

	.form-title {
		font-size: 48px;
		margin-bottom: 50px;
	}

	form {
		max-width: 700px;
	}

	form label {
		font-size: 20px;
		margin-bottom: 12px;
	}

	form input + label {
		margin-top: 30px;
	}

	form input,
	form textarea {
		padding: 15px 20px;
		height: 55px;
		font-size: 18px;
	}

	form textarea {
		height: 150px;
		margin-bottom: 30px;
	}

	.submit-button {
		max-width: 500px;
		height: 55px;
		font-size: 20px;
	}

	.main-footer {
		padding: 50px 20px;
		gap: 20px;
	}

	.main-footer a {
		font-size: 18px;
	}

	.main-footer p {
		font-size: 16px;
	}

	nav {
		display: flex;
		flex-direction: row;
		position: static;
		gap: 30px;
		width: max-content;
		box-shadow: none;
		background: transparent;
	}

	nav a {
		text-align: center;
		font-weight: 600;
		padding: 0;
		width: auto;
		border: none;
		font-size: 18px;
		color: var(--text-color);
		transition: color 0.3s ease;
	}

	nav a:hover {
		background: transparent;
		color: var(--primary-color);
	}

	#hbgBDAgqmW-cookie {
		flex-direction: row;
		max-width: 1200px;
		padding: 25px 30px;
	}

	#hbgBDAgqmW-cookie div {
		margin-bottom: 0;
	}
}

/* Contact Page Styles */
.contact-info-section {
	padding: 60px 0;
	background: var(--bg-light);
}

.contact-page-title {
	font-size: 36px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 40px;
	color: var(--primary-color);
}

.contact-details {
	text-align: center;
	margin-bottom: 40px;
	padding: 30px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-name {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.address {
	font-size: 18px;
	color: var(--text-color);
	margin-bottom: 15px;
	line-height: 1.6;
}

.phone-link,
.email-link {
	display: block;
	font-size: 18px;
	color: var(--secondary-color);
	margin: 15px 0;
	font-weight: 600;
	transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
	color: var(--primary-color);
}

.map-container {
	margin-top: 30px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
}

@media (min-width: 1024px) {
	.contact-page-title {
		font-size: 48px;
		margin-bottom: 50px;
	}

	.contact-details {
		padding: 40px;
		max-width: 800px;
		margin: 0 auto 50px;
	}

	.company-name {
		font-size: 28px;
	}

	.address {
		font-size: 20px;
	}

	.phone-link,
	.email-link {
		font-size: 20px;
	}

	.map-container {
		max-width: 900px;
		margin: 0 auto;
	}

	.map-container iframe {
		height: 500px;
	}
}
