﻿:root {
	--primary-blue: #1E3A8A;
	--secondary-teal: #0D9488;
	--accent-coral: #F87171;
	--text-charcoal: #1F2937;
	--bg-slate: #F1F5F9;
	--bg-white: #FFFFFF;
	--border-gray: #CBD5E1;
	--shadow-medium: rgba(0, 0, 0, 0.12);
	--gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #0D9488 100%);
	--gradient-secondary: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
}

.new-layout-theme {
	--primary-color: var(--primary-blue);
	--secondary-color: var(--secondary-teal);
	--text-color: var(--text-charcoal);
}

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

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

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.75;
	background: var(--bg-slate);
}

html.no-scroll {
	overflow: hidden;
}

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

section {
	padding: 50px 0;
}

.content-wrapper {
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
}

/* Header Styles */
.site-header {
	padding: 18px 0;
	background: var(--bg-white);
	border-bottom: 1px solid var(--border-gray);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px var(--shadow-medium);
}

.header-container {
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-section {
	flex: 1;
}

.logo-text {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-blue);
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	transition: color 0.3s ease;
}

.logo-text:hover {
	color: var(--secondary-teal);
}

.menu-toggle-button {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 32px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
	padding: 0;
}

.menu-line {
	width: 100%;
	height: 3px;
	background: var(--primary-blue);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle-button:hover .menu-line {
	background: var(--secondary-teal);
}

.site-navigation {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	flex-direction: column;
	width: 100%;
	background: var(--bg-white);
	box-shadow: 0 4px 12px var(--shadow-medium);
	z-index: 999;
	padding: 20px 0;
}

.site-navigation.active {
	display: flex;
}

.nav-link {
	padding: 18px 30px;
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--border-gray);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: var(--text-charcoal);
	transition: all 0.3s ease;
}

.nav-link:hover {
	background: var(--bg-slate);
	color: var(--primary-blue);
}

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

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

/* Intro Section */
.intro-section {
	padding: 60px 0;
	background: var(--gradient-primary);
	color: white;
}

.intro-text-content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.intro-text-content p {
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.98);
	text-align: justify;
}

/* Products Grid Section */
.products-grid-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.products-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 40px;
}

.product-column {
	background: var(--bg-slate);
	border-radius: 16px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 12px var(--shadow-medium);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-column:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image-container {
	width: 100%;
	height: 250px;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 20px;
	background: var(--bg-white);
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-column:hover .product-img {
	transform: scale(1.1);
}

.product-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--primary-blue);
	line-height: 1.3;
	text-align: center;
}

.product-text {
	flex: 1;
}

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

/* Contact Form Section */
.contact-form-section {
	padding: 80px 0;
	background: var(--gradient-secondary);
	color: white;
}

.form-header-wrapper {
	text-align: center;
	margin-bottom: 50px;
}

.form-heading {
	font-size: 38px;
	line-height: 1.3;
	font-weight: 700;
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}

.contact-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 500px;
	background: rgba(255, 255, 255, 0.95);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: start;
}

.contact-form-block {
	width: 100%;
	order: 1;
}

.contact-map-block {
	width: 100%;
	order: 2;
}

.contact-map-block .map-container {
	width: 100%;
	height: 500px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	background: var(--bg-white);
}

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

.form-field-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-charcoal);
}

.form-input,
.form-textarea {
	width: 100%;
	border-radius: 10px;
	border: 2px solid var(--border-gray);
	background: var(--bg-white);
	padding: 14px 18px;
	font-size: 16px;
	font-family: inherit;
	color: var(--text-charcoal);
	transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	border-color: var(--secondary-teal);
	background: var(--bg-slate);
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-textarea {
	height: 130px;
	resize: vertical;
	min-height: 130px;
}

.form-submit-btn {
	width: 100%;
	max-width: 450px;
	height: 55px;
	font-family: inherit;
	display: flex;
	padding: 14px 45px;
	justify-content: center;
	align-items: center;
	border-radius: 28px;
	background: var(--gradient-primary);
	font-size: 18px;
	font-weight: 600;
	border: none;
	color: white;
	cursor: pointer;
	margin: 20px auto 0;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.form-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
	background: var(--gradient-secondary);
}

/* Footer */
.page-footer {
	padding: 50px 0;
	background: var(--text-charcoal);
	color: white;
}

.footer-container {
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-nav {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-nav-link {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-nav-link:hover {
	color: var(--accent-coral);
}

.footer-copyright-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 10px;
}

/* 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: 22px;
	background: linear-gradient(135deg, var(--text-charcoal) 0%, #374151 100%);
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	gap: 18px;
	z-index: 999999;
	font-size: 15px;
	color: white;
}

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

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

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

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

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

/* Responsive Design */
@media (min-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.contact-content-grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}

	.contact-form-block {
		order: 1;
	}

	.contact-map-block {
		order: 2;
	}

	.contact-info-grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}

	.contact-details-block {
		order: 1;
	}

	.contact-info-section .contact-map-block {
		order: 2;
	}

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

	.product-title {
		font-size: 26px;
	}

	.product-text p {
		font-size: 17px;
	}
}

@media (min-width: 1024px) {
	body {
		font-size: 17px;
	}

	.content-wrapper {
		padding: 0;
	}

	section {
		padding: 80px 0;
	}

	.site-header {
		padding: 22px 0;
	}

	.header-container {
		padding: 0;
	}

	.logo-text {
		font-size: 28px;
	}

	.menu-toggle-button {
		display: none;
	}

	.intro-section {
		padding: 100px 0;
	}

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

	.products-grid-section {
		padding: 100px 0;
	}

	.products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
		margin-top: 50px;
	}

	.product-column {
		padding: 35px;
	}

	.product-image-container {
		height: 280px;
	}

	.product-title {
		font-size: 22px;
		margin-bottom: 18px;
	}

	.product-text p {
		font-size: 15px;
	}

	.contact-form-section {
		padding: 100px 0;
	}

	.form-heading {
		font-size: 48px;
		margin-bottom: 60px;
	}

	.contact-content-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		align-items: stretch;
	}

	.contact-form-block {
		order: 1;
	}

	.contact-form-wrapper {
		max-width: 600px;
		margin: 0 auto;
	}

	.contact-form {
		padding: 50px;
		max-width: 600px;
	}

	.contact-map-block {
		order: 2;
	}

	.contact-map-block .map-container {
		height: 100%;
		min-height: 600px;
	}

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

	.form-input,
	.form-textarea {
		padding: 16px 22px;
		font-size: 17px;
	}

	.form-textarea {
		height: 150px;
		min-height: 150px;
	}

	.form-submit-btn {
		max-width: 550px;
		height: 60px;
		font-size: 19px;
		margin: 30px auto 0;
	}

	.page-footer {
		padding: 60px 0;
	}

	.footer-nav-link {
		font-size: 16px;
	}

	.footer-copyright-text {
		font-size: 15px;
	}

	.site-navigation {
		display: flex;
		flex-direction: row;
		position: static;
		gap: 35px;
		width: auto;
		box-shadow: none;
		background: transparent;
		padding: 0;
	}

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

	.nav-link:hover {
		background: transparent;
		color: var(--primary-blue);
	}

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

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

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

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

.contact-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: start;
}

.contact-details-block {
	width: 100%;
	order: 1;
}

.contact-details {
	text-align: center;
	padding: 40px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 12px var(--shadow-medium);
}

.contact-info-section .contact-map-block {
	width: 100%;
	order: 2;
}

.contact-info-section .contact-map-block .map-container {
	margin-top: 0;
	width: 100%;
	height: 500px;
}

.contact-info-section .contact-map-block .map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

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

.address {
	font-size: 19px;
	color: var(--text-charcoal);
	margin-bottom: 20px;
	line-height: 1.7;
}

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

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


@media (min-width: 1024px) {
	.contact-info-section {
		padding: 100px 0;
	}

	.contact-page-title {
		font-size: 56px;
		margin-bottom: 60px;
	}

	.contact-info-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		align-items: stretch;
	}

	.contact-details {
		padding: 50px;
		margin: 0;
		height: 100%;
	}

	.contact-info-section .contact-map-block .map-container {
		height: 100%;
		min-height: 550px;
	}

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

	.address {
		font-size: 21px;
	}

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