/* --- CORE VARIABLES --- */
:root {
	--primary-blue: #004080;
	--secondary-blue: #002a55;
	--accent-gold: #FFD700;
	--text-dark: #333;
	--text-gray: #666;
	--white: #ffffff;
	--light-bg: #f4f7f6;
	--whatsapp-green: #25D366;
}

/* --- GLOBAL RESET --- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--text-dark);
	background-color: var(--white);
	overflow-x: hidden;
	top: 0 !important;
	position: relative !important;
	min-height: 100vh;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
}

a {
	text-decoration: none;
	transition: 0.3s;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
}

/* --- 1. TOP BAR --- */
.top-bar {
	background: var(--primary-blue);
	color: var(--white);
	padding: 0 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	z-index: 1001;
	position: relative;
	height: 50px;
}

.top-left {
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.top-left i {
	color: var(--accent-gold);
	margin-right: 8px;
}

.top-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.social-icons {
	display: flex;
	align-items: center;
}

.social-icons a {
	color: var(--white);
	font-size: 14px;
	margin-left: 10px;
}

.social-icons a:hover {
	color: var(--accent-gold);
}

/* --- GOOGLE TRANSLATE CUSTOM STYLING --- */
#google_translate_element {
	display: flex;
	align-items: center;
	line-height: 0;
}

.goog-te-gadget {
	color: transparent !important;
	font-size: 0 !important;
}

.goog-te-gadget span {
	display: none !important;
}

.goog-te-combo {
	padding: 2px 5px;
	margin: 0 !important;
	font-size: 12px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: white;
	color: #333;
	outline: none;
	height: 26px;
	cursor: pointer;
	max-width: 100px;
}

.goog-te-banner-frame.skiptranslate {
	display: none !important;
}

body {
	top: 0px !important;
}

#goog-gt-tt {
	display: none !important;
	top: 0px !important;
}

.goog-tooltip {
	display: none !important;
}

.goog-tooltip:hover {
	display: none !important;
}

.goog-text-highlight {
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

/* --- 2. NAVBAR --- */
header {
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0 5%;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo img{
	height: 80px;   /* 65px → 90px */
	width: auto;
	display: block;
}


.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: var(--text-dark);
	font-weight: 600;
	font-size: 16px;
	position: relative;
}

.nav-links a:hover {
	color: var(--primary-blue);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--accent-gold);
	transition: 0.3s;
}

/* Active Link Logic Added Here */
.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a.active {
	color: var(--primary-blue);
}

.hamburger {
	display: none;
	cursor: pointer;
	font-size: 24px;
	color: var(--primary-blue);
}

/* SIDE MENU */
.side-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	background: var(--white);
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
	z-index: 2000;
	padding: 20px;
	transition: 0.4s ease;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.side-menu.active {
	left: 0;
}

.close-btn {
	align-self: flex-end;
	font-size: 24px;
	cursor: pointer;
}

.side-menu a {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

/* Mobile Menu Active State */
.side-menu a.active {
	color: var(--primary-blue);
	border-bottom: 2px solid var(--accent-gold);
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1999;
	display: none;
}

.menu-overlay.active {
	display: block;
}

/* --- 3. HERO SLIDER --- */
.hero {
	height: 90vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
}

.hero-slider-track {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.8s ease-in-out;
}

.hero-slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
	position: relative;
	background-size: cover;
	background-position: center;
}

.hero-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 30, 60, 0.75);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	opacity: 1;
	transition: opacity 0.3s;
	width: 100%;
	max-width: 800px;
}

/* Animation */
@keyframes fadeUpText {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-text h1,
.animate-text p,
.animate-text .btn-primary {
	animation: fadeUpText 1s ease-out forwards;
}

.animate-text h1 {
	animation-delay: 0.2s;
	opacity: 0;
}

.animate-text p {
	animation-delay: 0.4s;
	opacity: 0;
}

.animate-text .btn-primary {
	animation-delay: 0.6s;
	opacity: 0;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hero h1 span {
	color: var(--accent-gold);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
	overflow-wrap: break-word;
}

.btn-primary {
	padding: 15px 35px;
	background: var(--accent-gold);
	color: #000;
	border-radius: 5px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
	display: inline-block;
}

.btn-primary:hover {
	background: #fff;
	transform: translateY(-3px);
}

.hero-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.hero-dot {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.hero-dot.active {
	background: var(--accent-gold);
	transform: scale(1.2);
}

/* --- 4. STATS --- */
.stats-section {
	background: var(--primary-blue);
	padding: 60px 5%;
	color: white;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	text-align: center;
}

.stat-box {
	margin: 20px;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--accent-gold);
	display: block;
}

.stat-label {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
}

/* --- 5. ABOUT --- */
.about-section {
	padding: 100px 5%;
}

.about-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 60px;
	align-items: flex-start;
}

.about-img img {
	border-radius: 10px;
	box-shadow: 20px 20px 0 var(--accent-gold);
	width: 100%;
}

.about-content h4 {
	color: var(--accent-gold);
	font-weight: bold;
}

.about-content h2 {
	font-size: 2.5rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
	overflow-wrap: break-word;
}

.about-content p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
}

.btn-readmore {
	border: 2px solid var(--primary-blue);
	padding: 10px 30px;
	color: var(--primary-blue);
	font-weight: bold;
	border-radius: 5px;
}

.btn-readmore:hover {
	background: var(--primary-blue);
	color: white;
}

/* --- 6. PROCESS --- */
.process-section {
	padding: 80px 5%;
	background: var(--light-bg);
	text-align: center;
}

.section-title {
	font-size: 2.5rem;
	color: var(--primary-blue);
	font-weight: 700;
	margin-bottom: 50px;
}

.steps-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.step-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	width: 320px;
	position: relative;
	transition: 0.3s;
	border: 1px solid #dbeafe;
	box-shadow: 0 5px 15px rgba(0, 64, 128, 0.08);
}

.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 64, 128, 0.2);
}

.step-icon {
	font-size: 50px;
	color: var(--primary-blue);
	margin-bottom: 20px;
	display: inline-block;
}

.step-num {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 40px;
	height: 40px;
	background: var(--accent-gold);
	color: #000;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* --- 7. PRODUCTS --- */
.products-section {
	padding: 80px 5%;
	background: var(--white);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.product-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #eee;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: 0.4s;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-img {
	height: 250px;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.product-card:hover .product-img img {
	transform: scale(1.1);
}

.product-info {
	padding: 25px;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.btn-enquiry {
	display: block;
	width: 100%;
	padding: 12px 0;
	background-color: var(--whatsapp-green);
	color: white;
	font-weight: 600;
	border-radius: 5px;
	font-size: 14px;
	margin-top: 15px;
	transition: 0.3s;
}

.btn-enquiry:hover {
	background-color: #1ebe57;
	color: white;
	transform: scale(1.02);
}

.btn-enquiry i {
	margin-right: 5px;
}

/* --- 8. TESTIMONIALS --- */
.testimonial-section {
	padding: 80px 5%;
	background: var(--light-bg);
	text-align: center;
}

.testimonial-wrapper {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.testimonial-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.testimonial-card {
	flex: 0 0 100%;
	min-width: 100%;
	background: var(--white);
	padding: 50px;
	box-sizing: border-box;
	border-top: 5px solid var(--accent-gold);
}

.quote-icon {
	font-size: 30px;
	color: #ddd;
	margin-bottom: 15px;
}

.client-name {
	margin-top: 15px;
	font-weight: bold;
	color: var(--primary-blue);
	font-size: 1.2rem;
}

.slider-controls {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.slider-btn {
	background: var(--primary-blue);
	color: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: 0.3s;
}

.slider-btn:hover {
	background: var(--accent-gold);
	color: black;
}

/* --- 9. CTA --- */
.cta-section {
	background: linear-gradient(rgba(0, 64, 128, 0.9), rgba(0, 64, 128, 0.9)), url('../image/product.avif');
	background-attachment: fixed;
	padding: 80px 5%;
	text-align: center;
	color: white;
}

/* --- BACK TO TOP --- */
#backToTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;

	/* ðŸ”¥ SIZE UPDATED ðŸ”¥ */
	width: 40px;
	/* 50px -> 40px */
	height: 40px;
	/* 50px -> 40px */
	font-size: 16px;
	/* 20px -> 16px  */

	border-radius: 50%;
	background-color: var(--accent-gold);
	color: #000;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: 0.3s;
	align-items: center;
	justify-content: center;
}

#backToTop:hover {
	background-color: var(--primary-blue);
	color: var(--white);
	transform: scale(1.1);
}

footer {
	background: #111;
	color: #aaa;
	padding: 60px 5% 20px;
}

.footer-bottom {
	border-top: 1px solid #333;
	color: #fff;
	font-weight: bold;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	font-size: 0.9rem;
}

.footer-bottom a {
	color: #ffd700 !important;
	/* gold color for Gradix Technologies */
	font-weight: bold;
}


/* --- CLEAN MASONRY GRID STYLES --- */
.gallery-section {
	padding: 50px 5%;
	background-color: #f9f9f9;
}

.masonry-grid {
	column-count: 3;
	/* 3 Columns */
	column-gap: 25px;
}

.gallery-item {
	break-inside: avoid;
	margin-bottom: 25px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;

	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.gallery-item img {
	width: 100%;
	height: auto !important;
	display: block;
	/* Image hover zoom removed */
}

/* --- SIMPLE HOVER EFFECT (Shadow Only) --- */
.gallery-item:hover {
	transform: translateY(-5px);

	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* (Overlay Styles Removed completely) */


/* --- LIGHTBOX STYLES (Simple) --- */
.lightbox {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#lightbox-img {
	display: block;
	max-width: 95%;
	max-height: 90vh;
	border-radius: 4px;
	box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.close-lightbox {
	position: fixed;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 45px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1000000;
	background: rgba(255, 255, 255, 0.1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
	.masonry-grid {
		column-count: 3;
	}
}

@media (max-width: 768px) {
	.masonry-grid {
		column-count: 2;
		column-gap: 15px;
	}

	.gallery-section {
		padding: 30px 10px;
	}
}


/* --- FLOATING BUTTONS (LEFT CENTER & ANIMATED) --- */
.floating-widget {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
	z-index: 99999;
	display: flex;
	flex-direction: column-reverse;
	gap: 15px;
	align-items: center;
}

.float-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

/* --- WHATSAPP (Green) --- */
.float-whatsapp {
	background-color: #25d366;
	animation: pulse-green 2s infinite;
}

/* --- CALL (Golden Orange) --- */
.float-call {
	background-color: #f39c12;
	animation: pulse-orange 2s infinite;
	animation-delay: 1s;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes pulse-green {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
		transform: scale(1);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
		transform: scale(1.1);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
		transform: scale(1);
	}
}

@keyframes pulse-orange {
	0% {
		box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
		transform: scale(1);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
		transform: scale(1.1);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
		transform: scale(1);
	}
}

/* Tooltip (Hover Text) */
.float-btn::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	visibility: hidden;
}

.float-btn:hover::after {
	opacity: 1;
	visibility: visible;
}

/* --- FIX: MOBILE MENU OVERLAP --- */


#sideMenu,
.side-menu {
	z-index: 200000 !important;
}


#menuOverlay,
.menu-overlay {
	z-index: 199999 !important;
}


/* --- PRODUCTS PAGE STYLES (UPDATED) --- */

/* Page Header */
.page-header {
	background-size: cover;
	background-position: center;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: -80px;
	padding-top: 80px;
	position: relative;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 40, 80, 0.7);
}

.page-header div {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: 3rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* Filter Section (Base Styles) */
.filter-section {
	padding: 40px 5% 20px;
	text-align: center;
	white-space: nowrap;
	overflow-x: auto;
}

/* PC Buttons (Default) */
.filter-btn {
	border: none;
	outline: none;
	padding: 10px 25px;
	background-color: #e0e0e0;
	cursor: pointer;
	margin: 5px;
	border-radius: 30px;
	font-weight: 600;
	transition: 0.3s;
	color: #555;
	display: inline-block;
	/* PC la theriyum */
}

.filter-btn:hover,
.filter-btn.active {
	background-color: #004080;
	color: white;
	box-shadow: 0 4px 10px rgba(0, 64, 128, 0.3);
}

/* --- NEW: MOBILE DROPDOWN STYLES (Compact & Left) --- */
.mobile-filter-wrapper {
	display: none;
	/* Default PC la theriyadhu */
	text-align: left;
	/* Left Align */
	padding-left: 5px;
}

.mobile-filter-select {
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 600;
	color: #004080;
	border: 2px solid #004080;
	border-radius: 5px;
	background-color: white;
	outline: none;
	cursor: pointer;
	width: auto;
	/* Full width illa, Compact ah irukum */
	min-width: 150px;
}

/* --- GRID LAYOUT --- */
.products-container {
	padding: 20px 5% 80px;
	background-color: #f8f9fa;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
}

/* Card Design */
.shop-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: 0.3s;
	border: 1px solid #eee;
	position: relative;
	display: flex;
	flex-direction: column;
}

.shop-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

/* Ribbon */
.ribbon {
	position: absolute;
	top: 15px;
	right: -30px;
	width: 120px;
	text-align: center;
	transform: rotate(45deg);
	background-color: #FFD700;
	color: #000;
	font-size: 11px;
	font-weight: bold;
	padding: 5px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 2;
	text-transform: uppercase;
	pointer-events: none;
}

/* Image Area */
.shop-img {
	height: 220px;
	overflow: hidden;
	position: relative;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.shop-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: 0.5s;
}

.shop-card:hover .shop-img img {
	transform: scale(1.08);
}

/* Content Area */
.shop-content {
	padding: 15px;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.shop-content h3 {
	font-size: 1.1rem;
	color: #004080;
	margin-bottom: 5px;
	font-weight: 700;
}

.specs {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 15px;
}

/* Buttons */
.card-actions {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.btn-quick {
	flex: 1;
	padding: 8px;
	border: 1px solid #004080;
	background: white;
	color: #004080;
	border-radius: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	transition: 0.3s;
}

.btn-quick:hover {
	background: #f0f8ff;
}

.btn-quote {
	flex: 1;
	padding: 8px;
	border: none;
	background: #25D366;
	color: white;
	border-radius: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.btn-quote:hover {
	background: #128C7E;
}

/* --- MODAL STYLES --- */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 3000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-content {
	background: white;
	width: 100%;
	max-width: 800px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 25px;
	cursor: pointer;
	color: #333;
	z-index: 10;
}

.modal-gallery {
	flex: 1;
	min-width: 300px;
	background: #f9f9f9;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main-preview {
	width: 100%;
	height: 300px;
	object-fit: contain;
	margin-bottom: 20px;
}

.thumb-nav-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: auto;
}

.thumb-grid {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.thumb-nav-btn {
	width: 40px;
	height: 40px;
	background-color: #e0e0e0;
	color: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	transition: 0.3s;
	flex-shrink: 0;
}

.thumb-nav-btn:hover {
	background-color: #004080;
	color: white;
}

.thumb-img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border: 1px solid #ddd;
	cursor: pointer;
	border-radius: 4px;
}

.thumb-img:hover,
.thumb-img.active {
	border-color: #004080;
}

.modal-info {
	flex: 1;
	min-width: 300px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal-info h2 {
	color: #004080;
	margin-bottom: 10px;
}

.modal-desc {
	color: #555;
	font-size: 0.95rem;
	margin-bottom: 20px;
	line-height: 1.6;
}

.modal-specs li {
	margin-bottom: 8px;
	color: #444;
	font-size: 0.9rem;
	list-style: none;
}

.modal-specs i {
	color: #FFD700;
	width: 20px;
}

#modalWaBtn {
	width: 100%;
	background-color: #25D366;
	color: white;
	border: none;
	padding: 12px 20px;
	font-size: 15px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#modalWaBtn:hover {
	background-color: #128C7E;
	transform: translateY(-2px);
}

/* =========================================
           MOBILE RESPONSIVE (UPDATED)
           ========================================= */

/* TABLET & MOBILE (377px to 768px) */
@media (max-width: 768px) {

	/* --- FILTER SECTION: HIDE BUTTONS, SHOW DROPDOWN --- */
	.filter-btn {
		display: none;
	}

	/* Hide PC Buttons */
	.filter-section {
		padding: 20px 5%;
		text-align: left;
	}

	/* Reset padding/align */

	.mobile-filter-wrapper {
		display: block;
		/* Show Dropdown */
	}

	/* Rest of your existing mobile CSS */
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.products-container {
		padding: 15px 5px;
	}

	.shop-img {
		height: 180px;
		padding: 5px;
	}

	.shop-content {
		padding: 8px 5px;
		text-align: center;
	}

	.shop-content h3 {
		font-size: 0.85rem;
		height: 36px;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		margin-bottom: 8px;
	}

	.specs {
		display: none;
	}

	.card-actions {
		flex-direction: row;
		gap: 15px;
		padding: 0 10px;
		margin-top: auto;
	}

	.btn-quick,
	.btn-quote {
		flex: 1;
		font-size: 10px;
		padding: 6px 0;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		white-space: nowrap;
		border-radius: 4px;
	}

	.btn-quick i,
	.btn-quote i {
		font-size: 10px;
	}

	.ribbon {
		width: 100px;
		font-size: 9px;
		top: 12px;
		right: -28px;
		padding: 4px 0;
	}

	/* Modal Mobile */
	.modal-overlay {
		align-items: center;
		justify-content: center;
		padding: 15px;
		z-index: 9999;
		background: rgba(0, 0, 0, 0.8);
	}

	.modal-content {
		display: block !important;
		width: 100%;
		max-width: 380px;
		height: 80vh;
		background: #fff;
		border-radius: 10px;
		overflow-y: auto;
		position: relative;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}

	.modal-close {
		position: absolute;
		top: 10px;
		right: 10px;
		background: rgba(255, 255, 255, 0.9);
		width: 35px;
		height: 35px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 100;
		font-size: 22px;
		color: #000;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	}

	.modal-gallery {
		display: block;
		width: 100%;
		background: #f4f4f4;
		padding: 20px 10px;
		text-align: center;
		border-bottom: 1px solid #ddd;
	}

	.main-preview {
		height: 220px;
		margin-bottom: 15px;
	}

	.thumb-grid {
		display: flex;
		justify-content: center;
		margin-top: 15px;
		gap: 10px;
	}

	.thumb-nav-btn {
		width: 35px;
		height: 35px;
		font-size: 14px;
		gap: 10px;
	}

	.thumb-img {
		width: 40px;
		height: 40px;
	}

	.modal-info {
		display: block;
		padding: 20px;
		background: #fff;
		text-align: left;
	}

	.modal-info h2 {
		display: block !important;
		font-size: 20px !important;
		color: #004080 !important;
		margin-top: 0;
		margin-bottom: 10px;
		font-weight: 700;
	}

	.modal-desc {
		display: block !important;
		font-size: 14px !important;
		color: #333 !important;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.modal-specs li {
		font-size: 13px !important;
		color: #444 !important;
		margin-bottom: 8px;
		list-style: none;
	}

	#modalWaBtn {
		width: 100%;
		background: #25D366 !important;
		color: white !important;
		padding: 12px;
		border-radius: 5px;
		font-size: 14px;
		font-weight: bold;
		margin-top: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}
}

/* SMALL MOBILE (Up to 376px) */
@media (max-width: 376px) {
	.shop-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.shop-img {
		height: 180px;
		padding: 15px;
	}

	.shop-content {
		padding: 15px;
	}

	.shop-content h3 {
		font-size: 1rem;
		height: auto;
		margin-bottom: 10px;
	}

	.specs {
		display: block;
		font-size: 0.85rem;
		color: #777;
		margin-bottom: 10px;
	}

	.card-actions {
		flex-direction: row;
		gap: 10px;
	}

	.btn-quick,
	.btn-quote {
		font-size: 12px;
		padding: 10px;
	}

	.ribbon {
		width: 110px;
		font-size: 10px;
		top: 15px;
		right: -28px;
	}
}

/* --- POPUP / MODAL MOBILE FIX (Common for all mobiles) --- */
/* --- POPUP / MODAL MOBILE FIX (COMPACT & SCROLLABLE) --- */
/* --- POPUP / MODAL MOBILE FIX (AUTO-OPEN SOLVED) --- */
@media (max-width: 768px) {

	/* 1. Modal Overlay */
	.modal-overlay {


		align-items: center;
		justify-content: center;
		padding: 15px;
		z-index: 9999;
		background: rgba(0, 0, 0, 0.8);
	}

	/* 2. Modal Box */
	.modal-content {
		display: block !important;
		width: 100%;
		max-width: 380px;
		height: 80vh;
		background: #fff;
		border-radius: 10px;
		overflow-y: auto;
		position: relative;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}

	/* 3. Close Button */
	.modal-close {
		position: absolute;
		top: 10px;
		right: 10px;
		background: rgba(255, 255, 255, 0.9);
		width: 35px;
		height: 35px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 100;
		font-size: 22px;
		color: #000;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	}

	/* 4. Image Area */
	.modal-gallery {
		display: block;
		width: 100%;
		background: #f4f4f4;
		padding: 20px 10px;
		text-align: center;
		border-bottom: 1px solid #ddd;
	}

	.main-preview {
		height: 220px;
		margin-bottom: 15px;
	}

	.thumb-grid {
		display: flex;
		justify-content: center;
		margin-top: 15px;
		gap: 10px;
	}

	.thumb-nav-btn {
		width: 35px;
		height: 35px;
		font-size: 14px;
		gap: 10px;
	}

	.thumb-img {
		width: 40px;
		height: 40px;
	}

	/* 5. Text Area */
	.modal-info {
		display: block;
		padding: 20px;
		background: #fff;
		text-align: left;
	}

	.modal-info h2 {
		display: block !important;
		font-size: 20px !important;
		color: #004080 !important;
		margin-top: 0;
		margin-bottom: 10px;
		font-weight: 700;
	}

	.modal-desc {
		display: block !important;
		font-size: 14px !important;
		color: #333 !important;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.modal-specs li {
		font-size: 13px !important;
		color: #444 !important;
		margin-bottom: 8px;
		list-style: none;
	}

	/* WhatsApp Button */
	#modalWaBtn {
		width: 100%;
		background: #25D366 !important;
		color: white !important;
		padding: 12px;
		border-radius: 5px;
		font-size: 14px;
		font-weight: bold;
		margin-top: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}
}


/* --- RESPONSIVE QUERIES --- */
@media (max-width: 992px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: block;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-card {
		max-width: 400px;
		margin: 0 auto;
		width: 100%;
	}
}

/* --- MOBILE RESPONSIVE FIXES (Final Correction) --- */

@media (max-width: 768px) {

	/* 1. Header & Text Adjustments */
	.hero h1 {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}

	.hero p {
		font-size: 0.95rem;
		line-height: 1.5;
		padding: 0 10px;
	}

	.section-title {
		font-size: 1.6rem;
		margin-bottom: 30px;
	}

	.about-content h2 {
		font-size: 1.5rem !important;
		line-height: 1.4;
	}

	/* 2. Top Bar Alignment */
	/* 2. Top Bar Alignment (UPDATED: SINGLE LINE) */
	.top-bar {
		padding: 0 5px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
	}


	.top-left {
		font-size: 11px;
		white-space: nowrap;
		display: flex;
		align-items: center;
		gap: 3px;
	}


	.address-hide {
		display: inline-block !important;
	}

	.top-left i {
		margin-right: 2px;
		color: var(--accent-gold);
	}

	/* 3. Google Translate Dropdown (Height Reduced Only) */
	/* 3. Google Translate Dropdown (Compact for Single Line) */
	.goog-te-combo {
		height: 24px !important;
		font-size: 11px !important;
		line-height: 24px !important;
		padding: 0 2px !important;
		width: auto !important;
		/* Auto width */
		max-width: 85px !important;
		margin: 0 !important;
		border: 1px solid rgba(255, 255, 255, 0.5) !important;
		border-radius: 3px !important;
		outline: none;
		background-color: #fff;
		color: #333;
	}

	/* Hide unnecessary Google branding text */
	.goog-te-gadget {
		line-height: 1 !important;
		display: flex;
		align-items: center;
		height: 30px;
	}

	.goog-te-gadget span {
		display: none !important;
	}

	/* 4. Social Icons */
	/* 4. Social Icons (Hidden on Mobile to fit Address) */
	.top-right {
		display: flex;
		align-items: center;
	}

	.social-icons {
		display: none !important;
	}

	/* 5. General Layout */
	.hero {
		height: 85vh;
		min-height: 400px;
	}

	.btn-primary {
		padding: 12px 25px;
		font-size: 13px;
	}

	section {
		padding: 50px 20px;
	}

	.step-card {
		width: 100%;
		max-width: 350px;
		margin-bottom: 20px;
	}

	.cta-section {
		background-attachment: scroll;
	}

	/* 6. Hamburger Menu */
	.nav-links {
		display: none;
	}

	.hamburger {
		display: block;
	}
}

@media (max-width: 480px) {
	.navbar {
		height: 60px;
	}

	.logo img{
    height: 55px;
    width: auto;
}


	.top-bar {
		padding: 0 10px;
	}

	/* Small Mobile Tweaks */
	.goog-te-combo {
		width: 95px !important;
		font-size: 12px !important;
	}

	.social-icons a {
		font-size: 12px;
		margin-left: 5px;
	}

	.hero h1 {
		font-size: 1.4rem;
	}

	.section-title {
		font-size: 1.4rem;
	}

	.about-content h2 {
		font-size: 1.3rem !important;
	}
}


/* --- POPUP IMAGE SLIDER STYLES --- */
.preview-box {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

/* Arrow Buttons */
.slide-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background-color: rgba(255, 255, 255, 0.8);
	color: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	z-index: 10;
}

.slide-btn:hover {
	background-color: var(--primary-blue);
	color: white;
}

.prev {
	left: 10px;
}

.next {
	right: 10px;
}

/* Main Image Fix */
.main-preview {
	width: 100%;
	height: 300px;
	/* Fixed height for consistency */
	object-fit: contain;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.main-preview {
		height: 220px;
	}

	.slide-btn {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
}


/* --- HOME PAGE SPECIAL DESIGN --- */
.home-special-grid {
	display: flex !important;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.home-special-grid .shop-card {
	flex: 1;
	min-width: 320px;
	max-width: 400px;
	width: 100%;
}

.home-special-grid .shop-img {
	height: 260px;
}

/* MOBILE FORCE ONE-BY-ONE */
@media (max-width: 991px) {
	.home-special-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		/* One Column Force */
		justify-items: center;
	}

	.home-special-grid .shop-card {
		max-width: 450px;
	}
}


/* --- WHATSAPP CHAT BOX STYLES --- */
.wa-chat-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 350px;
	/* Desktop Width */
	background: #e5ddd5;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	/* High z-index */
	overflow: hidden;
	display: none;
	/* Hidden initially */
	flex-direction: column;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 480px) {
	.wa-chat-box {
		width: 90%;
		right: 5%;
		/* Center Alignment */
		left: 5%;
		bottom: 10px;
	}
}

/* Header */
.wa-header {
	background: #075e54;
	color: white;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wa-profile {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wa-profile img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: white;
}

.wa-info h4 {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

.wa-info p {
	margin: 0;
	font-size: 11px;
	opacity: 0.8;
}

.wa-close {
	cursor: pointer;
	font-size: 18px;
}

/* Body */
.wa-body {
	padding: 15px;
	height: 200px;
	/* Compact height */
	overflow-y: auto;
	background-image: url('../image/wa-body.png');
	display: flex;
	flex-direction: column;
}

.wa-date {
	text-align: center;
	background: rgba(225, 245, 254, 0.9);
	padding: 4px 8px;
	border-radius: 10px;
	font-size: 11px;
	color: #555;
	align-self: center;
	margin-bottom: 10px;
}

.wa-msg-received {
	background: white;
	padding: 8px 12px;
	border-radius: 0 10px 10px 10px;
	max-width: 85%;
	font-size: 13px;
	position: relative;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-time {
	display: block;
	text-align: right;
	font-size: 9px;
	color: #999;
	margin-top: 4px;
}

/* Footer */
.wa-footer {
	background: #f0f0f0;
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.wa-footer input {
	flex: 1;
	padding: 8px 12px;
	border-radius: 20px;
	border: none;
	outline: none;
	font-size: 13px;
}

.wa-send-btn {
	background: #075e54;
	color: white;
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}


/* --- MOBILE MEDIA QUERY (Only for Mobile Screens) --- */
@media screen and (max-width: 480px) {

	/* 1. Chat Box Container - Width & Position */
	.wa-chat-box {
		width: 85% !important;
		right: 7.5% !important;
		/* Center Alignment (100-85)/2 */
		left: 7.5% !important;
		bottom: 15px !important;
		border-radius: 12px;
	}

	/* 2. Header - Compact Size */
	.wa-header {
		padding: 10px !important;
	}

	.wa-profile img {
		width: 30px !important;
		height: 30px !important;
	}

	.wa-info h4 {
		font-size: 13px !important;
	}

	.wa-info p {
		font-size: 10px !important;
		display: none;
	}

	.wa-close {
		font-size: 16px !important;
	}

	/* 3. Body Area - Reduce Height & Padding */
	.wa-body {
		height: 180px !important;
		padding: 10px !important;
	}

	.wa-msg-received {
		font-size: 12px !important;
		padding: 8px 10px !important;
		max-width: 90% !important;
	}

	.wa-date {
		font-size: 10px !important;
		margin-bottom: 8px !important;
	}

	/* 4. Footer - Input Box Adjustment */
	.wa-footer {
		padding: 8px !important;
	}

	.wa-footer input {
		font-size: 12px !important;
		padding: 6px 10px !important;
	}

	.wa-send-btn {
		width: 32px !important;
		height: 32px !important;
		font-size: 12px !important;
	}
}